How To Fix the components in the designer
If you are experiencing issues while using the components in the designer when upgrading from .NET Framework to .NET, you might need to replace <TargetFramework>net[##Current-Version##]-windows</TargetFramework>
with the following in your project configuration files.
<TargetFrameworks>net481;net[##Current-Version##]-windows</TargetFrameworks>
More discussion about this topic can be found here.
To learn more about the TargetFrameworks
attribute, click here.
N.B: This action will produce binaries for multiple frameworks.