2022-11-27 15:28:07 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2024-06-18 15:39:05 +01:00
|
|
|
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
|
2022-11-27 15:28:07 +00:00
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
|
|
|
<IsPackable>false</IsPackable>
|
2024-05-23 11:57:56 +01:00
|
|
|
<IsTestProject>true</IsTestProject>
|
2022-12-04 14:14:04 +00:00
|
|
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
2022-11-27 15:28:07 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-06-18 15:41:50 +01:00
|
|
|
<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"/>
|
2024-05-23 11:57:56 +01:00
|
|
|
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0"/>
|
2022-11-27 15:28:07 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-11-30 12:01:02 +00:00
|
|
|
<ProjectReference Include="..\VpSharp\VpSharp.csproj"/>
|
2022-11-27 15:28:07 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|