Click here to Skip to main content
15,884,472 members
Articles / Programming Languages / C#

Share Nuget Packages Between Solutions: Part 2

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
6 Dec 2012CPOL 9.7K   13   5  
Share Nuget packages between solutions

Let's see how we can fix the problem explained here. According to the latest release notes, by now you should be able to change the packages folder by adding this setting in the Nuget.config file:

XML
<configuration>
  <config>
    <add key="repositoryPath" value="C:\myteam\teampackages"></add>
  </config>
  ... 
</configuration>

Unfortunately, I couldn't make this work, so I found a workaround. I want to make the Second.sln use the package folder of First.sln. So I have made the following changes to the NuGet.targets file.

XML
<PropertyGroup Condition=" '$(OS)' == 'Windows_NT'">
    <!-- Windows specific commands -->
    <NuGetToolsPath>$([System.IO.Path]::Combine($(SolutionDir), ".nuget"))</NuGetToolsPath>
    <PackagesConfig>$([System.IO.Path]::Combine($(ProjectDir), 
          "packages.config"))</PackagesConfig>
</PropertyGroup>

I have added the following row:

XML
<PackagesDir>$(SolutionDir)..\First\packages</PackagesDir>
XML
<RestoreCommand>$(NuGetCommand) install "$(PackagesConfig)" -source 
   "$(PackageSources)" $(RequireConsentSwitch) -solutionDir "$(SolutionDir)</RestoreCommand>

to:

C#
<RestoreCommand>$(NuGetCommand) install "$(PackagesConfig)" -source 
   "$(PackageSources)" -o "$(PackagesDir)" $(RequireConsentSwitch) 
   -solutionDir "$(SolutionDir)</RestoreCommand>

I have added -o "$(PackagesDir)" which should make the packages to be downloaded to the PackagesDir folder.

XML
<PackagesDir Condition="'$(PackagesDir)' 
  == ''">$(SolutionDir)..\First\packages</PackagesDir>

This will allow us to predefine the PackagesDir value in the .csproj.user files.

XML
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" 
         xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
    <PropertyGroup>
        <PackagesDir>C:\NugetConfig\packages</PackagesDir>
    </PropertyGroup>
</Project>

This will make the Nuget to get files in the C:\NugetConfig\packages folder.

  1. In this section:
  2. Change the arguments of the NewGetCommand from:
  3. To make the configuration more flexible, we can change the PackagesDir definition to:
  4. To test this, we can add the C:\ NugetConfig\First\Dummy\Dummy.csproj.user with the following content:

And the code can be found here.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Telerik
Bulgaria Bulgaria
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
-- There are no messages in this forum --