I have a dnx based library project.
When it's built, it produces a NuGet package - that't nice.
The NuGet package contains the source code.. That's not so nice for me..
How do I prevent the source code from being included in the NuGet package? I have tried adding this to my project.json file but it doesn't appear to have any effect:
{
"publishExclude": [ "**/**.cs" ],
"packExclude": ["**/**.cs"]
}