2021-10-10 15:44:47 +10:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net472</TargetFramework>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
<Platforms>x86;x64</Platforms>
|
|
|
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
|
|
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
|
<RuntimeIdentifiers>win7-x86;win7-x64</RuntimeIdentifiers>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<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.OffScreen\CefSharp.OffScreen.csproj" />
|
|
|
|
|
<ProjectReference Include="..\CefSharp\CefSharp.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Update="crash_reporter.cfg">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2023-04-09 11:36:08 +10:00
|
|
|
<PackageReference Include="chromiumembeddedframework.runtime" Version="112.2.7" />
|
2021-10-10 15:44:47 +10:00
|
|
|
</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>
|
2023-03-08 10:11:00 +10:00
|
|
|
<Import Project="$(MSBuildThisFileDirectory)..\CefSharp.Native.props" />
|
2017-11-30 21:43:11 +02:00
|
|
|
</Project>
|