PkmnLibSharp/PkmnLibSharp/PkmnLibSharp.csproj

39 lines
1.9 KiB
XML
Raw Permalink Normal View History

2020-05-02 17:54:07 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2020-12-31 11:58:19 +00:00
<Configurations>Debug;Release</Configurations>
<Platforms>x64</Platforms>
<Nullable>enable</Nullable>
<WarningsAsErrors>CS8600;CS8601;CS8602;CS8603;CS8604;CS8618</WarningsAsErrors>
<LangVersion>10</LangVersion>
2020-12-23 12:50:00 +00:00
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
2021-11-27 10:27:19 +00:00
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2020-05-02 17:54:07 +00:00
</PropertyGroup>
2020-12-31 11:58:19 +00:00
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
2021-11-27 10:27:19 +00:00
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2020-12-31 11:58:19 +00:00
</PropertyGroup>
2020-05-02 17:54:07 +00:00
<ItemGroup>
2020-12-31 13:49:03 +00:00
<Content Include="Native\Linux\*.so.*" Condition=" '$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))' ">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<Link>%(Filename)%(Extension)</Link>
</Content>
2021-11-27 10:27:19 +00:00
<Content Include="Native\Linux\*.so" Condition=" '$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))' ">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<Link>%(Filename)%(Extension)</Link>
</Content>
2020-12-31 13:49:03 +00:00
<Content Include="Native\Windows\*.dll.*" Condition=" '$(OS)' == 'Windows_NT' ">
<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>
2021-11-27 10:27:19 +00:00
<PackageReference Include="Nullable" Version="1.3.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
2020-08-22 13:38:10 +00:00
</ItemGroup>
2020-05-02 17:54:07 +00:00
</Project>