Skip to content

Commit 18eec74

Browse files
Fix failing Spec tests (#142)
* Initial plan * Fix Spec tests failing due to NUnit3TestAdapter 6.0.0 transitive dependencies Updated DeveroomSample.csproj.txt template to use compatible package versions: - System.Threading.Tasks.Extensions 4.5.4 -> 4.6.3 - System.ValueTuple 4.5.0 -> 4.6.1 This fixes NU1605 errors during dotnet restore of generated sample projects caused by package downgrade conflicts with NUnit3TestAdapter 6.0.0's transitive dependencies. Fixes #141 Co-authored-by: 304NotModified <[email protected]> --------- Co-authored-by: copilot-swe-agent[bot] <[email protected]> Co-authored-by: 304NotModified <[email protected]>
1 parent 9f793bd commit 18eec74

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/Reqnroll.SampleProjectGenerator.Core/Templates/CS-NEW/DeveroomSample.csproj.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
77
</PropertyGroup>
88
<ItemGroup Condition=" '$(TargetFrameworkIdentifier)' == '.NETFramework' ">
9-
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
9+
<PackageReference Include="System.ValueTuple" Version="4.6.1" />
1010
<PackageReference Include="System.Runtime.InteropServices.RuntimeInformation" Version="4.3.0" />
11-
<PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.4" />
11+
<PackageReference Include="System.Threading.Tasks.Extensions" Version="4.6.3" />
1212
</ItemGroup>
1313
<ItemGroup>
1414
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />

0 commit comments

Comments
 (0)