ARMeilleure.csproj 1.1 KB

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