作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在本地使用 TFS 2017 来构建我们的代码。我使用了带有以下参数的 msbuild 任务。
/p:DeployOnBuild=true /p:AllowedReferenceRelatedFileExtensions=none /p:PublishProfile="$(Build.SourcesDirectory)\Source\PublishSettings\xxx.azurewebsites.net.publishsettings" /p:VisualStudioVersion=14.0 /p:Configuration=Release
日志:
2017-12-27T07:43:15.6823390Z Publish Pipeline Deploy phase Stage PipelineCopyAllFilesToOneFolderForMsdeploy
2017-12-27T07:43:15.6823390Z Package:
2017-12-27T07:43:15.6823390Z Invoking Web Deploy to generate the package with the following settings:
2017-12-27T07:43:15.6979640Z $(LocalIisVersion) is 0
2017-12-27T07:43:15.6979640Z $(DestinationIisVersion) is 0
2017-12-27T07:43:15.6979640Z $(UseIis) is True
2017-12-27T07:43:15.6979640Z $(IisUrl) is http://localhost:7372/
2017-12-27T07:43:15.6979640Z $(IncludeIisSettings) is False
2017-12-27T07:43:15.6979640Z $(_DeploymentUseIis) is False
2017-12-27T07:43:15.6979640Z $(DestinationUseIis) is False
2017-12-27T07:43:15.6979640Z GetMSDeployInstalledVersionPath:
2017-12-27T07:43:15.6979640Z $(_DefaultMSDeployMaxVersion) is 3
2017-12-27T07:43:15.6979640Z $(_MSDeployVersionsToTry) is 9.0
2017-12-27T07:43:15.6979640Z $(MSDeployPath) is C:\Program Files (x86)\IIS\Microsoft Web Deploy V3\
2017-12-27T07:43:15.6979640Z GenerateMsdeployManifestFiles:
2017-12-27T07:43:15.6979640Z Generate source manifest file for Web Deploy package/publish ...
我收到以下错误。
The element <publishData> is unrecognized, or not supported in this context
我测试了从 azure 下载的发布设置,它与 Visual Studio 部署完美配合。我的 Web api 项目是 .Net 4.6.1 。
注意:只有这个项目没有正确构建,.Net 4.5.1 的所有其他项目都可以构建,在我们的本地 tfs 代理中完全正常。
最佳答案
publishsettings文件用于生成发布配置文件(右键Project=>Publish=>Import),没有<publishData>
发布配置文件中的部分,它位于publishsettings文件中。
因此,通过 VS 生成每个发布设置文件的发布配置文件,并使用它来发布 Web 应用程序。
关于azure - 元素 <publishData> 无法识别,或在此上下文中不受支持,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46337582/
我在本地使用 TFS 2017 来构建我们的代码。我使用了带有以下参数的 msbuild 任务。 /p:DeployOnBuild=true /p:AllowedReferenceRelatedFil
我是一名优秀的程序员,十分优秀!