|
@@ -1,15 +1,46 @@
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
<PropertyGroup>
|
|
|
- <TargetFramework>netcoreapp3.1</TargetFramework>
|
|
|
|
|
- <LangVersion>8.0</LangVersion>
|
|
|
|
|
|
|
+ <TargetFramework>net5.0</TargetFramework>
|
|
|
<RuntimeIdentifiers>win-x64;osx-x64;linux-x64</RuntimeIdentifiers>
|
|
<RuntimeIdentifiers>win-x64;osx-x64;linux-x64</RuntimeIdentifiers>
|
|
|
<OutputType>Exe</OutputType>
|
|
<OutputType>Exe</OutputType>
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
- <Configurations>Debug;Release</Configurations>
|
|
|
|
|
<Version>1.0.0-dirty</Version>
|
|
<Version>1.0.0-dirty</Version>
|
|
|
</PropertyGroup>
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
+ <ItemGroup>
|
|
|
|
|
+ <PackageReference Include="Crc32.NET" Version="1.2.0" />
|
|
|
|
|
+ <PackageReference Include="DiscordRichPresence" Version="1.0.166" />
|
|
|
|
|
+ <PackageReference Include="GLWidget" Version="1.0.2" />
|
|
|
|
|
+ <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="Ryujinx.Graphics.Nvdec.Dependencies" Version="4.3.0" Condition="'$(RuntimeIdentifier)' != 'linux-x64' AND '$(RuntimeIdentifier)' != 'osx-x64'" />
|
|
|
|
|
+ <PackageReference Include="OpenTK.NetStandard" Version="1.0.5.32" />
|
|
|
|
|
+ <PackageReference Include="SharpZipLib" Version="1.3.0" />
|
|
|
|
|
+ </ItemGroup>
|
|
|
|
|
+
|
|
|
|
|
+ <ItemGroup>
|
|
|
|
|
+ <ProjectReference Include="..\Ryujinx.Audio\Ryujinx.Audio.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>
|
|
|
|
|
+ <None Update="Config.json" Condition="'$(Configuration)' == 'Debug' OR '$(Configuration)' == 'Profile Debug'">
|
|
|
|
|
+ <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
+ </None>
|
|
|
|
|
+ <None Update="THIRDPARTY.md">
|
|
|
|
|
+ <CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
+ </None>
|
|
|
|
|
+ <ContentWithTargetPath Include="..\Ryujinx.Audio.Renderer\LICENSE.txt">
|
|
|
|
|
+ <CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
+ <TargetPath>LICENSE-Ryujinx.Audio.Renderer.txt</TargetPath>
|
|
|
|
|
+ </ContentWithTargetPath>
|
|
|
|
|
+ </ItemGroup>
|
|
|
|
|
+
|
|
|
<!-- Due to .net core 3.1 embedded resource loading -->
|
|
<!-- Due to .net core 3.1 embedded resource loading -->
|
|
|
<PropertyGroup>
|
|
<PropertyGroup>
|
|
|
<EmbeddedResourceUseDependentUponConvention>false</EmbeddedResourceUseDependentUponConvention>
|
|
<EmbeddedResourceUseDependentUponConvention>false</EmbeddedResourceUseDependentUponConvention>
|
|
@@ -70,37 +101,4 @@
|
|
|
<EmbeddedResource Include="Updater\UpdateDialog.glade" />
|
|
<EmbeddedResource Include="Updater\UpdateDialog.glade" />
|
|
|
</ItemGroup>
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
- <ItemGroup>
|
|
|
|
|
- <PackageReference Include="Crc32.NET" Version="1.2.0" />
|
|
|
|
|
- <PackageReference Include="DiscordRichPresence" Version="1.0.150" />
|
|
|
|
|
- <PackageReference Include="GLWidget" Version="1.0.2" />
|
|
|
|
|
- <PackageReference Include="GtkSharp" Version="3.22.25.56" />
|
|
|
|
|
- <PackageReference Include="GtkSharp.Dependencies" Version="1.1.0" Condition="'$(RuntimeIdentifier)' != 'linux-x64' AND '$(RuntimeIdentifier)' != 'osx-x64'" />
|
|
|
|
|
- <PackageReference Include="Ryujinx.Graphics.Nvdec.Dependencies" Version="4.3.0" Condition="'$(RuntimeIdentifier)' != 'linux-x64' AND '$(RuntimeIdentifier)' != 'osx-x64'" />
|
|
|
|
|
- <PackageReference Include="OpenTK.NetStandard" Version="1.0.5.22" />
|
|
|
|
|
- <PackageReference Include="SharpZipLib" Version="1.2.0" />
|
|
|
|
|
- </ItemGroup>
|
|
|
|
|
-
|
|
|
|
|
- <ItemGroup>
|
|
|
|
|
- <ProjectReference Include="..\Ryujinx.Audio\Ryujinx.Audio.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>
|
|
|
|
|
- <None Update="Config.json" Condition="'$(Configuration)' == 'Debug' OR '$(Configuration)' == 'Profile Debug'">
|
|
|
|
|
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
- </None>
|
|
|
|
|
- <None Update="THIRDPARTY.md">
|
|
|
|
|
- <CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
- </None>
|
|
|
|
|
- <ContentWithTargetPath Include="..\Ryujinx.Audio.Renderer\LICENSE.txt">
|
|
|
|
|
- <CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
- <TargetPath>LICENSE-Ryujinx.Audio.Renderer.txt</TargetPath>
|
|
|
|
|
- </ContentWithTargetPath>
|
|
|
|
|
- </ItemGroup>
|
|
|
|
|
-
|
|
|
|
|
</Project>
|
|
</Project>
|