VSTS NuGet Package Excludes Test Projects

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.

enter image description here

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?

+4
source share
1 answer

**\*.csproj;-:**\*test.csproj ( ). , , GitHub.

+8

All Articles