tfs 中nugget程序包引用问题解决方案

转自http://blogs.4ward.it/enable-nuget-package-restore-in-visual-studio-and-tfs-2012-rc-to-building-windows-8-metro-apps/

 

Enable NuGet package restore in Visual Studio and TFS 2012 RC to building Windows 8 Metro Apps

In the previous post (only in Italian for now, sorry) we created a new build machine with Windows 8 RP and TFS Build Agent 2012 RC to building new Windows 8 Metro Applications.

Having a build process for each solution is very useful, but we can have some errors like these:

  • C:\Builds\[…]\.nuget\nuget.targets(76,9): error : Package restore is disabled by default. To give consent, open the Visual Studio Options dialog, click on Package Manager node and check ‘Allow NuGet to download missing packages during build.’ You can also give consent by setting the environment variable ‘EnableNuGetPackageRestore’ to ‘true’.
  • C:\Builds\[…]\.nuget\nuget.targets(76,9): error MSB3073: The command “”C:\Builds\[…]\.nuget\nuget.exe” install “C:\Builds\[…]\packages.config” -source “” -o “C:\Builds\[…]\packages”" exited with code 1.

We use NuGet in Visual Studio 2012 RC with TFS 2012 RC: we want to enable missing NuGet packages restoring and we would prefer to not check-in packages into source control. So, in Visual Studio Solution Explorer, right click on solution and click on “Enable NuGet Package Restore”:

Solution: Enable NuGet Package Restore

Do you want to configure this solution to download and restore missing NuGet packages during build? Yes, of course:

NuGet Package Manager: Enable NuGet Package Restore

A .nuget folder is added to the root of the solution.

NuGet Package Manager: finished configuring this solution to restore NuGet packages on build

In Visual Studio, Check In the pending changes and go to Tools –> Options –> Package Manager: “Allow NuGet to download missing packages during build” is flagged:

Package Manager: Package Restore: Allow Nuget to download missing packages during build

All right! In the Solution Explorer check if there is the “.nuget” folder in your Solution. In the “packages” folder on Source Control, delete all the packages you don’t want they exist in source control, but keep the “repositories.config” file:

NuGet folders and files in Visual Studio 2012 RC

NOTE: When you delete something from Source Control in Visual Studio, you are doing a logicaldelete. You can phisically delete version-controlled files and folders from Team Foundation version control by using the “tf destroy” command.

Now, right click on the Solution –> Manage NuGet Packages for Solution…

Solution: Manage NuGet Packages for Solution

If some NuGet packages are missing from you solution, click on Restore button:

Solution - Manage NuGet Packages: Restore

NuGet downloads missing packages:

Solution - Manage NuGet Packages: Downloading missing packages

And new packages are restored:

Solution - Manage NuGet Packages: New packages restored by NuGet

Let we see the Source Control: we have a .nuget folder with the NuGet application files (NuGet.exe, NuGet.targets and NuGet.Config):

.nuget folder: NuGet.Config, NuGet.exe, NuGet.targets

In the “packages” folder we have a “repositories.config” file:

packages folder: repositories.config

NuGet uses this file (repositories.config) to locate the packages.config files of each project in the solution:

<?xml version="1.0" encoding="utf-8"?>
<repositories>
 <repository path="..\ProjectName1\packages.config" />
 <repository path="..\ProjectName2\packages.config" />
 […]
</repositories>

Each project with at least one NuGet package has the packages.config file:

project folder: packages.config

Each packages.config file contains the packages list with the id and other properties:

<?xml version="1.0" encoding="utf-8"?>
<packages>
 <package id="package1"version="1.0.0" />
 <package id="package2" version="1.0.1" /> 
 […]
</packages>

Lastly, on the Windows 8 build machine add the environment variable to Enable NuGet Package Restore:

  • Variable name: EnableNuGetPackageRestore
  • Variable value: true

Environment Variable: EnableNuGetPackageRestore

IMPORTANT: Use System Variable! Otherwise, you can add a User Variable if you are logged with the TFS Build Service account (for example: domain\tfsbuild).

Restart the build machine and queue the build!

转载于:https://www.cnblogs.com/353373440qq/p/3599298.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值