0

I am trying to get rid of Bin Folder in NuGet Package but preserve the structure.

part of my nuspec file:

<file src = "**\*.dll"/>

My Current package produces:
project1\bin\*.dll
project2\bin\*.dll

Desired Result:
project1\*.dll
project2\*.dll

Thank you.

Borik
  • 438
  • 3
  • 9

1 Answers1

0

Try: <file src="bin\*.dll" target=".\" />

Maverick
  • 791
  • 9
  • 23