Fix broken browser in .NET Core

This commit is contained in:
Timothy Baldridge 2020-01-27 21:36:12 -07:00
parent 06561bbdd2
commit e46afdadb6

View File

@ -7,7 +7,7 @@
<Platforms>AnyCPU;x64</Platforms>
<AssemblyVersion>0.9.17.0</AssemblyVersion>
<FileVersion>0.9.17.0</FileVersion>
<Copyright>Copyright © 2019</Copyright>
<Copyright>Copyright © 2019-2020</Copyright>
<Description>An automated ModList installer</Description>
<StartupObject></StartupObject>
</PropertyGroup>
@ -20,6 +20,21 @@
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<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>
<ItemGroup>
<None Remove="Readme.md" />
<None Remove="Resources\MO2Button.png" />