在 VSTS 中构建项目时,我们首先在 NUget 还原步骤中下载 nuget 包。
nuget.config 的路径指向解决方案文件夹 .nuget 中的一个文件。在这个文件中有一个存储库的路径。
运行构建时,恢复步骤工作正常,所有包都恢复到该目录中。
2017-07-12T14:11:15.7270814Z Adding package '***' to folder 'd:\a\3\s\microservices\MyPackages12'
但是在构建过程中,由于位置错误,无法找到包。
2017-07-12T14:11:27.7978408Z Considered "..\..\MyPackages\
这似乎只适用于来自 vsts 的包提要的包。
在哪里或如何更改构建步骤中包的位置?
谢谢..
编辑
Nuget.config
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<config>
<add key="repositoryPath" value="..\MyPackages" />
</config>
<packageSources>
<add key="nuget.org" value="https://www.nuget.org/api/v2/" />
<add key="MyWebAPI" value="https://MyWebAPI.pkgs.visualstudio.com/_packaging/MyWebAPI/nuget/v3/index.json" protocolVersion="3" />
</packageSources>
</configuration>
编辑 2 我已经让它工作了,但不是我喜欢的。
第一个当前的解决方案。nuget 安装程序的第 2 版
当前的 nuget.config。
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<config>
<add key="repositoryPath" value="..\s\WebSiteCiCd\Packages" />
</config>
<packageSources>
<!-- remove any machine-wide sources with <clear/> -->
<clear />
<!-- add a Team Services feed -->
<add key="MyGreatFeed" value="https://CICD.pkgs.visualstudio.com/_packaging/CICDWebAPI/nuget/v3/index.json" />
<!-- also get packages from the NuGet Gallery -->
<add key="nuget.org" value="https://www.nuget.org/api/v2/" />
</packageSources>
<activePackageSource>
<add key="All" value="(Aggregate source)" />
</activePackageSource>
</configuration>
我不喜欢的是
<add key="repositoryPath" value="..\s\WebSiteCiCd\Packages" />
我想要一个没有特定项目名称的集中式 nuget.config。
我认为的问题是因为构建任务不会查看 nuget.config 设置,而是采用 de proj 文件中的设置..
这是在失败的构建中..在这种情况下我使用
<add key="repositoryPath" value="..\MyPackages" />
这导致恢复步骤
2017-07-14T06:35:40.5913207Z Restoring NuGet package Microsoft.AspNet.WebPages.3.2.3.
2017-07-14T06:35:40.5923209Z GET https://www.nuget.org/api/v2/Packages(Id='Microsoft.AspNet.WebPages',Version='3.2.3')
2017-07-14T06:35:40.6643208Z OK https://www.nuget.org/api/v2/Packages(Id='Microsoft.AspNet.WebApi.WebHost',Version='5.2.3') 113ms
2017-07-14T06:35:40.6683214Z GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.WebApi.WebHost/5.2.3
2017-07-14T06:35:40.6798131Z Completed installation of Microsoft.AspNet.Razor 3.2.3
2017-07-14T06:35:40.6818132Z Adding package 'Microsoft.AspNet.Razor.3.2.3' to folder 'd:\a\1\MyPackages'
2017-07-14T06:35:40.6828123Z Completed installation of Microsoft.AspNet.Mvc 5.2.3
但在构建步骤中它使用不同的位置
2017-07-14T06:35:49.5938928Z d:\a\1\s\WebSiteCiCd\WebSiteCiCd\WebSiteCiCd.csproj(297,5): error : This project references NuGet package(s) that are missing on this computer.
Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105.
The missing file is ..\packages\Microsoft.Net.Compilers.1.3.2\build\Microsoft.Net.Compilers.props.
它使用 ..\packages\ 参考路径
希望这有帮助..