Ryujinx.csproj 2.8 KB

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