Excluding auto-generated Visual Studio files from build.

This commit is contained in:
Ryan Kurtz 2019-03-29 11:21:39 -04:00
parent 097cf2e758
commit 95ee575096
2 changed files with 4 additions and 0 deletions

View File

@ -196,6 +196,8 @@ task assembleCommon (type: Copy) {
exclude "**/.project"
exclude "**/.classpath"
exclude "**/delete.me"
exclude "**/.vs/**"
exclude "**/*.vcxproj.user"
/////////////////
// GHIDRA PROJECTS

View File

@ -122,6 +122,8 @@ def Map<String, List<String>> getIpForModule(Project p) {
exclude "**/*.sla"
exclude "**/.gradle/**"
exclude "**/.settings/**"
exclude "**/.vs/**"
exclude "**/*.vcxproj.user"
}
tree.each { file ->
String ip = getIp(p.projectDir, file)