Ryujinx.Headless.SDL2.csproj 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net6.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. </PropertyGroup>
  10. <ItemGroup>
  11. <PackageReference Include="Ryujinx.Graphics.Nvdec.Dependencies" Version="4.4.0-build7" Condition="'$(RuntimeIdentifier)' != 'linux-x64' AND '$(RuntimeIdentifier)' != 'osx-x64'" />
  12. </ItemGroup>
  13. <ItemGroup>
  14. <ProjectReference Include="..\Ryujinx.Input\Ryujinx.Input.csproj" />
  15. <ProjectReference Include="..\Ryujinx.Input.SDL2\Ryujinx.Input.SDL2.csproj" />
  16. <ProjectReference Include="..\Ryujinx.Audio.Backends.SDL2\Ryujinx.Audio.Backends.SDL2.csproj" />
  17. <ProjectReference Include="..\Ryujinx.Common\Ryujinx.Common.csproj" />
  18. <ProjectReference Include="..\Ryujinx.HLE\Ryujinx.HLE.csproj" />
  19. <ProjectReference Include="..\ARMeilleure\ARMeilleure.csproj" />
  20. <ProjectReference Include="..\Ryujinx.Graphics.OpenGL\Ryujinx.Graphics.OpenGL.csproj" />
  21. <ProjectReference Include="..\Ryujinx.Graphics.Gpu\Ryujinx.Graphics.Gpu.csproj" />
  22. </ItemGroup>
  23. <ItemGroup>
  24. <PackageReference Include="CommandLineParser" Version="2.8.0" />
  25. </ItemGroup>
  26. <ItemGroup>
  27. <ContentWithTargetPath Include="..\distribution\legal\THIRDPARTY.md">
  28. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  29. <TargetPath>THIRDPARTY.md</TargetPath>
  30. </ContentWithTargetPath>
  31. </ItemGroup>
  32. <!-- Due to .net core 3.1 embedded resource loading -->
  33. <PropertyGroup>
  34. <EmbeddedResourceUseDependentUponConvention>false</EmbeddedResourceUseDependentUponConvention>
  35. <ApplicationIcon>..\Ryujinx\Ryujinx.ico</ApplicationIcon>
  36. </PropertyGroup>
  37. <PropertyGroup Condition="'$(RuntimeIdentifier)' != ''">
  38. <PublishSingleFile>true</PublishSingleFile>
  39. <PublishTrimmed>true</PublishTrimmed>
  40. </PropertyGroup>
  41. </Project>