I am using the VSTS vNext build system to create a C # solution. Below you can see the settings for NuGet Packager. The nuspec file path is set to reference .csproj files.

However, this includes all .csproj files; I need to exclude test projects. Ignoring "Core.Test.csproj", but still packing "Core.csproj".
I tried ' * .csproj; - :! * test.csproj 'and other combinations, but no luck realizing this! Does anyone know how pattern matching for vNext assembly works?
source
share