mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 19:34:47 +00:00
40 lines
1.2 KiB
XML
40 lines
1.2 KiB
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<TargetFramework>net6.0</TargetFramework>
|
||
|
|
||
|
<IsPackable>false</IsPackable>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
||
|
<NoWarn>8669</NoWarn>
|
||
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
||
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<Compile Remove="Misc\**" />
|
||
|
<EmbeddedResource Remove="Misc\**" />
|
||
|
<None Remove="Misc\**" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<None Remove=".cache.meta" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="Bright.Core" Version="1.1.0.35" />
|
||
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.3" />
|
||
|
<PackageReference Include="MSTest.TestAdapter" Version="2.1.2" />
|
||
|
<PackageReference Include="MSTest.TestFramework" Version="2.1.2" />
|
||
|
<PackageReference Include="coverlet.collector" Version="1.3.0">
|
||
|
<PrivateAssets>all</PrivateAssets>
|
||
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||
|
</PackageReference>
|
||
|
</ItemGroup>
|
||
|
|
||
|
</Project>
|