Skip to content

Commit

Permalink
update .NET SDK version (#349)
Browse files Browse the repository at this point in the history
Signed-off-by: Bert <bert.k@hotmail.com>
  • Loading branch information
Bertk authored Mar 13, 2024
1 parent 3c47b2a commit 87f58c0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnabled>
</PropertyGroup>
<ItemGroup>
<GlobalPackageReference Include="SonarAnalyzer.CSharp" Version="9.20.0.85982" />
<GlobalPackageReference Include="SonarAnalyzer.CSharp" Version="9.21.0.86780" />
<GlobalPackageReference Include="AsyncFixer" Version="1.6.0" />
<GlobalPackageReference Include="Nerdbank.GitVersioning" Version="3.6.133" />
</ItemGroup>
Expand All @@ -14,7 +14,7 @@
<PackageVersion Include="Microsoft.Build.Tasks.Core" Version="17.7.2" />
<PackageVersion Include="Microsoft.Build.Utilities.Core" Version="17.7.2" />
<PackageVersion Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
<PackageVersion Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.0" />
<PackageVersion Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.1" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageVersion Include="Microsoft.NET.StringTools" Version="17.9.5" />
<PackageVersion Include="Microsoft.NETCore.Platforms" Version="7.0.4" />
Expand All @@ -35,7 +35,7 @@
<PackageVersion Include="xunit.extensibility.core" Version="2.7.0" />
<PackageVersion Include="xunit.extensibility.execution" Version="2.7.0" />
<!-- https://dev.azure.com/tonerdo/coverlet/_artifacts/feed/coverlet-nightly/NuGet/coverlet.collector -->
<PackageVersion Include="coverlet.collector" Version="6.0.1" />
<PackageVersion Include="coverlet.collector" Version="6.0.2" />
<PackageVersion Include="MSTest" Version="2.2.10" />
<PackageVersion Include="MSTest.TestAdapter" Version="2.2.10" />
<PackageVersion Include="MSTest.TestFramework" Version="2.2.10" />
Expand Down
4 changes: 2 additions & 2 deletions global.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"sdk": {
"version": "8.0.201"
"version": "8.0.202"
},
"tools": {
"dotnet": "8.0.201"
"dotnet": "8.0.202"
},
"msbuild-sdks": {
"DotNetDev.ArcadeLight.Sdk": "1.7.1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public CheckRequiredDotNetVersionTests()
}

[Theory]
[InlineData("8.0.201", true)]
[InlineData("8.0.202", true)]
[InlineData("8.0.888", true)]
public void CheckRequiredDotNetVersionVerify(string minSdkVersionStr, bool expectedResult)
{
Expand Down

0 comments on commit 87f58c0

Please sign in to comment.