在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的软件包提要的软件包,这似乎只是失败了。
我在哪里或如何更改buildstep中包的位置?
感谢..
修改
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 \引用路径
希望这会有所帮助..答案 0 :(得分:1)
该任务使用临时Nuget配置文件(例如-ConfigFile xxx_work \ 17 \ Nuget \ tempNuGet_1951.config),然后repositoryPath基于此临时文件。
因此,对于.. \ s \ WebSiteCiCd \ Packages路径,软件包将恢复到xxx_work \ 17 \ s \ WebSiteCiCd \ Packages文件夹。 (.. \ MyPackages =&gt; xxx_work \ 17 \ MyPackages)。
更好的方法是你可以删除repositoryPath的设置(删除配置部分),只需使用本地和构建服务器的默认设置,然后是结构是相同的。
答案 1 :(得分:0)
更新项目文件中的引用。看起来有人从他们机器上存在的非标准位置引用了一个包。
解决此类问题的最简单方法是删除本地软件包的所有(或者只是从源代码管理中重新同步),然后让恢复在本地运行。这很快就会引发参考问题。
答案 2 :(得分:0)
解决方案感谢@ starain-MSFT:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="nuget.org" value="https://www.nuget.org/api/v2/" />
<add key="My packages" value="https://mypackages.pkgs.visualstudio.com/_packaging/MyWebAPI/nuget/v3/index.json" />
</packageSources>
</configuration>
在csproj文件中设置包的提示路径:例如
<Reference Include="Antlr3.Runtime, Version=3.5.0.2, Culture=neutral, PublicKeyToken=eb42632606e9261f, processorArchitecture=MSIL">
<HintPath>..\packages\Antlr.3.5.0.2\lib\Antlr3.Runtime.dll</HintPath>
仍然认为如果构建可以使用nuget.config文件来设置包的选项会很方便