Ryujinx.Headless.SDL2.csproj 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net7.0</TargetFramework>
  4. <RuntimeIdentifiers>win10-x64;osx-x64;linux-x64</RuntimeIdentifiers>
  5. <OutputType>Exe</OutputType>
  6. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  7. <Version>1.0.0-dirty</Version>
  8. <DefineConstants Condition=" '$(ExtraDefineConstants)' != '' ">$(DefineConstants);$(ExtraDefineConstants)</DefineConstants>
  9. <TieredPGO>true</TieredPGO>
  10. </PropertyGroup>
  11. <ItemGroup>
  12. <PackageReference Include="OpenTK.Core" />
  13. <PackageReference Include="Ryujinx.Graphics.Nvdec.Dependencies" />
  14. </ItemGroup>
  15. <ItemGroup>
  16. <ProjectReference Include="..\Ryujinx.Graphics.Vulkan\Ryujinx.Graphics.Vulkan.csproj" />
  17. <ProjectReference Include="..\Ryujinx.Input\Ryujinx.Input.csproj" />
  18. <ProjectReference Include="..\Ryujinx.Input.SDL2\Ryujinx.Input.SDL2.csproj" />
  19. <ProjectReference Include="..\Ryujinx.Audio.Backends.SDL2\Ryujinx.Audio.Backends.SDL2.csproj" />
  20. <ProjectReference Include="..\Ryujinx.Common\Ryujinx.Common.csproj" />
  21. <ProjectReference Include="..\Ryujinx.HLE\Ryujinx.HLE.csproj" />
  22. <ProjectReference Include="..\ARMeilleure\ARMeilleure.csproj" />
  23. <ProjectReference Include="..\Ryujinx.Graphics.OpenGL\Ryujinx.Graphics.OpenGL.csproj" />
  24. <ProjectReference Include="..\Ryujinx.Graphics.Gpu\Ryujinx.Graphics.Gpu.csproj" />
  25. </ItemGroup>
  26. <ItemGroup>
  27. <PackageReference Include="CommandLineParser" />
  28. </ItemGroup>
  29. <ItemGroup>
  30. <Content Include="..\distribution\legal\THIRDPARTY.md">
  31. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  32. <TargetPath>THIRDPARTY.md</TargetPath>
  33. </Content>
  34. <Content Include="..\LICENSE.txt">
  35. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  36. <TargetPath>LICENSE.txt</TargetPath>
  37. </Content>
  38. </ItemGroup>
  39. <ItemGroup Condition="'$(RuntimeIdentifier)' == 'linux-x64'">
  40. <Content Include="..\distribution\linux\Ryujinx.sh">
  41. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  42. </Content>
  43. </ItemGroup>
  44. <ItemGroup>
  45. <EmbeddedResource Include="Ryujinx.bmp" />
  46. </ItemGroup>
  47. <!-- Due to .net core 3.1 embedded resource loading -->
  48. <PropertyGroup>
  49. <EmbeddedResourceUseDependentUponConvention>false</EmbeddedResourceUseDependentUponConvention>
  50. <ApplicationIcon>..\Ryujinx\Ryujinx.ico</ApplicationIcon>
  51. </PropertyGroup>
  52. <PropertyGroup Condition="'$(RuntimeIdentifier)' != ''">
  53. <PublishSingleFile>true</PublishSingleFile>
  54. <PublishTrimmed>true</PublishTrimmed>
  55. <TrimMode>partial</TrimMode>
  56. </PropertyGroup>
  57. </Project>