2019-09-10 16:20:34 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
|
|
|
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
|
|
|
|
<UseWPF>true</UseWPF>
|
|
|
|
|
<RootNamespace>CefSharp.MinimalExample.Wpf</RootNamespace>
|
|
|
|
|
<ApplicationIcon>chromium-256.ico</ApplicationIcon>
|
|
|
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
|
|
|
<Platforms>x86;x64</Platforms>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="System.Windows.Interactivity.WPF" Version="2.0.20525" />
|
2019-11-03 11:08:45 +08:00
|
|
|
|
<PackageReference Include="CefSharp.Wpf" Version="75.1.143" />
|
2019-09-10 16:20:34 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<!-- TODO: These updates are currently required because CefSharp.Wpf specifies
|
|
|
|
|
<Private>false</Private>, which means these libraries will not be specified in
|
|
|
|
|
the .deps.json file, and so the CoreCLR wouldn't load these. -->
|
|
|
|
|
<Reference Update="CefSharp">
|
|
|
|
|
<Private>true</Private>
|
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Update="CefSharp.Core">
|
|
|
|
|
<Private>true</Private>
|
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Update="CefSharp.Wpf">
|
|
|
|
|
<Private>true</Private>
|
|
|
|
|
</Reference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|