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.

46 lines
2.0 KiB

  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFrameworks>net472</TargetFrameworks>
  4. <OutputType>WinExe</OutputType>
  5. <Platforms>x86;x64</Platforms>
  6. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  7. <UseWPF>true</UseWPF>
  8. <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
  9. <ApplicationManifest>app.manifest</ApplicationManifest>
  10. <StartupObject>CefSharp.Wpf.Example.Program</StartupObject>
  11. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  12. <RuntimeIdentifiers>win7-x86;win7-x64</RuntimeIdentifiers>
  13. </PropertyGroup>
  14. <ItemGroup>
  15. <AppDesigner Include="Properties\" />
  16. </ItemGroup>
  17. <ItemGroup>
  18. <None Update="crash_reporter.cfg">
  19. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  20. </None>
  21. </ItemGroup>
  22. <ItemGroup>
  23. <ProjectReference Include="..\CefSharp.Core.Runtime\CefSharp.Core.Runtime.vcxproj" />
  24. <ProjectReference Include="..\CefSharp.Core\CefSharp.Core.csproj" />
  25. <ProjectReference Include="..\CefSharp.Example\CefSharp.Example.csproj" />
  26. <ProjectReference Include="..\CefSharp.Wpf\CefSharp.Wpf.csproj" />
  27. <ProjectReference Include="..\CefSharp\CefSharp.csproj" />
  28. </ItemGroup>
  29. <ItemGroup>
  30. <Folder Include="Assets\Images\" />
  31. </ItemGroup>
  32. <ItemGroup>
  33. <PackageReference Include="chromiumembeddedframework.runtime" Version="111.2.2" />
  34. </ItemGroup>
  35. <ItemGroup>
  36. <Compile Remove="bin.netcore\**" />
  37. <Compile Remove="obj.netcore\**" />
  38. <EmbeddedResource Remove="bin.netcore\**" />
  39. <EmbeddedResource Remove="obj.netcore\**" />
  40. <None Remove="bin.netcore\**" />
  41. <None Remove="obj.netcore\**" />
  42. <Page Remove="bin.netcore\**" />
  43. <Page Remove="obj.netcore\**" />
  44. </ItemGroup>
  45. <Import Project="$(MSBuildThisFileDirectory)..\CefSharp.Native.props" />
  46. </Project>