2021-07-06 22:08:44 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2021-11-28 21:24:17 +01:00
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2022-06-01 02:01:16 +02:00
|
|
|
<RuntimeIdentifiers>win10-x64;osx-x64;linux-x64</RuntimeIdentifiers>
|
2021-07-06 22:08:44 +02:00
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
<Version>1.0.0-dirty</Version>
|
|
|
|
<TieredCompilation>false</TieredCompilation>
|
|
|
|
<TieredCompilationQuickJit>false</TieredCompilationQuickJit>
|
|
|
|
<DefineConstants Condition=" '$(ExtraDefineConstants)' != '' ">$(DefineConstants);$(ExtraDefineConstants)</DefineConstants>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="Ryujinx.Graphics.Nvdec.Dependencies" Version="4.4.0-build7" Condition="'$(RuntimeIdentifier)' != 'linux-x64' AND '$(RuntimeIdentifier)' != 'osx-x64'" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\Ryujinx.Input\Ryujinx.Input.csproj" />
|
|
|
|
<ProjectReference Include="..\Ryujinx.Input.SDL2\Ryujinx.Input.SDL2.csproj" />
|
|
|
|
<ProjectReference Include="..\Ryujinx.Audio.Backends.SDL2\Ryujinx.Audio.Backends.SDL2.csproj" />
|
|
|
|
<ProjectReference Include="..\Ryujinx.Common\Ryujinx.Common.csproj" />
|
|
|
|
<ProjectReference Include="..\Ryujinx.HLE\Ryujinx.HLE.csproj" />
|
|
|
|
<ProjectReference Include="..\ARMeilleure\ARMeilleure.csproj" />
|
|
|
|
<ProjectReference Include="..\Ryujinx.Graphics.OpenGL\Ryujinx.Graphics.OpenGL.csproj" />
|
|
|
|
<ProjectReference Include="..\Ryujinx.Graphics.Gpu\Ryujinx.Graphics.Gpu.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="CommandLineParser" Version="2.8.0" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2022-05-15 13:30:15 +02:00
|
|
|
<ItemGroup>
|
|
|
|
<ContentWithTargetPath Include="..\distribution\legal\THIRDPARTY.md">
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
<TargetPath>THIRDPARTY.md</TargetPath>
|
|
|
|
</ContentWithTargetPath>
|
|
|
|
</ItemGroup>
|
2021-07-06 22:08:44 +02:00
|
|
|
|
|
|
|
<!-- Due to .net core 3.1 embedded resource loading -->
|
|
|
|
<PropertyGroup>
|
|
|
|
<EmbeddedResourceUseDependentUponConvention>false</EmbeddedResourceUseDependentUponConvention>
|
|
|
|
<ApplicationIcon>..\Ryujinx\Ryujinx.ico</ApplicationIcon>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(RuntimeIdentifier)' != ''">
|
|
|
|
<PublishSingleFile>true</PublishSingleFile>
|
|
|
|
<PublishTrimmed>true</PublishTrimmed>
|
|
|
|
</PropertyGroup>
|
|
|
|
</Project>
|