Is there some way to make a NuGet package using code compiled in release mode? Or is there some reason I should only publish (make available locally, in this case) packages compiled in debug mode?

Every time I call nuget pack from my project directory, where I have the nuspec file below, on code I have only compiled in release mode, it complains about not finding the DLL in the debug folder ("\bin\Debug\SomeProject.dll"). If I compile it in debug mode, those files are there and it packs them up as it should.

<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
    <metadata>
        <id>$id$</id>
        <version>$version$</version>
        <authors>$author$</authors>
        <owners>$author$</owners>
        <iconUrl>http://somewhere/project.png</iconUrl>
        <requireLicenseAcceptance>false</requireLicenseAcceptance>
        <description>$description$</description>
    </metadata>
</package>
link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

You can solve it like this: NuGet.exe pack Foo.csproj -Prop Configuration=Release http://nuget.codeplex.com/discussions/262324

link|improve this answer
For anyone who wants the short story from the link (good read, though), there was a change from v1.3 to v1.4 that goes from a default of Release to a default pulled from a project setting that can only be modified in the project file directly (no VS GUI option). To avoid the command-line property tweak for all future nuget pack calls, edit the project file XML in your favorite text editor. – patridge Jun 30 '11 at 22:07
Is there a way to package up both a Release and Debug version in one package and then have my project auto-use the Debug one vs. the Release one depending on if I'm in Debug vs. Release Solution configuration? – JD. Jul 11 '11 at 1:51
@JD: As far as I know it is not possible but I was thinking contributing that to nuget. Can you explain in which scenario would you need this feature? When will it be helpful? – Giorgi Jul 11 '11 at 7:09
1  
If you simply want debug symbols for your package, you could either include your PDB files in the *.nuspec (e.g., <file src="bin\Release\*.pdb" target="lib\net40\" />) or publish a symbols package alongside your DLL package. – patridge Jul 14 '11 at 18:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.