Ryujinx.Debugger.csproj 1.3 KB

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