如何使用Visual Studio 2017(IDE)将.net core应用程序打包为'a framework-dependent deployment (FDD)'或'a self-contained deployment (SCD)'?我知道如何通过dotnet CLI /命​​令行来完成此操作。

最佳答案

Visual Studio and Self Containing Deployments

在您的.csproj中设置<RuntimeIdentifier>XXX</RuntimeIdentifier>属性使其成为独立的。不设置<RuntimeIdentifier>使其依赖于框架。

08-27 01:07