Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump Microsoft.NET.Test.Sdk from 17.10.0 to 17.11.1 in /src #164

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Bump Microsoft.NET.Test.Sdk from 17.10.0 to 17.11.1 in /src
Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.10.0 to 17.11.1.
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md)
- [Commits](microsoft/vstest@v17.10.0...v17.11.1)

---
updated-dependencies:
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
dependabot[bot] authored Sep 6, 2024
commit fac093f4833ac2257cbbc4b5617473c31ac6079e
Original file line number Diff line number Diff line change
@@ -25,7 +25,7 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="Moq" Version="4.20.70" />
<PackageReference Include="Ninject" Version="3.3.6" />
<PackageReference Include="xunit" Version="2.9.0" />

Unchanged files with check annotations Beta

/// <summary>
/// Ends the registrations and start the operation phase.
/// </summary>
ICopyOperation<T> EndRegistrations();

Check warning on line 15 in src/BBT.StructureTools/Copy/Helper/IInternalCopyHelperRegistration.cs

GitHub Actions / build (ubuntu-latest)

'IInternalCopyHelperRegistration<T>.EndRegistrations()' hides inherited member 'ICopyHelperRegistration<T>.EndRegistrations()'. Use the new keyword if hiding was intended.

Check warning on line 15 in src/BBT.StructureTools/Copy/Helper/IInternalCopyHelperRegistration.cs

GitHub Actions / build (ubuntu-latest)

'IInternalCopyHelperRegistration<T>.EndRegistrations()' hides inherited member 'ICopyHelperRegistration<T>.EndRegistrations()'. Use the new keyword if hiding was intended.

Check warning on line 15 in src/BBT.StructureTools/Copy/Helper/IInternalCopyHelperRegistration.cs

GitHub Actions / build (ubuntu-latest)

'IInternalCopyHelperRegistration<T>.EndRegistrations()' hides inherited member 'ICopyHelperRegistration<T>.EndRegistrations()'. Use the new keyword if hiding was intended.

Check warning on line 15 in src/BBT.StructureTools/Copy/Helper/IInternalCopyHelperRegistration.cs

GitHub Actions / build (ubuntu-latest)

'IInternalCopyHelperRegistration<T>.EndRegistrations()' hides inherited member 'ICopyHelperRegistration<T>.EndRegistrations()'. Use the new keyword if hiding was intended.
}
}
var defaultValue = default(T);
var isDefault = value.Equals(defaultValue);

Check warning on line 26 in src/BBT.StructureTools/Extension/LookupUtils.cs

GitHub Actions / build (ubuntu-latest)

'value.Equals(defaultValue)' is always 'false'. Remove or refactor the condition(s) to avoid dead code. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1508)

Check warning on line 26 in src/BBT.StructureTools/Extension/LookupUtils.cs

GitHub Actions / build (ubuntu-latest)

'value.Equals(defaultValue)' is always 'false'. Remove or refactor the condition(s) to avoid dead code. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1508)
return isDefault;
}