Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Automating creating NuGet package as part of build process

I have an automated build process that I'd like to extend so I can build the libraries I am distributing via NuGet. Currently, running nuget.exe to create the packages is a manual operation.

What is the best way to setup VS 2010 so that my NuGet package (*.nupkg) file is the end result of a "Release" build?

Keep in mind that I have other files (content and tools) for some of the packages. And, in most cases, I have multiple projects merged into a single NuGet package to support .NET 4, Silveright and Phone 7.

(I should clarify that the existing "automated" process is a simple batch-file runner that builds a solution using the command line.)

UPDATE

I want to refresh this discussion because the issue has not been resolved. While the link @pravin supplied is helpful, it doesn't address the fact that I have multiple projects in a single package as well as other contents like PowerShell scripts, configuration and source code transformations, etc.

The best example I can use is an assembly that has both a .NET 4 and Silverlight 5 version. These are distributed in the same package. I cannot use a post-build event to create the package because the package is dependent upon TWO projects.

like image 601
SonOfPirate Avatar asked Feb 07 '12 17:02

SonOfPirate


People also ask

How NuGet packages are created?

You can configure Visual Studio to automatically generate the NuGet package when you build the project. In Solution Explorer, right-click the project and choose Properties. In the Package tab, select Generate NuGet package on build.


1 Answers

One thing that might work well is to create a custom MSBuild .proj file. You could define a couple targets in the custom script, the first to execute the compile on your solution. A second target to execute following compilation would use the EXEC MSBuild task to invoke the nuget.exe command line utility. Then, you update your batch file-runner to execute the msbuild executable supplying your custom project file as an argument. You might already be using MSBuild in your batch script, which in that case it would simply be a matter of argument swapping. You could include your custom proj file in the solution items of your solution. If you did that you could easily add an external tool reference in Visual Studio to quickly test out your custom script to make sure it was building and producing the package like you hope.

Sample MSBuild

You can use this as a starting place:

<Project DefaultTargets="Compile" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" >     <PropertyGroup>       <SolutionFile></SolutionFile>       <NugetExecutable>C:\PathToNuget\nuget.exe</NugetExecutable>       <NuspecFile></NuspecFile>     </PropertyGroup>      <Target Name = "Compile">         <MSBuild Projects="$(SolutionFile)" Properties="Configuration=Release" />     </Target>      <Target Name = "Package">     <!-- You could use the MSBuild Copy task here to move the compiled code into            a structure that fits your desired package format -->       <Exec Command="&quot;$(NugetExecutable)&quot; pack $(NuspecFile)" />     </Target> </Project> 

You'd then call this like:

"C:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe" Build.proj /p:SolutionFile=PathToSolution\App.sln;NuspecFile=foo.nuspec 
like image 175
Josh Rack Avatar answered Oct 12 '22 12:10

Josh Rack