1
0
mirror of https://github.com/oliverbooth/VpSharp synced 2024-11-10 02:55:41 +00:00
VpSharp/VpSharp.Tests/VpSharp.Tests.csproj
Oliver Booth fa1a71a504
chore: update dependencies
* coverlet.collector 6.0.2
* Microsoft.NET.Test.Sdk 17.10.0
* NUnit 4.1.0
* NUnit.Analyzers 4.2.0
* System.Drawing.Common 8.0.6
* System.Reactive 6.0.1
* X10D 4.0.0
* ZString 2.6.0
2024-06-18 15:41:50 +01:00

27 lines
854 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="coverlet.collector" Version="6.0.2"/>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0"/>
<PackageReference Include="NUnit" Version="4.1.0"/>
<PackageReference Include="NUnit.Analyzers" Version="4.2.0"/>
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\VpSharp\VpSharp.csproj"/>
</ItemGroup>
</Project>