I have a solution containing more .Net Framework projects. I need to move the current application libraries to .Net Standard in order to be used by other projects.
I know I can do this by removing the current projects and recreating them with .Net Standard, then adding each class and dependency back to them, until I finish. This approach is acceptable in my case as the application is not huge, but I wonder if there is an easier way than this.
I was looking for something like the way that Target framework is usually changed for projects:
But there is no entry for .Net Standard here.
You will need to manually edit csproj file and edit TargetFrameworks
<PropertyGroup>
<TargetFrameworks>netstandard1.4;net40;net45</TargetFrameworks>
</PropertyGroup>
But personally in cases like that I am creating empty project then do replacing of old csproj file.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With