diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2022-04-07 01:51:50 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2022-04-07 01:51:50 -0400 |
commit | 6b05296e71c32abd158f354eeeaf1e135e72e6e2 (patch) | |
tree | 417ee622b7cf56bc98f6a55ddb7ab63f414c25e4 /docs/technical | |
parent | e58e8a22836081ec4baffa5a9b4b093a329f3d88 (diff) | |
download | SMAPI-6b05296e71c32abd158f354eeeaf1e135e72e6e2.tar.gz SMAPI-6b05296e71c32abd158f354eeeaf1e135e72e6e2.tar.bz2 SMAPI-6b05296e71c32abd158f354eeeaf1e135e72e6e2.zip |
migrate mod build package to .NET 5 to allow full nullable annotations (#837)
Diffstat (limited to 'docs/technical')
-rw-r--r-- | docs/technical/mod-package.md | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/technical/mod-package.md b/docs/technical/mod-package.md index 4c31f69b..6123b28f 100644 --- a/docs/technical/mod-package.md +++ b/docs/technical/mod-package.md @@ -413,9 +413,19 @@ when you compile it. ## Release notes ## Upcoming release +* Migrated from .NET Standard 2.0 to .NET 5.0. * Added detection for Xbox app game folders. * Internal refactoring. +**Troubleshooting:** +Due to the framework change, you might see build errors like _task failed unexpectedly_ that mentions `System.Runtime Version=5.0.0`. If so: + +1. Make sure you have Visual Studio 2022 or later. +2. Exit all instances of Visual Studio. +3. Delete the hidden `.vs` folder in your solution folder. +4. Delete the `bin` and `obj` folders in each project folder. +5. Reopen the solution and rebuild, and now it should work fine. + ## 4.0.0 Released 30 November 2021. |