We suggest doing migration in a separate branch or, if you're not using version control, creating a copy of your project so you have a clean state to go back to if necessary.
The migration process includes two steps: preparing your project for porting to .NET and porting itself.
For additional information and assistance, we recommend checking out this article on the dotnet blog as well as the accompanying video tutorial.
Review the following resources that describe breaking changes between Windows Forms on .NET Framework and .NET:
- The Breaking changes in Windows Forms (.NET Framework to .NET Core) describes breaking changes you need to be aware of when migrating your applications from .NET Framework
- The Breaking changes in Windows Forms (.NET Core to .NET) describes breaking changes you need to be aware of when migrating your applications from .NET Core 3.x versions to .NET 5.0 onwards.
-
Run .NET Portability Analyzer first to determine if there are any APIs your application depends on that are missing in .NET. If there are, you have a few options.
- Remove not supported APIs or replace them with those, that are included in .NET
- Separate your code into different projects: the one that contains only .NET supported APIs and another with APIs not supported in .NET. Migrate only the first project.
-
Start from a working solution. Ensure the solution opens, builds, and runs without any issues.
-
Replace
packages.config
withPackageReference
. If your project uses NuGet packages, you will need to add the same NuGet packages to the new .NET project. .NET projects support onlyPackageReference
for adding NuGet packages. To move your NuGet references frompackages.config
to your project file, right-click onpackages.config
-> Migrate packages.config to PackageReference....You can learn more about this migration in our docs.
-
Migrate to the SDK-style .csproj file. The new SDK-style
.csproj
format is leaner and easier to read. To be able to simply copy-paste your references from the old project to the new one, you first need to migrate your old project file to SDK-style so both project are in the same format. You can either do it by hand or use a third-party tool CsprojToVs2017.After using the tool you still might need to delete some reference by hand; for example:
<Reference Include="System.Data.DataSetExtensions" /> <Reference Include="Microsoft.CSharp" /> <Reference Include="System.Net.Http" />
After you've migrated to the new SDK-style format, ensure your project builds and runs successfully.
-
Configure assembly file generation. Most existing projects include an
AssemblyInfo.cs
file in the Properties folder. The new project style uses a different approach and generates the same assembly attributes as part of the build process. As a result, you might end up with twoAssemblyInfo.cs
files and your build will fail. There are two ways to resolve this problem. You can either:-
Disable
AssemblyInfo.cs
generation on build by setting the property:<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
-
Move the static values from
AssemblyInfo.cs
to properties in the new.csproj
file.
Build and run to make sure you did not introduce any issues while preparing your project. Now it is time to port it.
-
- Try porting your project using
try-convert
tool, which we built to help migrations.
NB: The tool may not work for all possible projects, in that case please read on.
-
Add .NET Windows Forms project. Add a new .NET 5.0 Windows Forms project to the solution.
-
Add
<ProjectReference>
. Copy the<ProjectReference>
elements from the.csproj
file of the original project to the new project's.csproj
file.
Note: The new project format does not use theName
andProjectGuid
elements, so you can safely delete those. -
Restore/Build. At this point, it's a good idea to restore/build to make sure all dependencies are properly configured.
-
Link files. Link all files from your existing .NET Framework WinForms project to the .NET 5.0 WinForms project by adding following to the
.csproj
file.<ItemGroup> <Compile Include="..\<Your .NET Framework Project Name>\**\*.cs" /> <EmbeddedResource Include="..\<Your .NET Framework Project Name>\**\*.resx" /> </ItemGroup>
-
Align default namespace and assembly name. Since you're linking to designer generated files (for example,
Resources.Designer.cs
) you generally want to make sure that the .NET version of your application uses the same namespace and the same assembly name. Copy the following settings from your .NET Framework project:<PropertyGroup> <RootNamespace><!-- (Your default namespace) --></RootNamespace> <AssemblyName><!-- (Your assembly name) --></AssemblyName> </PropertyGroup>
-
Run new project. Set your new .NET project as StartUp Project and run it. Make sure everything works.
-
Copy or leave linked. Now instead of linking the files, you can actually copy them from the old .NET Framework WinForms project to the new .NET 5.0 WinForms project. After that you can get rid of the old project.
If you wish to use types previously associated with the Charting control in the .NET Framework, you should add a package reference to the NuGet package of Data Visualization ported to .NET. For more information about Data Visualization and the Charting control in .NET, including a sample application demonstrating its use, see the winforms-datavisualization repository
Windows applications like Windows Forms and WPF often use APIs that aren't referenced by default in .NET. The reason is that .NET tries to reduce the risk that new applications accidentally depend on legacy technologies or on APIs that are Windows-only. However, when porting existing Windows applications, neither of these two aspects is a concern. To simplify your porting efforts, you can simply reference the Windows Compatibility Pack, which will give you access to many more APIs.
dotnet add package Microsoft.Windows.Compatibility
.NET has its own implementation of System.ServiceModel
with some
differences:
- It is available as a set of NuGet packages (also included in the Windows Compatibility Pack).
- There are unsupported features that you should review.
- The binding and endpoint address must be specified in the service client constructor. Otherwise, if you reuse the
ServiceReference
created by Visual Studio, you may get the following error:
System.PlatformNotSupportedException: 'Configuration files are not supported.'
You can search for additional types which you may need in porting your apps to .NET on APIs of DotNet. For example, when you search for the type System.AppDomain
, you will see that the type has been moved to System.Runtime.Extensions
namespace starting in .NET 2.0.