├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── SECURITY.md └── assets └── images ├── PowerApps_scalable.svg ├── PowerAutomate_scalable.svg ├── PowerBI_scalable.svg ├── PowerFx_scalable.svg ├── PowerPages_scalable.svg ├── PowerPlatform_scalable.svg └── PowerVirtualAgents_scalable.svg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerplatform/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "sarif-viewer.connectToGithubCodeScanning": "off" 3 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerplatform/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerplatform/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerplatform/HEAD/SECURITY.md -------------------------------------------------------------------------------- /assets/images/PowerApps_scalable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerplatform/HEAD/assets/images/PowerApps_scalable.svg -------------------------------------------------------------------------------- /assets/images/PowerAutomate_scalable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerplatform/HEAD/assets/images/PowerAutomate_scalable.svg -------------------------------------------------------------------------------- /assets/images/PowerBI_scalable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerplatform/HEAD/assets/images/PowerBI_scalable.svg -------------------------------------------------------------------------------- /assets/images/PowerFx_scalable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerplatform/HEAD/assets/images/PowerFx_scalable.svg -------------------------------------------------------------------------------- /assets/images/PowerPages_scalable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerplatform/HEAD/assets/images/PowerPages_scalable.svg -------------------------------------------------------------------------------- /assets/images/PowerPlatform_scalable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerplatform/HEAD/assets/images/PowerPlatform_scalable.svg -------------------------------------------------------------------------------- /assets/images/PowerVirtualAgents_scalable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerplatform/HEAD/assets/images/PowerVirtualAgents_scalable.svg --------------------------------------------------------------------------------