I have a .Net Core project web project, and for various reasons want to convert it to a .Net Framework project.
Is there an easy way to do this, or do I have to star
My .net standard project is relatively simple with few Nuget packages. I just changed
netstandard2.0
TO
**net461** under PropertyGroup section of .csproj file and this did the job for me.. Thanks to Brandon Barkley for your answer in the comments.
**net461**