aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMary <mary@mary.zone>2022-02-17 22:10:48 +0100
committerGitHub <noreply@github.com>2022-02-17 22:10:48 +0100
commit868919e101ba5d5ad1cfccb5017b294fec11c6e3 (patch)
treec59c519c1e10543e643bb961f754d7d91f39f99d
parent9ca040c0ff66e8ad928b6fb109401a5b4b53a74d (diff)
misc: Update GtkSharp.Dependencies and speed up initial Windows build (#3128)1.1.35
Update GtkSharp.Dependencies to fix between menu flickering and enable the SkipInstallGtk in csproj to avoid downloading unused GTK3 install locally.
-rw-r--r--Ryujinx/Ryujinx.csproj4
1 files changed, 3 insertions, 1 deletions
diff --git a/Ryujinx/Ryujinx.csproj b/Ryujinx/Ryujinx.csproj
index 9374df10..3ae2a673 100644
--- a/Ryujinx/Ryujinx.csproj
+++ b/Ryujinx/Ryujinx.csproj
@@ -9,6 +9,8 @@
<TieredCompilation>false</TieredCompilation>
<TieredCompilationQuickJit>false</TieredCompilationQuickJit>
<DefineConstants Condition=" '$(ExtraDefineConstants)' != '' ">$(DefineConstants);$(ExtraDefineConstants)</DefineConstants>
+ <!-- As we already provide GTK3 on Windows via GtkSharp.Dependencies this is redundant. -->
+ <SkipGtkInstall>true</SkipGtkInstall>
</PropertyGroup>
<PropertyGroup Condition="'$(RuntimeIdentifier)' != ''">
@@ -19,7 +21,7 @@
<ItemGroup>
<PackageReference Include="DiscordRichPresence" Version="1.0.175" />
<PackageReference Include="GtkSharp" Version="3.22.25.128" />
- <PackageReference Include="GtkSharp.Dependencies" Version="1.1.0" Condition="'$(RuntimeIdentifier)' != 'linux-x64' AND '$(RuntimeIdentifier)' != 'osx-x64'" />
+ <PackageReference Include="GtkSharp.Dependencies" Version="1.1.1" Condition="'$(RuntimeIdentifier)' != 'linux-x64' AND '$(RuntimeIdentifier)' != 'osx-x64'" />
<PackageReference Include="Ryujinx.Graphics.Nvdec.Dependencies" Version="4.4.0-build9" Condition="'$(RuntimeIdentifier)' != 'linux-x64' AND '$(RuntimeIdentifier)' != 'osx-x64'" />
<PackageReference Include="Ryujinx.Audio.OpenAL.Dependencies" Version="1.21.0.1" Condition="'$(RuntimeIdentifier)' != 'linux-x64' AND '$(RuntimeIdentifier)' != 'osx-x64'" />
<PackageReference Include="OpenTK.Graphics" Version="4.5.0" />