在 Visual Studio 2017 中将 .NET Core 2.2 应用程序发布为依赖于框架的可执行文件 (FDE)
Posted
技术标签:
【中文标题】在 Visual Studio 2017 中将 .NET Core 2.2 应用程序发布为依赖于框架的可执行文件 (FDE)【英文标题】:Publish .NET Core 2.2 app in Visual Studio 2017 as framework-dependent executable (FDE) 【发布时间】:2019-02-25 15:13:52 【问题描述】:根据 Microsoft 的说法,从 .NET Core 2.2 开始,我可以将应用程序发布为“依赖于框架的可执行文件”(FDE)。它可以从命令行using the dotnet
command:
dotnet publish -c Release -r win-x64 --self-contained false
但是,我想使用 Visual Studio (2017) 中的 GUI 工具来完成,我可以在其中配置和存储配置文件:
我该怎么做?
【问题讨论】:
【参考方案1】:你必须设置一个Target Runtime
。用户界面有点混乱,没有使用短语framework-dependent executable
。
【讨论】:
以上是关于在 Visual Studio 2017 中将 .NET Core 2.2 应用程序发布为依赖于框架的可执行文件 (FDE)的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Visual Studio for Mac 中将参数传递给 Main() C#
如何在 Visual Studio 2019 中将 WCF 服务添加到 .NET Core 项目?
如何在 Visual Studio 中将 Dll 添加到 MFC 应用程序