.NET Framework 升级到.NET5有什么推荐的升级方式吗

新手上路,请多包涵

最好是平滑一点,能兼容日常的开发工作

阅读 3.3k
2 个回答

WinForm/WPF 项目还是 ASP.NET 项目?

前者基本没有升级的必要。

后者的话 VS 自带升级工具,已经算是尽可能平滑了,但肯定需要改代码。

官方文档:https://docs.microsoft.com/zh...

dotnet/try-convert
一款帮助用户将 .net framework 项目转为.net core 的工具。

项目地址: https://github.com/dotnet/try-convert

安装方法:
dotnet tool install -g try-convert

使用方法:

cd path_to_project
try-convert

我司大量老旧 WPF 项目已经用此工具迁移到 .net standard 和 .net 5 了。