PkmnLibSharp/PkmnLibSharp/PkmnLibSharp.csproj

28 lines
1001 B
XML
Raw Normal View History

2020-05-02 17:54:07 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2020-08-22 13:38:10 +00:00
<TargetFramework>netstandard2.0</TargetFramework>
<Configurations>Debug</Configurations>
<Platforms>AnyCPU</Platforms>
<Nullable>enable</Nullable>
<WarningsAsErrors>CS8600;CS8601;CS8602;CS8603;CS8604;CS8618</WarningsAsErrors>
2020-08-22 13:38:10 +00:00
<LangVersion>8</LangVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2020-05-02 17:54:07 +00:00
</PropertyGroup>
<ItemGroup>
<Content Include="Native\*.so.*">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<Link>%(Filename)%(Extension)</Link>
</Content>
2020-05-03 14:26:14 +00:00
</ItemGroup>
2020-08-22 13:38:10 +00:00
<ItemGroup>
<PackageReference Include="Nullable" Version="1.2.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
2020-05-02 17:54:07 +00:00
</Project>