|
| 1 | +.vscode/** |
| 2 | +.vscode-test/** |
| 3 | +src/** |
| 4 | +.gitignore |
| 5 | +.vscodeignore |
| 6 | +.yarnrc |
| 7 | +vsc-extension-quickstart.md |
| 8 | +**/tsconfig.json |
| 9 | +**/eslint.config.mjs |
| 10 | +**/*.map |
| 11 | +**/*.ts |
| 12 | +**/.vscode-test.* |
| 13 | +.github/** |
| 14 | + |
| 15 | +# .NET build artifacts |
| 16 | +**/obj/** |
| 17 | +*.user |
| 18 | +*.suo |
| 19 | +*.cache |
| 20 | + |
| 21 | +# Exclude all bin folders by default |
| 22 | +**/bin/** |
| 23 | + |
| 24 | +# But include only the debug adapter runtime |
| 25 | +!XsltDebugger.DebugAdapter/bin/Debug/net8.0/** |
| 26 | + |
| 27 | +# Now exclude unwanted platforms from the included runtime |
| 28 | +# Exclude all IKVM runtimes first, then include only needed ones |
| 29 | +XsltDebugger.DebugAdapter/bin/Debug/net8.0/ikvm/** |
| 30 | +!XsltDebugger.DebugAdapter/bin/Debug/net8.0/ikvm/ |
| 31 | +!XsltDebugger.DebugAdapter/bin/Debug/net8.0/ikvm/win-x64/** |
| 32 | +!XsltDebugger.DebugAdapter/bin/Debug/net8.0/ikvm/osx-arm64/** |
| 33 | + |
| 34 | +# Exclude localized satellite assemblies (non-English) |
| 35 | +XsltDebugger.DebugAdapter/bin/Debug/net8.0/cs/** |
| 36 | +XsltDebugger.DebugAdapter/bin/Debug/net8.0/de/** |
| 37 | +XsltDebugger.DebugAdapter/bin/Debug/net8.0/es/** |
| 38 | +XsltDebugger.DebugAdapter/bin/Debug/net8.0/fr/** |
| 39 | +XsltDebugger.DebugAdapter/bin/Debug/net8.0/it/** |
| 40 | +XsltDebugger.DebugAdapter/bin/Debug/net8.0/ja/** |
| 41 | +XsltDebugger.DebugAdapter/bin/Debug/net8.0/ko/** |
| 42 | +XsltDebugger.DebugAdapter/bin/Debug/net8.0/pl/** |
| 43 | +XsltDebugger.DebugAdapter/bin/Debug/net8.0/pt-BR/** |
| 44 | +XsltDebugger.DebugAdapter/bin/Debug/net8.0/ru/** |
| 45 | +XsltDebugger.DebugAdapter/bin/Debug/net8.0/tr/** |
| 46 | +XsltDebugger.DebugAdapter/bin/Debug/net8.0/zh-Hans/** |
| 47 | +XsltDebugger.DebugAdapter/bin/Debug/net8.0/zh-Hant/** |
| 48 | + |
| 49 | +# Exclude all runtimes first, then include only needed ones |
| 50 | +XsltDebugger.DebugAdapter/bin/Debug/net8.0/runtimes/** |
| 51 | +!XsltDebugger.DebugAdapter/bin/Debug/net8.0/runtimes/ |
| 52 | +!XsltDebugger.DebugAdapter/bin/Debug/net8.0/runtimes/win-x64/** |
| 53 | +!XsltDebugger.DebugAdapter/bin/Debug/net8.0/runtimes/osx-arm64/** |
| 54 | + |
| 55 | +# OS generated files |
| 56 | +.DS_Store |
| 57 | +.DS_Store? |
| 58 | +._* |
| 59 | +.Spotlight-V100 |
| 60 | +.Trashes |
| 61 | +ehthumbs.db |
| 62 | +Thumbs.db |
| 63 | + |
| 64 | +# Logs |
| 65 | +logs |
| 66 | +*.log |
| 67 | +npm-debug.log* |
| 68 | +yarn-debug.log* |
| 69 | +yarn-error.log* |
| 70 | + |
| 71 | +# Node modules (should be handled by vsce, but just in case) |
| 72 | +node_modules/** |
| 73 | + |
| 74 | +# Test files |
| 75 | +**/*.test.* |
| 76 | +**/test/** |
| 77 | + |
| 78 | +# Development files |
| 79 | +.eslintrc.* |
| 80 | +.prettierrc.* |
| 81 | +.prettierignore |
| 82 | + |
| 83 | +# CI/CD |
| 84 | +.github/** |
| 85 | + |
| 86 | +# Documentation drafts |
| 87 | +*.md~ |
| 88 | +*.markdown~ |
| 89 | + |
| 90 | +# Development and sample files |
| 91 | +ShipmentConf.xml |
| 92 | +ShipmentConf.xslt |
| 93 | +XsltDebugger.sln |
| 94 | +sample/** |
| 95 | +.claude/** |
| 96 | +tools/** |
| 97 | +changelog.md |
| 98 | +package-clean.sh |
0 commit comments