2021-08-23 12:18:05 +08:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
|
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" />
|
|
|
|
<PackageReference Include="xunit" Version="2.4.1" />
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
</PackageReference>
|
|
|
|
<PackageReference Include="coverlet.collector" Version="1.3.0">
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
</PackageReference>
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-08-24 20:30:11 +08:00
|
|
|
<ProjectReference Include="..\SharpNBT\SharpNBT.csproj" />
|
2021-08-23 12:18:05 +08:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-08-24 20:30:11 +08:00
|
|
|
<None Remove="Data\bigtest.nbt" />
|
|
|
|
<EmbeddedResource Include="Data\bigtest.nbt">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</EmbeddedResource>
|
|
|
|
<None Remove="Data\hello_world.nbt" />
|
|
|
|
<EmbeddedResource Include="Data\hello_world.nbt">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</EmbeddedResource>
|
2021-08-23 12:18:05 +08:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|