Copy all dependencies from .Net Standard libraries to .Net Framework Console application

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-03 08:09:13

After going through an article by Scott Hanselman, below solution worked like a charm.

Add below line in the first "PropertyGroup" tag of the .net framework console application's ".csproj" file

<RestoreProjectStyle>PackageReference</RestoreProjectStyle>

There will not be any need to add again the .net standard projects' nuget dependencies in the console application.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!