Ryujinx.ShaderTools.csproj 871 B

12345678910111213141516171819202122232425
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <ItemGroup>
  3. <ProjectReference Include="..\Ryujinx.Graphics.Shader\Ryujinx.Graphics.Shader.csproj" />
  4. </ItemGroup>
  5. <PropertyGroup>
  6. <TargetFramework>netcoreapp3.1</TargetFramework>
  7. <LangVersion>8.0</LangVersion>
  8. <RuntimeIdentifiers>win-x64;osx-x64;linux-x64</RuntimeIdentifiers>
  9. <OutputType>Exe</OutputType>
  10. <Configurations>Debug;Release;Profile Debug;Profile Release</Configurations>
  11. </PropertyGroup>
  12. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Profile Release|AnyCPU'">
  13. <DefineConstants>TRACE;USE_DEBUGGING</DefineConstants>
  14. <Optimize>true</Optimize>
  15. </PropertyGroup>
  16. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Profile Debug|AnyCPU'">
  17. <DefineConstants>TRACE;USE_DEBUGGING</DefineConstants>
  18. <Optimize>false</Optimize>
  19. </PropertyGroup>
  20. </Project>