Nuspec includes files in 'Debug' folder in lib\Net40
Closed this issue · 3 comments
Turtlator commented
The '**' recursive search for file sources in the nuspec includes the directories for files, resulting in the nupkg containing:
- lib\net40\Debug\SignalR.RabbitMQ.dll
- lib\net40\Debug\SignalR.RabbitMQ.pdb
instead of:
- lib\net40\SignalR.RabbitMQ.dll
- lib\net40\SignalR.RabbitMQ.pdb
This is causing a few problems for us because we're committing our package folders to source control but any debug/release folders are ignored meaning the dll's aren't actually committed.
mdevilliers commented
Thanks for the pull request - I've merged it in.
If I do a new package for Nuget would you be able to test it?
Thanks,
Mark
Turtlator commented
Sure thing. Cheers for the quick merge.
Turtlator commented
Just updated from nuget and it all looks good now.
Thanks for that.