我正在努力使用本地 TFS 为 DocFX 项目设置持续部署过程。
此处描述了该过程,但是示例演练适用于 VSTS,并且我有本地 TFS(2013 版)。基本思想是在每次签入时构建和部署文档网站。该流程使用的DocFx Build Tasks扩展似乎支持本地 TFS ......我只是看不出如何让它工作!
我有一个包含单个 C# 项目的 VS 解决方案,该项目具有对 docfx.console 版本 2.38.1(最新)的 Nuget 引用。当我在本地 PC 上构建 VS 时,_sites 文件夹会正确填充 HTML。但是,在构建服务器上构建时,构建失败并显示“警告 MSB4078:MSBuild 不支持项目文件“DocFx.csproj”,无法构建。
然后我发现了DocFx Build Tasks扩展,它看起来可以解决我的问题。
我已经下载了 .VSIX,但不知道在哪里以及如何安装它。
如果我直接在构建服务器(或我的本地 PC)上运行它,则会出现错误“此扩展无法安装在任何当前安装的产品上”。出现。这是来自安装日志:
31/08/2018 14:31:54 - Supported Products :
31/08/2018 14:31:54 - Microsoft.VisualStudio.Services
31/08/2018 14:31:54 - Version :
31/08/2018 14:31:54 -
31/08/2018 14:31:54 - References :
31/08/2018 14:31:54 - Signature Details...
31/08/2018 14:31:54 - Extension is not signed.
31/08/2018 14:31:54 -
31/08/2018 14:31:54 - Searching for applicable products...
31/08/2018 14:31:54 - Found installed product - Microsoft Visual Studio 2012 Shell (Integrated)
31/08/2018 14:31:54 - Found installed product - Global Location
31/08/2018 14:31:54 - Found installed product - ssms
31/08/2018 14:31:54 - Found installed product - Visual Studio Community 2017
31/08/2018 14:31:54 - Found installed product - Visual Studio Build Tools 2017 (2)
31/08/2018 14:31:54 - VSIXInstaller.NoApplicableSKUsException: This extension is not installable on any currently installed products.
我在 TFS 2013 门户中似乎也没有上传扩展的选项(尽管后来的版本似乎有这个)。
我需要做什么?