mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Fix broken browser in .NET Core
This commit is contained in:
parent
06561bbdd2
commit
e46afdadb6
@ -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" />
|
||||
|
Loading…
Reference in New Issue
Block a user