2020-12-16 10:47:34 +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>
|
|
|
|
|
|
|
|
|
|
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" />
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2025-07-05 13:59:17 +10:00
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2020-12-16 10:47:34 +10:00
|
|
|
<RootNamespace>CefSharp.Core</RootNamespace>
|
|
|
|
|
<AssemblyName>CefSharp.Core</AssemblyName>
|
|
|
|
|
<DocumentationFile>$(BaseOutputPath)$(PlatformTarget)$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
|
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
|
|
|
<SignAssembly>true</SignAssembly>
|
|
|
|
|
<AssemblyOriginatorKeyFile>..\CefSharp.snk</AssemblyOriginatorKeyFile>
|
|
|
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
|
|
|
|
<NoWarn>CS1591,CS0436</NoWarn>
|
|
|
|
|
<LangVersion>9.0</LangVersion>
|
|
|
|
|
</PropertyGroup>
|
2021-03-12 13:14:57 +10:00
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)'=='Release'">
|
|
|
|
|
<ProduceReferenceAssembly>true</ProduceReferenceAssembly>
|
2023-08-03 21:24:59 +01:00
|
|
|
<ProduceReferenceAssemblyInOutDir Condition="'$(VisualStudioVersion)'=='17.0'">true</ProduceReferenceAssemblyInOutDir>
|
2021-03-12 13:14:57 +10:00
|
|
|
<EmbedAllSources>True</EmbedAllSources>
|
|
|
|
|
<DebugType>embedded</DebugType>
|
|
|
|
|
</PropertyGroup>
|
2020-12-16 10:47:34 +10:00
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
<DefineConstants>DEBUG;TRACE;NETCOREAPP</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
|
<DefineConstants>TRACE;NETCOREAPP</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2021-01-13 14:56:27 +10:00
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Remove="BrowserSettings.cs" />
|
|
|
|
|
<Compile Remove="PostData.cs" />
|
|
|
|
|
<Compile Remove="PostDataElement.cs" />
|
|
|
|
|
<Compile Remove="Request.cs" />
|
|
|
|
|
<Compile Remove="RequestContext.cs" />
|
|
|
|
|
<Compile Remove="UrlRequest.cs" />
|
|
|
|
|
<Compile Remove="WindowInfo.cs" />
|
2023-03-13 19:01:34 +10:00
|
|
|
<Compile Remove="DevTools\DevToolsClient.Generated.cs" />
|
2021-08-30 08:46:46 +02:00
|
|
|
<!-- Don't include items from the "bin" and "obj" folders used by the .NET Framework projects. -->
|
|
|
|
|
<None Remove="bin/**/*.*" />
|
|
|
|
|
<None Remove="obj/**/*.*" />
|
|
|
|
|
<Compile Remove="obj/**/*.*" />
|
2021-01-13 14:56:27 +10:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
2020-12-16 10:47:34 +10:00
|
|
|
<ItemGroup>
|
2024-09-28 12:14:32 +10:00
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="8.0.0">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2023-03-13 19:01:34 +10:00
|
|
|
<PackageReference Include="Microsoft.Net.Compilers" Version="3.8.0">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2024-09-28 12:14:32 +10:00
|
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
|
2023-03-13 19:01:34 +10:00
|
|
|
<PackageReference Include="System.Text.Json" Version="5.0.0" />
|
2020-12-16 10:47:34 +10:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\CefSharp\CefSharp.netcore.csproj">
|
|
|
|
|
<Private>false</Private>
|
|
|
|
|
</ProjectReference>
|
|
|
|
|
<ProjectReference Include="..\CefSharp.Core.Runtime\CefSharp.Core.Runtime.netcore.vcxproj">
|
|
|
|
|
<Private>false</Private>
|
|
|
|
|
</ProjectReference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" />
|
|
|
|
|
</Project>
|