mirror of
https://github.com/oliverbooth/VpSharp
synced 2024-11-10 05:15:42 +00:00
25 lines
746 B
XML
25 lines
746 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0"/>
|
|
<PackageReference Include="MSTest.TestAdapter" Version="2.2.8"/>
|
|
<PackageReference Include="MSTest.TestFramework" Version="2.2.8"/>
|
|
<PackageReference Include="coverlet.collector" Version="3.1.2"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\VpSharp\VpSharp.csproj"/>
|
|
</ItemGroup>
|
|
|
|
</Project>
|