├── .gitignore ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Colors.ps1 ├── Data.ps1 ├── DocFx.ps1 ├── Files.ps1 ├── Functional.ps1 ├── Git.ps1 ├── LICENSE ├── PSScriptAnalyzerSettings.psd1 ├── PSToolset.psd1 ├── PSToolset.psm1 ├── Python.ps1 ├── README.md ├── SECURITY.md ├── Security.ps1 ├── TabExpansion.ps1 ├── Text.ps1 ├── Utils.ps1 ├── Xml.ps1 └── media └── source-output.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSToolset/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSToolset/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSToolset/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSToolset/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Colors.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSToolset/HEAD/Colors.ps1 -------------------------------------------------------------------------------- /Data.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSToolset/HEAD/Data.ps1 -------------------------------------------------------------------------------- /DocFx.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSToolset/HEAD/DocFx.ps1 -------------------------------------------------------------------------------- /Files.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSToolset/HEAD/Files.ps1 -------------------------------------------------------------------------------- /Functional.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSToolset/HEAD/Functional.ps1 -------------------------------------------------------------------------------- /Git.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSToolset/HEAD/Git.ps1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSToolset/HEAD/LICENSE -------------------------------------------------------------------------------- /PSScriptAnalyzerSettings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSToolset/HEAD/PSScriptAnalyzerSettings.psd1 -------------------------------------------------------------------------------- /PSToolset.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSToolset/HEAD/PSToolset.psd1 -------------------------------------------------------------------------------- /PSToolset.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSToolset/HEAD/PSToolset.psm1 -------------------------------------------------------------------------------- /Python.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSToolset/HEAD/Python.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSToolset/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSToolset/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Security.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSToolset/HEAD/Security.ps1 -------------------------------------------------------------------------------- /TabExpansion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSToolset/HEAD/TabExpansion.ps1 -------------------------------------------------------------------------------- /Text.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSToolset/HEAD/Text.ps1 -------------------------------------------------------------------------------- /Utils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSToolset/HEAD/Utils.ps1 -------------------------------------------------------------------------------- /Xml.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSToolset/HEAD/Xml.ps1 -------------------------------------------------------------------------------- /media/source-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PSToolset/HEAD/media/source-output.png --------------------------------------------------------------------------------