Ryujinx.csproj 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netcoreapp3.0</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. <!-- Due to GtkSharp. -->
  18. <PropertyGroup>
  19. <EmbeddedResourceUseDependentUponConvention>false</EmbeddedResourceUseDependentUponConvention>
  20. </PropertyGroup>
  21. <ItemGroup>
  22. <EmbeddedResource Include="Ui\AboutWindow.glade" />
  23. <EmbeddedResource Include="Ui\assets\ryujinxNCAIcon.png" />
  24. <EmbeddedResource Include="Ui\assets\ryujinxNROIcon.png" />
  25. <EmbeddedResource Include="Ui\assets\ryujinxNSOIcon.png" />
  26. <EmbeddedResource Include="Ui\assets\ryujinxNSPIcon.png" />
  27. <EmbeddedResource Include="Ui\assets\ryujinxXCIIcon.png" />
  28. <EmbeddedResource Include="Ui\assets\DiscordLogo.png" />
  29. <EmbeddedResource Include="Ui\assets\GitHubLogo.png" />
  30. <EmbeddedResource Include="Ui\assets\JoyCon.png" />
  31. <EmbeddedResource Include="Ui\assets\PatreonLogo.png" />
  32. <EmbeddedResource Include="Ui\assets\ryujinxIcon.png" />
  33. <EmbeddedResource Include="Ui\assets\TwitterLogo.png" />
  34. <EmbeddedResource Include="Ui\MainWindow.glade" />
  35. <EmbeddedResource Include="Ui\SwitchSettings.glade" />
  36. </ItemGroup>
  37. <ItemGroup>
  38. <PackageReference Include="DiscordRichPresence" Version="1.0.121" />
  39. <PackageReference Include="GtkSharp" Version="3.22.24.37" />
  40. <PackageReference Include="GtkSharp.Dependencies" Version="1.0.1" />
  41. <PackageReference Include="JsonPrettyPrinter" Version="1.0.1.1" />
  42. <PackageReference Include="OpenTK.NetStandard" Version="1.0.4" />
  43. </ItemGroup>
  44. <ItemGroup>
  45. <ProjectReference Include="..\Ryujinx.Audio\Ryujinx.Audio.csproj" />
  46. <ProjectReference Include="..\Ryujinx.Common\Ryujinx.Common.csproj" />
  47. <ProjectReference Include="..\Ryujinx.Graphics\Ryujinx.Graphics.csproj" />
  48. <ProjectReference Include="..\Ryujinx.HLE\Ryujinx.HLE.csproj" />
  49. <ProjectReference Include="..\Ryujinx.Profiler\Ryujinx.Profiler.csproj" />
  50. <ProjectReference Include="..\ARMeilleure\ARMeilleure.csproj" />
  51. </ItemGroup>
  52. <ItemGroup>
  53. <None Update="Config.json">
  54. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  55. </None>
  56. <None Update="Theme.css">
  57. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  58. </None>
  59. <None Update="RPsupported.dat">
  60. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  61. </None>
  62. </ItemGroup>
  63. </Project>