2021-09-07 12:08:56 +10:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2014-11-14 18:19:22 +11:00
|
|
|
<PropertyGroup>
|
2021-09-05 14:52:56 +10:00
|
|
|
<TargetFrameworks>net452;net462</TargetFrameworks>
|
2014-11-14 18:19:22 +11:00
|
|
|
<OutputType>Library</OutputType>
|
2020-12-16 10:47:34 +10:00
|
|
|
<SignAssembly>true</SignAssembly>
|
|
|
|
|
<AssemblyOriginatorKeyFile>..\CefSharp.snk</AssemblyOriginatorKeyFile>
|
2021-09-05 14:52:56 +10:00
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
|
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
2014-11-14 18:19:22 +11:00
|
|
|
</PropertyGroup>
|
2021-09-05 14:52:56 +10:00
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
|
2020-08-07 14:10:02 +10:00
|
|
|
<DefineConstants>DEBUG;TRACE;OFFSCREEN</DefineConstants>
|
2021-09-20 11:24:00 +10:00
|
|
|
<DebugType>full</DebugType>
|
2014-11-14 18:19:22 +11:00
|
|
|
</PropertyGroup>
|
2021-09-05 14:52:56 +10:00
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
|
2020-08-07 14:10:02 +10:00
|
|
|
<DefineConstants>TRACE;OFFSCREEN</DefineConstants>
|
2020-12-16 10:47:34 +10:00
|
|
|
<DocumentationFile>bin\Release\CefSharp.OffScreen.xml</DocumentationFile>
|
2021-09-20 11:24:00 +10:00
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
<DebugType>pdbonly</DebugType>
|
2015-05-02 06:55:27 +10:00
|
|
|
</PropertyGroup>
|
2021-09-05 14:52:56 +10:00
|
|
|
|
2014-11-14 18:19:22 +11:00
|
|
|
<ItemGroup>
|
2021-09-05 14:52:56 +10:00
|
|
|
<Compile Include="..\CefSharp\Internals\Partial\ChromiumWebBrowser.Partial.cs" Link="ChromiumWebBrowser.Partial.cs" />
|
2014-11-14 18:19:22 +11:00
|
|
|
</ItemGroup>
|
2021-09-05 14:52:56 +10:00
|
|
|
|
2014-11-14 18:19:22 +11:00
|
|
|
<ItemGroup>
|
2021-09-05 14:52:56 +10:00
|
|
|
<Reference Include="System.ServiceModel" />
|
|
|
|
|
|
|
|
|
|
<ProjectReference Include="..\CefSharp\CefSharp.csproj" />
|
|
|
|
|
<ProjectReference Include="..\CefSharp.Core\CefSharp.Core.csproj" />
|
2021-09-07 12:08:56 +10:00
|
|
|
|
|
|
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2014-11-14 18:19:22 +11:00
|
|
|
</ItemGroup>
|
2021-09-05 14:52:56 +10:00
|
|
|
|
2020-10-21 17:55:29 +10:00
|
|
|
<ItemGroup>
|
2021-09-05 14:52:56 +10:00
|
|
|
<Compile Remove="bin.netcore\**" />
|
|
|
|
|
<Compile Remove="obj.netcore\**" />
|
|
|
|
|
<EmbeddedResource Remove="bin.netcore\**" />
|
|
|
|
|
<EmbeddedResource Remove="obj.netcore\**" />
|
|
|
|
|
<None Remove="bin.netcore\**" />
|
|
|
|
|
<None Remove="obj.netcore\**" />
|
|
|
|
|
<Page Remove="bin.netcore\**" />
|
|
|
|
|
<Page Remove="obj.netcore\**" />
|
2020-10-21 17:55:29 +10:00
|
|
|
</ItemGroup>
|
2014-11-14 18:19:22 +11:00
|
|
|
</Project>
|