3445779de5
* Upgrade to 81.3.20-pre * WinForms/WPF - Update enable-media-stream command line arg Remove the "1" as it's not required, does nothing, there is no need to pass in a second argument Issue https://github.com/cefsharp/CefSharp/issues/2858 * Upgrade to 81.3.100
54 lines
1.9 KiB
XML
54 lines
1.9 KiB
XML
<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>
|
|
<StartupObject>CefSharp.MinimalExample.Wpf.Program</StartupObject>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="System.Windows.Interactivity.WPF" Version="2.0.20525" />
|
|
<PackageReference Include="CefSharp.Wpf" Version="81.3.100" />
|
|
</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>
|
|
|
|
<!-- Include CefSharp.BrowserSubprocess.Core so we can selfhost the BrowserSubProcess using our exe -->
|
|
<Choose>
|
|
<When Condition="'$(PlatformTarget)' == 'x64'">
|
|
<ItemGroup>
|
|
<Reference Include="CefSharp.BrowserSubprocess.Core">
|
|
<HintPath>$(CefSharpBrowserProcessCore64)</HintPath>
|
|
<Private>true</Private>
|
|
</Reference>
|
|
</ItemGroup>
|
|
</When>
|
|
<!-- x86, Win32 and AnyCPU -->
|
|
<Otherwise>
|
|
<ItemGroup>
|
|
<Reference Include="CefSharp.BrowserSubprocess.Core">
|
|
<HintPath>$(CefSharpBrowserProcessCore32)</HintPath>
|
|
<Private>true</Private>
|
|
</Reference>
|
|
</ItemGroup>
|
|
</Otherwise>
|
|
</Choose>
|
|
</Project> |