Convert .Net Core to .Net Framework

后端 未结 8 1419
小蘑菇
小蘑菇 2020-12-08 06:18

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

8条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-08 06:46

    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.

提交回复
热议问题