2020-12-09 22:36:08 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-08-10 17:27:15 +00:00
|
|
|
|
|
2018-02-04 23:08:20 +00:00
|
|
|
|
<PropertyGroup>
|
2021-11-28 20:24:17 +00:00
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2022-06-01 00:01:16 +00:00
|
|
|
|
<RuntimeIdentifiers>win10-x64;osx-x64;linux-x64</RuntimeIdentifiers>
|
2018-08-10 17:27:15 +00:00
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
2020-02-12 13:35:39 +00:00
|
|
|
|
<Version>1.0.0-dirty</Version>
|
2021-02-28 10:56:15 +00:00
|
|
|
|
<DefineConstants Condition=" '$(ExtraDefineConstants)' != '' ">$(DefineConstants);$(ExtraDefineConstants)</DefineConstants>
|
2022-02-17 21:10:48 +00:00
|
|
|
|
<!-- As we already provide GTK3 on Windows via GtkSharp.Dependencies this is redundant. -->
|
|
|
|
|
<SkipGtkInstall>true</SkipGtkInstall>
|
2019-04-26 04:53:10 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2021-06-23 22:40:19 +00:00
|
|
|
|
<PropertyGroup Condition="'$(RuntimeIdentifier)' != ''">
|
|
|
|
|
<PublishSingleFile>true</PublishSingleFile>
|
|
|
|
|
<PublishTrimmed>true</PublishTrimmed>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2020-11-15 18:27:15 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="GtkSharp" Version="3.22.25.128" />
|
2022-02-17 21:10:48 +00:00
|
|
|
|
<PackageReference Include="GtkSharp.Dependencies" Version="1.1.1" Condition="'$(RuntimeIdentifier)' != 'linux-x64' AND '$(RuntimeIdentifier)' != 'osx-x64'" />
|
2022-07-14 13:13:23 +00:00
|
|
|
|
<PackageReference Include="Ryujinx.Graphics.Nvdec.Dependencies" Version="5.0.1-build10" Condition="'$(RuntimeIdentifier)' != 'linux-x64' AND '$(RuntimeIdentifier)' != 'osx-x64'" />
|
2020-12-30 22:08:09 +00:00
|
|
|
|
<PackageReference Include="Ryujinx.Audio.OpenAL.Dependencies" Version="1.21.0.1" Condition="'$(RuntimeIdentifier)' != 'linux-x64' AND '$(RuntimeIdentifier)' != 'osx-x64'" />
|
2022-05-15 14:02:15 +00:00
|
|
|
|
<PackageReference Include="OpenTK.Graphics" Version="4.7.2" />
|
2021-12-23 17:31:06 +00:00
|
|
|
|
<PackageReference Include="SPB" Version="0.0.4-build17" />
|
2021-11-28 20:24:17 +00:00
|
|
|
|
<PackageReference Include="SharpZipLib" Version="1.3.3" />
|
2022-05-15 14:02:15 +00:00
|
|
|
|
<PackageReference Include="SixLabors.ImageSharp" Version="1.0.4" />
|
2020-11-15 18:27:15 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-04-14 10:28:43 +00:00
|
|
|
|
<ProjectReference Include="..\Ryujinx.Input\Ryujinx.Input.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Ryujinx.Input.SDL2\Ryujinx.Input.SDL2.csproj" />
|
2021-02-26 00:11:56 +00:00
|
|
|
|
<ProjectReference Include="..\Ryujinx.Audio.Backends.OpenAL\Ryujinx.Audio.Backends.OpenAL.csproj" />
|
2021-05-05 21:37:09 +00:00
|
|
|
|
<ProjectReference Include="..\Ryujinx.Audio.Backends.SDL2\Ryujinx.Audio.Backends.SDL2.csproj" />
|
2021-02-26 00:11:56 +00:00
|
|
|
|
<ProjectReference Include="..\Ryujinx.Audio.Backends.SoundIo\Ryujinx.Audio.Backends.SoundIo.csproj" />
|
2020-11-15 18:27:15 +00:00
|
|
|
|
<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" />
|
2022-05-15 11:30:15 +00:00
|
|
|
|
<ProjectReference Include="..\Ryujinx.Ui.Common\Ryujinx.Ui.Common.csproj" />
|
2020-11-15 18:27:15 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2022-05-15 14:02:15 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ContentWithTargetPath Include="..\distribution\windows\alsoft.ini" Condition="'$(RuntimeIdentifier)' != 'linux-x64' AND '$(RuntimeIdentifier)' != 'osx-x64'">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
<TargetPath>alsoft.ini</TargetPath>
|
|
|
|
|
</ContentWithTargetPath>
|
|
|
|
|
<ContentWithTargetPath Include="..\distribution\legal\THIRDPARTY.md">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
<TargetPath>THIRDPARTY.md</TargetPath>
|
|
|
|
|
</ContentWithTargetPath>
|
|
|
|
|
</ItemGroup>
|
2020-11-15 18:27:15 +00:00
|
|
|
|
|
2020-04-22 04:13:41 +00:00
|
|
|
|
<!-- Due to .net core 3.1 embedded resource loading -->
|
2019-10-31 18:09:03 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<EmbeddedResourceUseDependentUponConvention>false</EmbeddedResourceUseDependentUponConvention>
|
2020-01-24 15:14:51 +00:00
|
|
|
|
<ApplicationIcon>Ryujinx.ico</ApplicationIcon>
|
2019-10-31 18:09:03 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2019-11-29 04:32:51 +00:00
|
|
|
|
<PropertyGroup Condition="'$(RuntimeIdentifier)' == 'osx-x64'">
|
2021-02-28 10:56:15 +00:00
|
|
|
|
<DefineConstants>$(DefineConstants);MACOS_BUILD</DefineConstants>
|
2019-11-29 04:32:51 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Remove="Ui\MainWindow.glade" />
|
2021-01-08 08:14:13 +00:00
|
|
|
|
<None Remove="Ui\Widgets\ProfileDialog.glade" />
|
2022-01-03 08:39:43 +00:00
|
|
|
|
<None Remove="Ui\Windows\CheatWindow.glade" />
|
2021-01-08 08:14:13 +00:00
|
|
|
|
<None Remove="Ui\Windows\ControllerWindow.glade" />
|
|
|
|
|
<None Remove="Ui\Windows\DlcWindow.glade" />
|
|
|
|
|
<None Remove="Ui\Windows\SettingsWindow.glade" />
|
|
|
|
|
<None Remove="Ui\Windows\TitleUpdateWindow.glade" />
|
|
|
|
|
<None Remove="Modules\Updater\UpdateDialog.glade" />
|
2019-11-29 04:32:51 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2019-09-02 16:03:57 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<EmbeddedResource Include="Ui\MainWindow.glade" />
|
2021-01-08 08:14:13 +00:00
|
|
|
|
<EmbeddedResource Include="Ui\Widgets\ProfileDialog.glade" />
|
2022-01-03 08:39:43 +00:00
|
|
|
|
<EmbeddedResource Include="Ui\Windows\CheatWindow.glade" />
|
2021-01-08 08:14:13 +00:00
|
|
|
|
<EmbeddedResource Include="Ui\Windows\ControllerWindow.glade" />
|
|
|
|
|
<EmbeddedResource Include="Ui\Windows\DlcWindow.glade" />
|
|
|
|
|
<EmbeddedResource Include="Ui\Windows\SettingsWindow.glade" />
|
|
|
|
|
<EmbeddedResource Include="Ui\Windows\TitleUpdateWindow.glade" />
|
|
|
|
|
<EmbeddedResource Include="Modules\Updater\UpdateDialog.glade" />
|
2019-09-02 16:03:57 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-08-10 17:27:15 +00:00
|
|
|
|
</Project>
|