ARMeilleure.csproj 944 B

1234567891011121314151617181920212223242526272829
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netcoreapp3.1</TargetFramework>
  4. <RuntimeIdentifiers>win-x64;osx-x64;linux-x64</RuntimeIdentifiers>
  5. </PropertyGroup>
  6. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  7. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  8. </PropertyGroup>
  9. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  10. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  11. </PropertyGroup>
  12. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Profile Release|AnyCPU'">
  13. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  14. <Optimize>true</Optimize>
  15. </PropertyGroup>
  16. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Profile Debug|AnyCPU'">
  17. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  18. </PropertyGroup>
  19. <ItemGroup>
  20. <PackageReference Include="Mono.Posix.NETStandard" Version="1.0.0" />
  21. </ItemGroup>
  22. </Project>