dnu publish produces the command files indicated in project.json.
Is there a way to instruct the framework to not include commands that we setup in project.json in the bin > output folder? ... perhaps using one of the "exclude" options in the sources section of project.json?
Attempted using bundleExclude and publishExclude with "*.cmd" and neither works.
I'd like to keep these command files out of that folder because I don't want the commands published (via Web Deploy or manually moved) to the VM where the app will be hosted.
dnu publishproduces the command files indicated inproject.json.Is there a way to instruct the framework to not include commands that we setup in
project.jsonin thebin > outputfolder? ... perhaps using one of the "exclude" options in thesourcessection ofproject.json?Attempted using
bundleExcludeandpublishExcludewith"*.cmd"and neither works.I'd like to keep these command files out of that folder because I don't want the commands published (via Web Deploy or manually moved) to the VM where the app will be hosted.