Ryujinx.csproj 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netcoreapp2.1</TargetFramework>
  4. <RuntimeIdentifiers>win-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="DiscordRichPresence" Version="1.0.108" />
  19. <PackageReference Include="OpenTK.NetStandard" Version="1.0.4" />
  20. </ItemGroup>
  21. <ItemGroup>
  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. <ProjectReference Include="..\ARMeilleure\ARMeilleure.csproj" />
  28. </ItemGroup>
  29. <ItemGroup>
  30. <None Update="Config.jsonc">
  31. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  32. </None>
  33. <None Update="RPsupported.dat">
  34. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  35. </None>
  36. </ItemGroup>
  37. </Project>