2021-02-03 09:06:58 +08:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<Project>
|
|
|
|
|
<!-- Note: We cannot use the recommended style of specifying <Project Sdk=...> because we need
|
|
|
|
|
to set BaseIntermediateOutputPath and BaseOutputPath before the SDK props are imported. -->
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<BaseIntermediateOutputPath>obj.net472\</BaseIntermediateOutputPath>
|
|
|
|
|
<BaseOutputPath>bin.net472\</BaseOutputPath>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk.WindowsDesktop" />
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
|
|
|
|
<TargetFramework>net472</TargetFramework>
|
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
|
|
|
<RootNamespace>CefSharp.MinimalExample.WinForms</RootNamespace>
|
|
|
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
2021-03-16 13:23:09 +08:00
|
|
|
|
<Platforms>x86;x64;AnyCPU</Platforms>
|
2021-03-05 09:15:53 +08:00
|
|
|
|
<ProjectGuid>{1D1D63D1-5257-4AA0-A284-7EF4574878CB}</ProjectGuid>
|
|
|
|
|
<StartupObject>CefSharp.MinimalExample.WinForms.Program</StartupObject>
|
2021-02-03 09:06:58 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2021-03-16 13:23:09 +08:00
|
|
|
|
<PropertyGroup Condition="'$(Platform)' == 'AnyCPU'">
|
|
|
|
|
<DefineConstants>$(DefineConstants);ANYCPU</DefineConstants>
|
|
|
|
|
<!--
|
|
|
|
|
For versions 87 and 88 specify CefSharpPlatformTargetOverride when using AnyCPU.
|
|
|
|
|
For versions 89 and above use PlatformTarget (CefSharpPlatformTargetOverride will also still work)
|
|
|
|
|
-->
|
2021-04-07 13:39:45 +08:00
|
|
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
|
|
|
<!--<CefSharpPlatformTargetOverride>AnyCPU</CefSharpPlatformTargetOverride>-->
|
2021-03-16 13:23:09 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2021-02-03 09:06:58 +08:00
|
|
|
|
<ItemGroup>
|
2021-09-04 12:11:40 +08:00
|
|
|
|
<Compile Remove="bin.netcore\**" />
|
2021-02-03 09:06:58 +08:00
|
|
|
|
<Compile Remove="bin\**" />
|
2021-09-04 12:11:40 +08:00
|
|
|
|
<Compile Remove="obj.netcore\**" />
|
2021-02-03 09:06:58 +08:00
|
|
|
|
<Compile Remove="obj\**" />
|
2021-09-04 12:11:40 +08:00
|
|
|
|
<EmbeddedResource Remove="bin.netcore\**" />
|
2021-02-03 09:06:58 +08:00
|
|
|
|
<EmbeddedResource Remove="bin\**" />
|
2021-09-04 12:11:40 +08:00
|
|
|
|
<EmbeddedResource Remove="obj.netcore\**" />
|
2021-02-03 09:06:58 +08:00
|
|
|
|
<EmbeddedResource Remove="obj\**" />
|
2021-09-04 12:11:40 +08:00
|
|
|
|
<None Remove="bin.netcore\**" />
|
2021-02-03 09:06:58 +08:00
|
|
|
|
<None Remove="bin\**" />
|
2021-09-04 12:11:40 +08:00
|
|
|
|
<None Remove="obj.netcore\**" />
|
2021-02-03 09:06:58 +08:00
|
|
|
|
<None Remove="obj\**" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-01-31 07:36:16 +08:00
|
|
|
|
<PackageReference Include="CefSharp.WinForms" Version="97.1.61" />
|
2021-02-03 09:06:58 +08:00
|
|
|
|
</ItemGroup>
|
2021-03-09 07:28:16 +08:00
|
|
|
|
|
|
|
|
|
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk.WindowsDesktop" />
|
2021-01-27 13:38:31 +08:00
|
|
|
|
|
|
|
|
|
<Target Name="CefSharpAfterBuildDebug" AfterTargets="AfterBuild">
|
2021-03-05 09:15:53 +08:00
|
|
|
|
<CallTarget Targets="CefSharpAfterBuildDiagnostic" />
|
2021-01-27 13:38:31 +08:00
|
|
|
|
</Target>
|
2021-02-03 09:06:58 +08:00
|
|
|
|
</Project>
|