├── .devcontainer └── devcontainer.json ├── .github ├── dependabot.yml └── workflows │ ├── CI.yml │ ├── detailed-tests.yml │ └── powershell.yml ├── .gitignore ├── AUTHORS.md ├── FeatureFlags.PowerShell.nuspec ├── FeatureFlags.psd1 ├── FeatureFlags.psm1 ├── LICENSE ├── PowerShell-FeatureFlags.csproj ├── README.md ├── SECURITY.md ├── examples └── features.json ├── featureflags.schema.json ├── test ├── Dockerfile ├── FeatureFlags.Tests.ps1 ├── multiple-stages-features.json ├── multiple-stages.json ├── single-stage.json └── test-functions.psm1 └── tools ├── build.ps1 ├── publish.ps1 ├── restore.ps1 └── run-tests.ps1 /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerShell-FeatureFlags/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerShell-FeatureFlags/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerShell-FeatureFlags/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.github/workflows/detailed-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerShell-FeatureFlags/HEAD/.github/workflows/detailed-tests.yml -------------------------------------------------------------------------------- /.github/workflows/powershell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerShell-FeatureFlags/HEAD/.github/workflows/powershell.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerShell-FeatureFlags/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerShell-FeatureFlags/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /FeatureFlags.PowerShell.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerShell-FeatureFlags/HEAD/FeatureFlags.PowerShell.nuspec -------------------------------------------------------------------------------- /FeatureFlags.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerShell-FeatureFlags/HEAD/FeatureFlags.psd1 -------------------------------------------------------------------------------- /FeatureFlags.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerShell-FeatureFlags/HEAD/FeatureFlags.psm1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerShell-FeatureFlags/HEAD/LICENSE -------------------------------------------------------------------------------- /PowerShell-FeatureFlags.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerShell-FeatureFlags/HEAD/PowerShell-FeatureFlags.csproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerShell-FeatureFlags/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerShell-FeatureFlags/HEAD/SECURITY.md -------------------------------------------------------------------------------- /examples/features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerShell-FeatureFlags/HEAD/examples/features.json -------------------------------------------------------------------------------- /featureflags.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerShell-FeatureFlags/HEAD/featureflags.schema.json -------------------------------------------------------------------------------- /test/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerShell-FeatureFlags/HEAD/test/Dockerfile -------------------------------------------------------------------------------- /test/FeatureFlags.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerShell-FeatureFlags/HEAD/test/FeatureFlags.Tests.ps1 -------------------------------------------------------------------------------- /test/multiple-stages-features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerShell-FeatureFlags/HEAD/test/multiple-stages-features.json -------------------------------------------------------------------------------- /test/multiple-stages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerShell-FeatureFlags/HEAD/test/multiple-stages.json -------------------------------------------------------------------------------- /test/single-stage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerShell-FeatureFlags/HEAD/test/single-stage.json -------------------------------------------------------------------------------- /test/test-functions.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerShell-FeatureFlags/HEAD/test/test-functions.psm1 -------------------------------------------------------------------------------- /tools/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerShell-FeatureFlags/HEAD/tools/build.ps1 -------------------------------------------------------------------------------- /tools/publish.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerShell-FeatureFlags/HEAD/tools/publish.ps1 -------------------------------------------------------------------------------- /tools/restore.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerShell-FeatureFlags/HEAD/tools/restore.ps1 -------------------------------------------------------------------------------- /tools/run-tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerShell-FeatureFlags/HEAD/tools/run-tests.ps1 --------------------------------------------------------------------------------