Ryujinx.Common.csproj 1.4 KB

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