From 4b56cbb38c2450897e5a8429cc5f061b774ba7d6 Mon Sep 17 00:00:00 2001 From: Mattias Karlsson <matkar@wcom.se> Date: Mon, 25 Mar 2024 11:26:17 +0100 Subject: [PATCH 1/6] Update .NET SDK to 8.0.203 --- global.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global.json b/global.json index 34fe4ca..e66cdc8 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.100", + "version": "8.0.203", "rollForward": "latestMinor", "allowPrerelease": false } From 11ac915d10f2dba17a2eb3d04ae161a5e1b9df79 Mon Sep 17 00:00:00 2001 From: Mattias Karlsson <matkar@wcom.se> Date: Mon, 25 Mar 2024 11:28:02 +0100 Subject: [PATCH 2/6] Update Verify.Http to 6.2.0 --- src/ARI.Tests/ARI.Tests.csproj | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ARI.Tests/ARI.Tests.csproj b/src/ARI.Tests/ARI.Tests.csproj index a8d21e6..0682418 100644 --- a/src/ARI.Tests/ARI.Tests.csproj +++ b/src/ARI.Tests/ARI.Tests.csproj @@ -70,7 +70,8 @@ <PrivateAssets>all</PrivateAssets> </PackageReference> <PackageReference Include="Verify.NUnit" Version="22.7.1" /> - <PackageReference Include="Verify.Http" Version="5.0.1" /> + <PackageReference Condition=" '$(TargetFramework)' == 'net7.0' " Include="Verify.Http" Version="5.0.1" /> + <PackageReference Condition=" '$(TargetFramework)' != 'net7.0' " Include="Verify.Http" Version="6.2.0" /> <PackageReference Include="Cake.Testing" Version="4.0.0" /> <PackageReference Include="NSubstitute" Version="5.1.0" /> </ItemGroup> From dcffe3129efe69069492600097a4d20189f00d00 Mon Sep 17 00:00:00 2001 From: Mattias Karlsson <matkar@wcom.se> Date: Mon, 25 Mar 2024 11:29:27 +0100 Subject: [PATCH 3/6] Update NUnit to 4.1.0 --- src/ARI.Tests/ARI.Tests.csproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ARI.Tests/ARI.Tests.csproj b/src/ARI.Tests/ARI.Tests.csproj index 0682418..b855451 100644 --- a/src/ARI.Tests/ARI.Tests.csproj +++ b/src/ARI.Tests/ARI.Tests.csproj @@ -59,9 +59,9 @@ <ItemGroup> <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" /> - <PackageReference Include="NUnit" Version="4.0.1" /> + <PackageReference Include="NUnit" Version="4.1.0" /> <PackageReference Include="NUnit3TestAdapter" Version="4.5.0" /> - <PackageReference Include="NUnit.Analyzers" Version="3.10.0"> + <PackageReference Include="NUnit.Analyzers" Version="4.1.0"> <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> <PrivateAssets>all</PrivateAssets> </PackageReference> From 1ec42afdd5c37d0c256e8ada7aad70f64fd8d8a7 Mon Sep 17 00:00:00 2001 From: Mattias Karlsson <matkar@wcom.se> Date: Mon, 25 Mar 2024 11:29:58 +0100 Subject: [PATCH 4/6] Update Verify.NUnit to 23.5.2 --- src/ARI.Tests/ARI.Tests.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ARI.Tests/ARI.Tests.csproj b/src/ARI.Tests/ARI.Tests.csproj index b855451..64ac10c 100644 --- a/src/ARI.Tests/ARI.Tests.csproj +++ b/src/ARI.Tests/ARI.Tests.csproj @@ -69,7 +69,7 @@ <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> <PrivateAssets>all</PrivateAssets> </PackageReference> - <PackageReference Include="Verify.NUnit" Version="22.7.1" /> + <PackageReference Include="Verify.NUnit" Version="23.5.2" /> <PackageReference Condition=" '$(TargetFramework)' == 'net7.0' " Include="Verify.Http" Version="5.0.1" /> <PackageReference Condition=" '$(TargetFramework)' != 'net7.0' " Include="Verify.Http" Version="6.2.0" /> <PackageReference Include="Cake.Testing" Version="4.0.0" /> From 62bfad6821a9b703a02b7b33c3c63a7cd357d2d7 Mon Sep 17 00:00:00 2001 From: Mattias Karlsson <matkar@wcom.se> Date: Mon, 25 Mar 2024 11:30:49 +0100 Subject: [PATCH 5/6] Update coverlet.collector to 6.0.2 --- src/ARI.Tests/ARI.Tests.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ARI.Tests/ARI.Tests.csproj b/src/ARI.Tests/ARI.Tests.csproj index 64ac10c..f21b137 100644 --- a/src/ARI.Tests/ARI.Tests.csproj +++ b/src/ARI.Tests/ARI.Tests.csproj @@ -65,7 +65,7 @@ <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> <PrivateAssets>all</PrivateAssets> </PackageReference> - <PackageReference Include="coverlet.collector" Version="6.0.0"> + <PackageReference Include="coverlet.collector" Version="6.0.2"> <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> <PrivateAssets>all</PrivateAssets> </PackageReference> From 88d27534d0a2fb2043b316182e00304344119bab Mon Sep 17 00:00:00 2001 From: Mattias Karlsson <matkar@wcom.se> Date: Mon, 25 Mar 2024 11:31:19 +0100 Subject: [PATCH 6/6] Update Microsoft.NET.Test.Sdk to 17.9.0 --- src/ARI.Tests/ARI.Tests.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ARI.Tests/ARI.Tests.csproj b/src/ARI.Tests/ARI.Tests.csproj index f21b137..8bc3a73 100644 --- a/src/ARI.Tests/ARI.Tests.csproj +++ b/src/ARI.Tests/ARI.Tests.csproj @@ -58,7 +58,7 @@ </ItemGroup> <ItemGroup> - <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" /> + <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" /> <PackageReference Include="NUnit" Version="4.1.0" /> <PackageReference Include="NUnit3TestAdapter" Version="4.5.0" /> <PackageReference Include="NUnit.Analyzers" Version="4.1.0">