Publish .NET Core 2.2 app in Visual Studio 2017 as framework-dependent executable (FDE)
根据 Microsoft 的说法,从 .NET Core 2.2 开始,我可以将应用程序发布为”与框架相关的可执行文件”(FDE)。它使用
1
|
dotnet publish -c Release -r win-x64 –self-contained false
|
但是,我想使用 Visual Studio (2017) 中的 GUI 工具来完成,我可以在其中配置和存储配置文件:
我该怎么做?
你必须设置一个
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/269795.html