fix assembly version conflict error in mod build package
This commit is contained in:
parent
4de18b516f
commit
eb125f1994
|
@ -414,6 +414,7 @@ when you compile it.
|
|||
## Release notes
|
||||
## Upcoming release
|
||||
* Added detection for Xbox app game folders.
|
||||
* Fixed "_conflicts between different versions of Microsoft.Win32.Registry_" warnings in recent SMAPI versions.
|
||||
* Internal refactoring.
|
||||
|
||||
## 4.0.0
|
||||
|
|
|
@ -25,6 +25,12 @@
|
|||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="16.10" />
|
||||
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
|
||||
|
||||
<!--
|
||||
This is imported through Microsoft.Build.Utilities.Core. When installed by a mod, NuGet
|
||||
otherwise imports version 4.3.0 instead of 5.0.0, which conflicts with SMAPI's version.
|
||||
-->
|
||||
<PackageReference Include="Microsoft.Win32.Registry" Version="5.0.0" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
|
Loading…
Reference in New Issue