我的dotnet核心项目有问题。我有一个执行“ dotnet发布”的TFS构建,并将应用程序部署到IIS。
发布命令如下:
dotnet publish -o $(build.stagingDirectory) -c Release --self-contained --runtime win81-x64
我的代码没有更改,但是现在在TFS上运行构建时出现以下错误:
NETSDK1067: Self-contained applications are required to use the application host. Either set SelfContained to false or set UseAppHost to true.
上周我们将构建服务器更新为最新的.NET Core SDK,所以我想它可能与此有关。
发生了什么变化,我该怎么做才能再次进行构建?