mirror of
https://github.com/oliverbooth/VpSharp
synced 2024-11-09 16:15:42 +00:00
31 lines
929 B
XML
31 lines
929 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>
|
|
|
|
<NoWarn>CS1591</NoWarn>
|
|
</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>
|
|
<Using Include="NUnit.Framework"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\VpSharp.Building\VpSharp.Building.csproj"/>
|
|
</ItemGroup>
|
|
|
|
</Project>
|