| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>netcoreapp3.1</TargetFramework>
- <LangVersion>8.0</LangVersion>
- <RuntimeIdentifiers>win-x64;osx-x64;linux-x64</RuntimeIdentifiers>
- <Configurations>Debug;Release</Configurations>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
- <!-- Due to Concentus. -->
- <PropertyGroup>
- <NoWarn>NU1605</NoWarn>
- </PropertyGroup>
- <ItemGroup>
- <None Remove="Homebrew.npdm" />
- <None Remove="RyujinxProfileImage.jpg" />
- </ItemGroup>
- <ItemGroup>
- <EmbeddedResource Include="Homebrew.npdm" />
- <EmbeddedResource Include="RyujinxProfileImage.jpg" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\Ryujinx.Audio.Renderer\Ryujinx.Audio.Renderer.csproj" />
- <ProjectReference Include="..\Ryujinx.Audio\Ryujinx.Audio.csproj" />
- <ProjectReference Include="..\Ryujinx.Common\Ryujinx.Common.csproj" />
- <ProjectReference Include="..\Ryujinx.Cpu\Ryujinx.Cpu.csproj" />
- <ProjectReference Include="..\Ryujinx.Graphics.Host1x\Ryujinx.Graphics.Host1x.csproj" />
- <ProjectReference Include="..\Ryujinx.Graphics.Nvdec\Ryujinx.Graphics.Nvdec.csproj" />
- <ProjectReference Include="..\Ryujinx.Graphics.Vic\Ryujinx.Graphics.Vic.csproj" />
- <ProjectReference Include="..\Ryujinx.Memory\Ryujinx.Memory.csproj" />
- <ProjectReference Include="..\ARMeilleure\ARMeilleure.csproj" />
- <ProjectReference Include="..\Ryujinx.Graphics.Gpu\Ryujinx.Graphics.Gpu.csproj" />
- <ProjectReference Include="..\Ryujinx.Graphics.GAL\Ryujinx.Graphics.GAL.csproj" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="Concentus" Version="1.1.7" />
- <PackageReference Include="LibHac" Version="0.12.0" />
- <PackageReference Include="MsgPack.Cli" Version="1.0.1" />
- </ItemGroup>
- </Project>
|