Skip to content

Commit

Permalink
Issue #39: Set correct lib output path in nuspec.
Browse files Browse the repository at this point in the history
Move output assemblies up one level to the 'lib' folder from 'lib/net20'.
This indicates to NuGet that the assemblies can be used in alternate
project types, such as Silverlight.
  • Loading branch information
John Gozde committed Dec 17, 2011
1 parent f9790ac commit 7d366c7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions nuget/clrzmq-x64.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
<tags>zeromq zmq 0mq messaging transport distributed</tags>
</metadata>
<files>
<file src="publish\x64\clrzmq*.dll" target="lib\net20" />
<file src="publish\x64\*.pdb" target="lib\net20" />
<file src="publish\x64\*.xml" target="lib\net20" />
<file src="publish\x64\clrzmq*.dll" target="lib" />
<file src="publish\x64\*.pdb" target="lib" />
<file src="publish\x64\*.xml" target="lib" />
<file src="lib\x64\*.dll" target="content" />
<file src="nuget\install.ps1" target="tools" />
<file src="LICENSE"/>
Expand Down
6 changes: 3 additions & 3 deletions nuget/clrzmq.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
<tags>zeromq zmq 0mq messaging transport distributed</tags>
</metadata>
<files>
<file src="publish\x86\clrzmq*.dll" target="lib\net20" />
<file src="publish\x86\*.pdb" target="lib\net20" />
<file src="publish\x86\*.xml" target="lib\net20" />
<file src="publish\x86\clrzmq*.dll" target="lib" />
<file src="publish\x86\*.pdb" target="lib" />
<file src="publish\x86\*.xml" target="lib" />
<file src="lib\x86\*.dll" target="content" />
<file src="nuget\install.ps1" target="tools" />
<file src="LICENSE"/>
Expand Down

0 comments on commit 7d366c7

Please sign in to comment.