diff options
Diffstat (limited to 'Ryujinx.Common/Ryujinx.Common.csproj')
| -rw-r--r-- | Ryujinx.Common/Ryujinx.Common.csproj | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Ryujinx.Common/Ryujinx.Common.csproj b/Ryujinx.Common/Ryujinx.Common.csproj index bba481e6..cf078db8 100644 --- a/Ryujinx.Common/Ryujinx.Common.csproj +++ b/Ryujinx.Common/Ryujinx.Common.csproj @@ -3,16 +3,29 @@ <PropertyGroup> <TargetFramework>netcoreapp2.1</TargetFramework> <RuntimeIdentifiers>win10-x64;osx-x64;linux-x64</RuntimeIdentifiers> + <Configurations>Debug;Release;Profile Debug;Profile Release</Configurations> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> <AllowUnsafeBlocks>true</AllowUnsafeBlocks> </PropertyGroup> + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Profile Debug|AnyCPU'"> + <AllowUnsafeBlocks>true</AllowUnsafeBlocks> + <DefineConstants>TRACE;USE_PROFILING</DefineConstants> + <Optimize>false</Optimize> + </PropertyGroup> + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> <AllowUnsafeBlocks>true</AllowUnsafeBlocks> </PropertyGroup> + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Profile Release|AnyCPU'"> + <AllowUnsafeBlocks>true</AllowUnsafeBlocks> + <DefineConstants>TRACE;USE_PROFILING</DefineConstants> + <Optimize>true</Optimize> + </PropertyGroup> + <ItemGroup> <PackageReference Include="Utf8Json" Version="1.3.7" /> </ItemGroup> |
