mirror of
https://github.com/oliverbooth/VpSharp
synced 2024-11-09 23:35:41 +00:00
Oliver Booth
02e4000c63
- Microsoft.Extensions.Hosting 8.0.0 - System.Drawing.Common 8.0.0 - System.Reactive 6.0.0 - X10D 3.3.1 - MIcrosoft.NET.Test.Sdk 17.8.0 - MSTest.TestAdapter 3.1.1 - MSTest.TestFramework 3.1.1 - coverlet.collector 6.0.0
28 lines
940 B
XML
28 lines
940 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0"/>
|
|
<PackageReference Include="MSTest.TestAdapter" Version="3.1.1"/>
|
|
<PackageReference Include="MSTest.TestFramework" Version="3.1.1"/>
|
|
<PackageReference Include="coverlet.collector" Version="6.0.0">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\VpSharp\VpSharp.csproj"/>
|
|
</ItemGroup>
|
|
|
|
</Project>
|