2020-07-18 13:30:54 +10: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.netcore\</BaseIntermediateOutputPath>
|
|
|
|
|
<BaseOutputPath>bin.netcore\</BaseOutputPath>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<!-- Implicit top import -->
|
|
|
|
|
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" />
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
|
|
|
<RootNamespace>CefSharp.BrowserSubprocess</RootNamespace>
|
|
|
|
|
<AssemblyName>CefSharp.BrowserSubprocess</AssemblyName>
|
|
|
|
|
<DocumentationFile>$(BaseOutputPath)$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
|
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
|
|
|
<SignAssembly>true</SignAssembly>
|
|
|
|
|
<AssemblyOriginatorKeyFile>..\CefSharp.snk</AssemblyOriginatorKeyFile>
|
|
|
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
|
|
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
|
|
|
<StartupObject>CefSharp.BrowserSubprocess.Program</StartupObject>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
<WarningLevel>2</WarningLevel>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2020-11-06 15:45:36 +10:00
|
|
|
<PropertyGroup Condition="'$(Configuration)'=='Release'">
|
|
|
|
|
<EmbedAllSources>True</EmbedAllSources>
|
|
|
|
|
<DebugType>embedded</DebugType>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2020-07-18 13:30:54 +10:00
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Remove="bin\**" />
|
|
|
|
|
<Compile Remove="obj\**" />
|
|
|
|
|
<EmbeddedResource Remove="bin\**" />
|
|
|
|
|
<EmbeddedResource Remove="obj\**" />
|
|
|
|
|
<None Remove="bin\**" />
|
|
|
|
|
<None Remove="obj\**" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Remove="Program.cs" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\CefSharp.BrowserSubprocess.Core\CefSharp.BrowserSubprocess.Core.netcore.vcxproj" />
|
|
|
|
|
<ProjectReference Include="..\CefSharp\CefSharp.netcore.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<!-- Implicit bottom import -->
|
|
|
|
|
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" />
|
|
|
|
|
</Project>
|