Ryujinx.Common.csproj 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netcoreapp3.1</TargetFramework>
  4. <LangVersion>8.0</LangVersion>
  5. <RuntimeIdentifiers>win-x64;osx-x64;linux-x64</RuntimeIdentifiers>
  6. <Configurations>Debug;Release;Profile Debug;Profile Release</Configurations>
  7. </PropertyGroup>
  8. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  9. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  10. </PropertyGroup>
  11. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Profile Debug|AnyCPU'">
  12. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  13. <DefineConstants>TRACE;USE_DEBUGGING</DefineConstants>
  14. <Optimize>false</Optimize>
  15. </PropertyGroup>
  16. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  17. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  18. </PropertyGroup>
  19. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Profile Release|AnyCPU'">
  20. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  21. <DefineConstants>TRACE;USE_DEBUGGING</DefineConstants>
  22. <Optimize>true</Optimize>
  23. </PropertyGroup>
  24. <ItemGroup>
  25. <PackageReference Include="MsgPack.Cli" Version="1.0.1" />
  26. <PackageReference Include="System.Management" Version="4.7.0" />
  27. </ItemGroup>
  28. </Project>