2020-11-12 17:15:34 -06:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2019-10-13 01:02:07 -05:00
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2020-05-03 17:54:50 -05:00
|
|
|
|
<ProjectReference Include="..\Ryujinx.Cpu\Ryujinx.Cpu.csproj" />
|
2020-07-23 21:53:25 -05:00
|
|
|
|
<ProjectReference Include="..\Ryujinx.Graphics.Device\Ryujinx.Graphics.Device.csproj" />
|
2019-10-13 01:02:07 -05:00
|
|
|
|
<ProjectReference Include="..\Ryujinx.Graphics.GAL\Ryujinx.Graphics.GAL.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Ryujinx.Common\Ryujinx.Common.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Ryujinx.Graphics.Texture\Ryujinx.Graphics.Texture.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Ryujinx.Graphics.Shader\Ryujinx.Graphics.Shader.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2020-04-21 23:13:41 -05:00
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
2020-05-03 21:14:48 -05:00
|
|
|
|
<LangVersion>8.0</LangVersion>
|
2020-01-07 16:32:00 -06:00
|
|
|
|
<RuntimeIdentifiers>win-x64;osx-x64;linux-x64</RuntimeIdentifiers>
|
2019-10-13 01:02:07 -05:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2020-02-01 21:25:52 -06:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2019-10-13 01:02:07 -05:00
|
|
|
|
</Project>
|