├── .gitignore ├── LICENSE ├── README.md ├── banditoth-VSCode-MAUI-Archive ├── .eslintrc.json ├── .vscode-test.mjs ├── .vscode │ ├── extensions.json │ └── launch.json ├── .vscodeignore ├── CHANGELOG.md ├── Commands │ ├── androidCommands.js │ ├── appleCommands.js │ └── windowsCommands.js ├── Platforms │ ├── androidFeatures.js │ ├── appleFeatures.js │ └── commonFeatures.js ├── README.md ├── extension.js ├── icon.png ├── jsconfig.json ├── license.txt ├── package-lock.json ├── package.json └── test │ └── extension.test.js └── icon.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banditoth/maui-archiver-vscode/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banditoth/maui-archiver-vscode/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banditoth/maui-archiver-vscode/HEAD/README.md -------------------------------------------------------------------------------- /banditoth-VSCode-MAUI-Archive/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banditoth/maui-archiver-vscode/HEAD/banditoth-VSCode-MAUI-Archive/.eslintrc.json -------------------------------------------------------------------------------- /banditoth-VSCode-MAUI-Archive/.vscode-test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banditoth/maui-archiver-vscode/HEAD/banditoth-VSCode-MAUI-Archive/.vscode-test.mjs -------------------------------------------------------------------------------- /banditoth-VSCode-MAUI-Archive/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banditoth/maui-archiver-vscode/HEAD/banditoth-VSCode-MAUI-Archive/.vscode/extensions.json -------------------------------------------------------------------------------- /banditoth-VSCode-MAUI-Archive/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banditoth/maui-archiver-vscode/HEAD/banditoth-VSCode-MAUI-Archive/.vscode/launch.json -------------------------------------------------------------------------------- /banditoth-VSCode-MAUI-Archive/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banditoth/maui-archiver-vscode/HEAD/banditoth-VSCode-MAUI-Archive/.vscodeignore -------------------------------------------------------------------------------- /banditoth-VSCode-MAUI-Archive/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banditoth/maui-archiver-vscode/HEAD/banditoth-VSCode-MAUI-Archive/CHANGELOG.md -------------------------------------------------------------------------------- /banditoth-VSCode-MAUI-Archive/Commands/androidCommands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banditoth/maui-archiver-vscode/HEAD/banditoth-VSCode-MAUI-Archive/Commands/androidCommands.js -------------------------------------------------------------------------------- /banditoth-VSCode-MAUI-Archive/Commands/appleCommands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banditoth/maui-archiver-vscode/HEAD/banditoth-VSCode-MAUI-Archive/Commands/appleCommands.js -------------------------------------------------------------------------------- /banditoth-VSCode-MAUI-Archive/Commands/windowsCommands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banditoth/maui-archiver-vscode/HEAD/banditoth-VSCode-MAUI-Archive/Commands/windowsCommands.js -------------------------------------------------------------------------------- /banditoth-VSCode-MAUI-Archive/Platforms/androidFeatures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banditoth/maui-archiver-vscode/HEAD/banditoth-VSCode-MAUI-Archive/Platforms/androidFeatures.js -------------------------------------------------------------------------------- /banditoth-VSCode-MAUI-Archive/Platforms/appleFeatures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banditoth/maui-archiver-vscode/HEAD/banditoth-VSCode-MAUI-Archive/Platforms/appleFeatures.js -------------------------------------------------------------------------------- /banditoth-VSCode-MAUI-Archive/Platforms/commonFeatures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banditoth/maui-archiver-vscode/HEAD/banditoth-VSCode-MAUI-Archive/Platforms/commonFeatures.js -------------------------------------------------------------------------------- /banditoth-VSCode-MAUI-Archive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banditoth/maui-archiver-vscode/HEAD/banditoth-VSCode-MAUI-Archive/README.md -------------------------------------------------------------------------------- /banditoth-VSCode-MAUI-Archive/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banditoth/maui-archiver-vscode/HEAD/banditoth-VSCode-MAUI-Archive/extension.js -------------------------------------------------------------------------------- /banditoth-VSCode-MAUI-Archive/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banditoth/maui-archiver-vscode/HEAD/banditoth-VSCode-MAUI-Archive/icon.png -------------------------------------------------------------------------------- /banditoth-VSCode-MAUI-Archive/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banditoth/maui-archiver-vscode/HEAD/banditoth-VSCode-MAUI-Archive/jsconfig.json -------------------------------------------------------------------------------- /banditoth-VSCode-MAUI-Archive/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banditoth/maui-archiver-vscode/HEAD/banditoth-VSCode-MAUI-Archive/license.txt -------------------------------------------------------------------------------- /banditoth-VSCode-MAUI-Archive/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banditoth/maui-archiver-vscode/HEAD/banditoth-VSCode-MAUI-Archive/package-lock.json -------------------------------------------------------------------------------- /banditoth-VSCode-MAUI-Archive/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banditoth/maui-archiver-vscode/HEAD/banditoth-VSCode-MAUI-Archive/package.json -------------------------------------------------------------------------------- /banditoth-VSCode-MAUI-Archive/test/extension.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banditoth/maui-archiver-vscode/HEAD/banditoth-VSCode-MAUI-Archive/test/extension.test.js -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/banditoth/maui-archiver-vscode/HEAD/icon.png --------------------------------------------------------------------------------