Ryujinx.Debugger.csproj 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netcoreapp3.1</TargetFramework>
  4. <LangVersion>8.0</LangVersion>
  5. <Configurations>Debug;Release;Profile Release;Profile Debug</Configurations>
  6. </PropertyGroup>
  7. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Profile Debug|AnyCPU'">
  8. <DefineConstants>TRACE;USE_DEBUGGING</DefineConstants>
  9. </PropertyGroup>
  10. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Profile Release|AnyCPU'">
  11. <DefineConstants>TRACE;USE_DEBUGGING</DefineConstants>
  12. </PropertyGroup>
  13. <ItemGroup>
  14. <None Remove="UI\DebuggerWidget.glade" />
  15. <None Remove="UI\ProfilerWidget.glade" />
  16. </ItemGroup>
  17. <ItemGroup>
  18. <EmbeddedResource Include="UI\DebuggerWidget.glade" />
  19. <EmbeddedResource Include="UI\ProfilerWidget.glade" />
  20. </ItemGroup>
  21. <ItemGroup>
  22. <PackageReference Include="GtkSharp" Version="3.22.25.56" />
  23. <PackageReference Include="SkiaSharp.NativeAssets.Linux" Version="1.68.1.1" />
  24. <PackageReference Include="SkiaSharp.Views.Gtk3" Version="1.68.1.1" />
  25. </ItemGroup>
  26. <ItemGroup>
  27. <ProjectReference Include="..\Ryujinx.Common\Ryujinx.Common.csproj" />
  28. </ItemGroup>
  29. <ItemGroup>
  30. <None Update="ProfilerConfig.jsonc">
  31. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  32. </None>
  33. </ItemGroup>
  34. </Project>