Skip to content

Commit 3bf1d6c

Browse files
authored
Bump dependencies (#3257)
1 parent fefeb86 commit 3bf1d6c

File tree

4 files changed

+13
-11
lines changed

4 files changed

+13
-11
lines changed

Directory.Packages.props

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<PropertyGroup Label="Product dependencies">
88
<AspireHostingTestingVersion>8.0.1</AspireHostingTestingVersion>
99
<MicrosoftBuildVersion>17.10.0-preview-24127-03</MicrosoftBuildVersion>
10-
<MicrosoftCodeAnalysisAnalyzersVersion>3.11.0-beta1.24223.1</MicrosoftCodeAnalysisAnalyzersVersion>
10+
<MicrosoftCodeAnalysisAnalyzersVersion>3.11.0-beta1.24318.1</MicrosoftCodeAnalysisAnalyzersVersion>
1111
<MicrosoftCodeAnalysisVersion>3.11.0</MicrosoftCodeAnalysisVersion>
1212
<MicrosoftCodeAnalysisPublicApiAnalyzersVersion>$(MicrosoftCodeAnalysisAnalyzersVersion)</MicrosoftCodeAnalysisPublicApiAnalyzersVersion>
1313
<MicrosoftCodeAnalysisBannedApiAnalyzersVersion>$(MicrosoftCodeAnalysisPublicApiAnalyzersVersion)</MicrosoftCodeAnalysisBannedApiAnalyzersVersion>
@@ -21,7 +21,7 @@
2121
<SystemTextRegularExpressionsVersion>4.3.1</SystemTextRegularExpressionsVersion>
2222
</PropertyGroup>
2323
<PropertyGroup Label="Test dependencies">
24-
<MicrosoftCodeAnalysisAnalyzerTestingVersion>1.1.3-beta1.24319.1</MicrosoftCodeAnalysisAnalyzerTestingVersion>
24+
<MicrosoftCodeAnalysisAnalyzerTestingVersion>1.1.3-beta1.24352.1</MicrosoftCodeAnalysisAnalyzerTestingVersion>
2525
</PropertyGroup>
2626
<ItemGroup Label="Product dependencies">
2727
<PackageVersion Include="Microsoft.ApplicationInsights" Version="2.22.0" />
@@ -45,7 +45,7 @@
4545
<PackageVersion Include="Microsoft.TestPlatform.AdapterUtilities" Version="$(MicrosoftNETTestSdkVersion)" />
4646
<PackageVersion Include="Microsoft.TestPlatform.ObjectModel" Version="$(MicrosoftNETTestSdkVersion)" />
4747
<PackageVersion Include="Microsoft.TestPlatform.TranslationLayer" Version="$(MicrosoftNETTestSdkVersion)" />
48-
<PackageVersion Include="Microsoft.VisualStudio.Threading.Analyzers" Version="17.10.48" />
48+
<PackageVersion Include="Microsoft.VisualStudio.Threading.Analyzers" Version="17.11.19-preview" />
4949
<PackageVersion Include="Microsoft.WindowsAppSDK" Version="1.0.0" />
5050
<PackageVersion Include="Polyfill" Version="5.3.0" />
5151
<PackageVersion Include="StyleCop.Analyzers" Version="1.2.0-beta.556" />
@@ -65,7 +65,7 @@
6565
<PackageVersion Include="Newtonsoft.Json" Version="13.0.3" />
6666
<!-- CVE-2024-0057 / Transitive deps of code analysis testing packages -->
6767
<PackageVersion Include="NuGet.Packaging" Version="6.10.0" />
68-
<PackageVersion Include="Polly" Version="8.4.0" />
68+
<PackageVersion Include="Polly" Version="8.4.1" />
6969
<PackageVersion Include="Polly.Contrib.WaitAndRetry" Version="1.1.1" />
7070
<PackageVersion Include="StreamJsonRpc" Version="2.18.48" />
7171
<PackageVersion Include="StrongNamer" Version="0.2.5" />
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#nullable enable
2-
Microsoft.Testing.Platform.Capabilities.TestFramework.IBannerMessageOwnerCapability
3-
Microsoft.Testing.Platform.Capabilities.TestFramework.IBannerMessageOwnerCapability.GetBannerMessageAsync() -> System.Threading.Tasks.Task<string?>!
4-
Microsoft.Testing.Platform.Services.IPlatformInformation
5-
Microsoft.Testing.Platform.Services.IPlatformInformation.BuildDate.get -> System.DateTimeOffset?
6-
Microsoft.Testing.Platform.Services.IPlatformInformation.CommitHash.get -> string?
7-
Microsoft.Testing.Platform.Services.IPlatformInformation.Name.get -> string!
8-
Microsoft.Testing.Platform.Services.IPlatformInformation.Version.get -> string?
2+
[TPEXP]Microsoft.Testing.Platform.Capabilities.TestFramework.IBannerMessageOwnerCapability
3+
[TPEXP]Microsoft.Testing.Platform.Capabilities.TestFramework.IBannerMessageOwnerCapability.GetBannerMessageAsync() -> System.Threading.Tasks.Task<string?>!
4+
[TPEXP]Microsoft.Testing.Platform.Services.IPlatformInformation
5+
[TPEXP]Microsoft.Testing.Platform.Services.IPlatformInformation.BuildDate.get -> System.DateTimeOffset?
6+
[TPEXP]Microsoft.Testing.Platform.Services.IPlatformInformation.CommitHash.get -> string?
7+
[TPEXP]Microsoft.Testing.Platform.Services.IPlatformInformation.Name.get -> string!
8+
[TPEXP]Microsoft.Testing.Platform.Services.IPlatformInformation.Version.get -> string?

test/UnitTests/MSTest.Analyzers.UnitTests/UseAsyncSuffixTestFixtureMethodSuppressorTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ public async Task TestCleanupAsync() { }
9797
[DiagnosticAnalyzer(LanguageNames.CSharp)]
9898
[SuppressMessage("MicrosoftCodeAnalysisCorrectness", "RS1038:Compiler extensions should be implemented in assemblies with compiler-provided references", Justification = "For suppression test only.")]
9999
[SuppressMessage("MicrosoftCodeAnalysisCorrectness", "RS1036:Specify analyzer banned API enforcement setting", Justification = "For suppression test only.")]
100+
[SuppressMessage("MicrosoftCodeAnalysisCorrectness", "RS1041:Compiler extensions should be implemented in assemblies targeting netstandard2.0", Justification = "For suppression test only.")]
100101
public class WarnForMissingAsyncSuffix : DiagnosticAnalyzer
101102
{
102103
[SuppressMessage("MicrosoftCodeAnalysisDesign", "RS1017:DiagnosticId for analyzers must be a non-null constant.", Justification = "For suppression test only.")]

test/UnitTests/MSTest.Analyzers.UnitTests/UseAsyncSuffixTestMethodSuppressorTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ public async Task TestMethodAsync() { }
9999
[SuppressMessage("MicrosoftCodeAnalysisCorrectness", "RS1038:Compiler extensions should be implemented in assemblies with compiler-provided references", Justification = "For suppression test only.")]
100100
[SuppressMessage("MicrosoftCodeAnalysisCorrectness", "RS1036:Specify analyzer banned API enforcement setting", Justification = "For suppression test only.")]
101101
[DiagnosticAnalyzer(LanguageNames.CSharp)]
102+
[SuppressMessage("MicrosoftCodeAnalysisCorrectness", "RS1041:Compiler extensions should be implemented in assemblies targeting netstandard2.0", Justification = "For suppression test only.")]
102103
public class WarnForMissingAsyncSuffix : DiagnosticAnalyzer
103104
{
104105
[SuppressMessage("MicrosoftCodeAnalysisDesign", "RS1017:DiagnosticId for analyzers must be a non-null constant.", Justification = "For suppression test only.")]

0 commit comments

Comments
 (0)