mirror of https://github.com/cefsharp/CefSharp.git
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.
52 lines
2.3 KiB
52 lines
2.3 KiB
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net472</TargetFramework>
|
|
<OutputType>WinExe</OutputType>
|
|
<Platforms>x86;x64</Platforms>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
<StartupObject>CefSharp.WinForms.Example.Program</StartupObject>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<RuntimeIdentifiers>win-x86;win-x64</RuntimeIdentifiers>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="System" />
|
|
<Reference Include="System.Security" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Update="BrowserTabUserControl.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Update="crash_reporter.cfg">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\CefSharp.Core.Runtime\CefSharp.Core.Runtime.vcxproj" />
|
|
<ProjectReference Include="..\CefSharp.Core\CefSharp.Core.csproj" />
|
|
<ProjectReference Include="..\CefSharp.Example\CefSharp.Example.csproj" />
|
|
<ProjectReference Include="..\CefSharp.WinForms\CefSharp.WinForms.csproj" />
|
|
<ProjectReference Include="..\CefSharp\CefSharp.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="chromiumembeddedframework.runtime" Version="131.3.1" />
|
|
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="8.0.0">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<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\**" />
|
|
</ItemGroup>
|
|
<Import Project="$(MSBuildThisFileDirectory)..\CefSharp.Native.props" />
|
|
</Project>
|