Exclude map.json files from copyToOutput and publishOptions

This commit is contained in:
Sergei Vorobev 2016-06-30 16:19:03 -07:00
parent b755212f5d
commit c1d1b52869
2 changed files with 16 additions and 2 deletions

View file

@ -15,6 +15,11 @@
"../Modules", "../Modules",
"powershell.exe", "powershell.exe",
"../../powershell.version" "../../powershell.version"
],
"exclude": [
"../Modules/Pester/.git",
"../Modules/map.json",
"Modules/map.json"
] ]
} }
}, },
@ -27,7 +32,9 @@
"../../powershell.version" "../../powershell.version"
], ],
"exclude": [ "exclude": [
"../Modules/Pester/.git" "../Modules/Pester/.git",
"../Modules/map.json",
"Modules/map.json"
] ]
}, },

View file

@ -14,6 +14,11 @@
"*.so", "*.so",
"*.dylib", "*.dylib",
"../../powershell.version" "../../powershell.version"
],
"exclude": [
"../Modules/Pester/.git",
"../Modules/map.json",
"Modules/map.json"
] ]
} }
}, },
@ -27,7 +32,9 @@
"../../powershell.version" "../../powershell.version"
], ],
"exclude": [ "exclude": [
"../Modules/Pester/.git" "../Modules/Pester/.git",
"../Modules/map.json",
"Modules/map.json"
] ]
}, },