├── .eslintrc.json ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── issue_label_bot.yaml └── workflows │ ├── build.yml │ └── release.yml ├── .gitignore ├── .prettierrc.json ├── .vs ├── PCF-Builder-VSCode │ └── v16 │ │ └── .suo ├── ProjectSettings.json ├── VSWorkspaceState.json └── slnx.sqlite ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── LICENSE ├── README.md ├── ReleaseNotes.md ├── assets ├── AllCommands.png ├── Build-Control.gif ├── Initialize-Control.gif ├── Manage-Auth-Profiles.gif ├── ManifestFileIntellisense.gif ├── PCF-Generator-Integration.gif ├── PCF-Push.gif ├── Play-Mode.gif ├── Preview-Control.gif └── Update-PCF-CLI.gif ├── bundle ├── harness.js ├── lib │ ├── bluebird.min.js │ ├── es6-shim.min.js │ ├── pep.js │ ├── react-dom.production.min.js │ └── react.production.min.js └── loc │ ├── en-us │ └── diagnosticMessages.localized.json │ └── en │ └── diagnosticMessages.localized.json ├── icon └── PB_Icon.png ├── package.json ├── src ├── Configs │ └── lcid.json ├── Core │ ├── AuthProfiles.ts │ ├── Controls.ts │ └── Others.ts ├── External │ ├── GeneratorPCF.ts │ ├── LanguageCode.ts │ └── LcidPicklist.ts ├── Helper │ ├── Commands.ts │ ├── Console.ts │ ├── Constants.ts │ ├── ErrorMessages.ts │ ├── NpmPackage.ts │ ├── OpenUrl.ts │ ├── Placeholders.ts │ └── Utils.ts ├── Intellisense │ ├── DataTypes.ts │ ├── FeatureUses.ts │ ├── IIntellisense.ts │ ├── Manifest.ts │ ├── ResourceTypes.ts │ └── Snippets.ts ├── Preview │ ├── Main.ts │ └── TestHarnessPanel.ts ├── extension.ts └── test │ ├── runTest.ts │ └── suite │ ├── extension.test.ts │ └── index.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/issue_label_bot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/.github/issue_label_bot.yaml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vs/PCF-Builder-VSCode/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/.vs/PCF-Builder-VSCode/v16/.suo -------------------------------------------------------------------------------- /.vs/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CurrentProjectSetting": null 3 | } 4 | -------------------------------------------------------------------------------- /.vs/VSWorkspaceState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/.vs/VSWorkspaceState.json -------------------------------------------------------------------------------- /.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/.vs/slnx.sqlite -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/.vscodeignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/README.md -------------------------------------------------------------------------------- /ReleaseNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/ReleaseNotes.md -------------------------------------------------------------------------------- /assets/AllCommands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/assets/AllCommands.png -------------------------------------------------------------------------------- /assets/Build-Control.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/assets/Build-Control.gif -------------------------------------------------------------------------------- /assets/Initialize-Control.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/assets/Initialize-Control.gif -------------------------------------------------------------------------------- /assets/Manage-Auth-Profiles.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/assets/Manage-Auth-Profiles.gif -------------------------------------------------------------------------------- /assets/ManifestFileIntellisense.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/assets/ManifestFileIntellisense.gif -------------------------------------------------------------------------------- /assets/PCF-Generator-Integration.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/assets/PCF-Generator-Integration.gif -------------------------------------------------------------------------------- /assets/PCF-Push.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/assets/PCF-Push.gif -------------------------------------------------------------------------------- /assets/Play-Mode.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/assets/Play-Mode.gif -------------------------------------------------------------------------------- /assets/Preview-Control.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/assets/Preview-Control.gif -------------------------------------------------------------------------------- /assets/Update-PCF-CLI.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/assets/Update-PCF-CLI.gif -------------------------------------------------------------------------------- /bundle/harness.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/bundle/harness.js -------------------------------------------------------------------------------- /bundle/lib/bluebird.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/bundle/lib/bluebird.min.js -------------------------------------------------------------------------------- /bundle/lib/es6-shim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/bundle/lib/es6-shim.min.js -------------------------------------------------------------------------------- /bundle/lib/pep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/bundle/lib/pep.js -------------------------------------------------------------------------------- /bundle/lib/react-dom.production.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/bundle/lib/react-dom.production.min.js -------------------------------------------------------------------------------- /bundle/lib/react.production.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/bundle/lib/react.production.min.js -------------------------------------------------------------------------------- /bundle/loc/en-us/diagnosticMessages.localized.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/bundle/loc/en-us/diagnosticMessages.localized.json -------------------------------------------------------------------------------- /bundle/loc/en/diagnosticMessages.localized.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/bundle/loc/en/diagnosticMessages.localized.json -------------------------------------------------------------------------------- /icon/PB_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/icon/PB_Icon.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/package.json -------------------------------------------------------------------------------- /src/Configs/lcid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/src/Configs/lcid.json -------------------------------------------------------------------------------- /src/Core/AuthProfiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/src/Core/AuthProfiles.ts -------------------------------------------------------------------------------- /src/Core/Controls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/src/Core/Controls.ts -------------------------------------------------------------------------------- /src/Core/Others.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/src/Core/Others.ts -------------------------------------------------------------------------------- /src/External/GeneratorPCF.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/src/External/GeneratorPCF.ts -------------------------------------------------------------------------------- /src/External/LanguageCode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/src/External/LanguageCode.ts -------------------------------------------------------------------------------- /src/External/LcidPicklist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/src/External/LcidPicklist.ts -------------------------------------------------------------------------------- /src/Helper/Commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/src/Helper/Commands.ts -------------------------------------------------------------------------------- /src/Helper/Console.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/src/Helper/Console.ts -------------------------------------------------------------------------------- /src/Helper/Constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/src/Helper/Constants.ts -------------------------------------------------------------------------------- /src/Helper/ErrorMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/src/Helper/ErrorMessages.ts -------------------------------------------------------------------------------- /src/Helper/NpmPackage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/src/Helper/NpmPackage.ts -------------------------------------------------------------------------------- /src/Helper/OpenUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/src/Helper/OpenUrl.ts -------------------------------------------------------------------------------- /src/Helper/Placeholders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/src/Helper/Placeholders.ts -------------------------------------------------------------------------------- /src/Helper/Utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/src/Helper/Utils.ts -------------------------------------------------------------------------------- /src/Intellisense/DataTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/src/Intellisense/DataTypes.ts -------------------------------------------------------------------------------- /src/Intellisense/FeatureUses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/src/Intellisense/FeatureUses.ts -------------------------------------------------------------------------------- /src/Intellisense/IIntellisense.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/src/Intellisense/IIntellisense.ts -------------------------------------------------------------------------------- /src/Intellisense/Manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/src/Intellisense/Manifest.ts -------------------------------------------------------------------------------- /src/Intellisense/ResourceTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/src/Intellisense/ResourceTypes.ts -------------------------------------------------------------------------------- /src/Intellisense/Snippets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/src/Intellisense/Snippets.ts -------------------------------------------------------------------------------- /src/Preview/Main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/src/Preview/Main.ts -------------------------------------------------------------------------------- /src/Preview/TestHarnessPanel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/src/Preview/TestHarnessPanel.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/test/runTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/src/test/runTest.ts -------------------------------------------------------------------------------- /src/test/suite/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/src/test/suite/extension.test.ts -------------------------------------------------------------------------------- /src/test/suite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/src/test/suite/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Power-Maverick/PCF-Builder-VSCode/HEAD/tsconfig.json --------------------------------------------------------------------------------