Considering a project in Visual Studio with the following structure
Project
---Folder A
----- CS Files
---Folder B
----- CS Files
---Folder C
----- CS Files
All works great but I want to pack only content from Folder A and C, ignoring totally all .cs files from Folder B.
is that possible?
I tried the <file>
and <contentFile>
arguments in a nuspec file but that doesn't quite work.
<file>
only added them as a extra file in the package and <contentFile>
had no effect