zoukankan      html  css  js  c++  java
  • Enable NuGet package restore in Visual Studio

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

    http://blogs.4ward.it/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!

    markp

    Marco Piazzi is a Microsoft Certified Technology Specialist and an ISTQB Certified Tester Advanced Level, focused on Application Lifecycle Management & Testing with Visual Studio, Team Foundation Server and Test Manager.

    More Posts – Website

    Follow Me:
    TwitterFacebookLinkedInYouTube

    0


    Leave a Reply

  • 相关阅读:
    Python M3 面向对象
    Python 基础
    Python 基础
    Python 基础
    Python 作业
    Python 基础
    Python 基础
    【机器学习】周志华 读书笔记 第三章 线性模型
    【机器学习】周志华 读书笔记 第二章 模型评估与选择
    【机器学习】周志华 读书笔记 第一章 绪论
  • 原文地址:https://www.cnblogs.com/Leo_wl/p/3056784.html
Copyright © 2011-2022 走看看