Ryujinx.csproj 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netcoreapp2.1</TargetFramework>
  4. <RuntimeIdentifiers>win10-x64;osx-x64;linux-x64</RuntimeIdentifiers>
  5. <OutputType>Exe</OutputType>
  6. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  7. <Configurations>Debug;Release;Profile Debug;Profile Release</Configurations>
  8. </PropertyGroup>
  9. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Profile Release|AnyCPU'">
  10. <DefineConstants>TRACE;USE_PROFILING</DefineConstants>
  11. <Optimize>true</Optimize>
  12. </PropertyGroup>
  13. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Profile Debug|AnyCPU'">
  14. <DefineConstants>TRACE;USE_PROFILING</DefineConstants>
  15. <Optimize>false</Optimize>
  16. </PropertyGroup>
  17. <ItemGroup>
  18. <PackageReference Include="OpenTK.NetStandard" Version="1.0.4" />
  19. </ItemGroup>
  20. <ItemGroup>
  21. <ProjectReference Include="..\ChocolArm64\ChocolArm64.csproj" />
  22. <ProjectReference Include="..\Ryujinx.Audio\Ryujinx.Audio.csproj" />
  23. <ProjectReference Include="..\Ryujinx.Common\Ryujinx.Common.csproj" />
  24. <ProjectReference Include="..\Ryujinx.Graphics\Ryujinx.Graphics.csproj" />
  25. <ProjectReference Include="..\Ryujinx.HLE\Ryujinx.HLE.csproj" />
  26. <ProjectReference Include="..\Ryujinx.Profiler\Ryujinx.Profiler.csproj" />
  27. </ItemGroup>
  28. <ItemGroup>
  29. <None Update="Config.jsonc">
  30. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  31. </None>
  32. </ItemGroup>
  33. </Project>