You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
2.0 KiB

  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net472</TargetFramework>
  4. <OutputType>Exe</OutputType>
  5. <Platforms>x86;x64</Platforms>
  6. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  7. <ApplicationManifest>app.manifest</ApplicationManifest>
  8. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  9. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  10. <RuntimeIdentifiers>win-x86;win-x64</RuntimeIdentifiers>
  11. </PropertyGroup>
  12. <ItemGroup>
  13. <ProjectReference Include="..\CefSharp.Core.Runtime\CefSharp.Core.Runtime.vcxproj" />
  14. <ProjectReference Include="..\CefSharp.Core\CefSharp.Core.csproj" />
  15. <ProjectReference Include="..\CefSharp.Example\CefSharp.Example.csproj" />
  16. <ProjectReference Include="..\CefSharp.OffScreen\CefSharp.OffScreen.csproj" />
  17. <ProjectReference Include="..\CefSharp\CefSharp.csproj" />
  18. </ItemGroup>
  19. <ItemGroup>
  20. <None Update="crash_reporter.cfg">
  21. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  22. </None>
  23. </ItemGroup>
  24. <ItemGroup>
  25. <PackageReference Include="chromiumembeddedframework.runtime" Version="131.3.1" />
  26. <PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="8.0.0">
  27. <PrivateAssets>all</PrivateAssets>
  28. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  29. </PackageReference>
  30. </ItemGroup>
  31. <ItemGroup>
  32. <Compile Remove="bin.netcore\**" />
  33. <Compile Remove="obj.netcore\**" />
  34. <EmbeddedResource Remove="bin.netcore\**" />
  35. <EmbeddedResource Remove="obj.netcore\**" />
  36. <None Remove="bin.netcore\**" />
  37. <None Remove="obj.netcore\**" />
  38. <Page Remove="bin.netcore\**" />
  39. <Page Remove="obj.netcore\**" />
  40. </ItemGroup>
  41. <Import Project="$(MSBuildThisFileDirectory)..\CefSharp.Native.props" />
  42. </Project>