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

前端 未结 2 594
我在风中等你
我在风中等你 2020-12-05 11:45

After consuming .net standard projects in a .net framework(4.6) console application, the dependencies of the .net standard projects are not copied into the output directory.

2条回答
  •  情深已故
    2020-12-05 12:06

    Another answer is to publish the project:

    dotnet publish -o path/to/output/folder
    

提交回复
热议问题