├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug-report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── SECURITY.md ├── .gitignore ├── .readthedocs.yaml ├── .vscode ├── extensions.json ├── settings.json └── tasks.json ├── CloudFormation ├── Manual │ ├── PSGELFunctions.yml │ ├── PSGalleryPipeline.yml │ └── PowerShellCodeBuildGit.yml └── PSGalleryExplorer │ ├── ChildTemplates │ ├── PSGEAlarms.yml │ ├── PSGES3Buckets.yml │ └── PSGESSM.yml │ ├── ControlPlane-Parameters │ └── PSGalleryExplorer.json │ └── PSGalleryExplorer-ControlPlane.yml ├── CodeBuild ├── IntegrationTest │ ├── New-IntegrationInfrastructure.ps1 │ ├── Remove-IntegrationInfrastructure.ps1 │ ├── Tests │ │ └── Integration.Tests.ps1 │ └── buildspec.yml ├── UnitTestAndBuild │ ├── Publish-CFNTemplatesToS3.ps1 │ ├── Validate-CFNTemplates.Tests.ps1 │ ├── Validate-JSONConfigurations.Tests.ps1 │ ├── buildspec.yml │ ├── dotnet-install.ps1 │ └── dotnet-install.sh ├── configure_aws_credential.ps1 └── install_modules.ps1 ├── LICENSE ├── README.md ├── actions_bootstrap.ps1 ├── appveyor.yml ├── configure_aws_credential.ps1 ├── docs ├── CHANGELOG.md ├── Find-ModuleByCommand.md ├── Find-PSGModule.md ├── PSGalleryExplorer-Data_Collection.md ├── PSGalleryExplorer-FAQ.md ├── PSGalleryExplorer-Metrics.md ├── PSGalleryExplorer.md ├── assets │ ├── PSGalleryExplorer.png │ ├── PSGalleryExplorerIcon.png │ ├── PSGalleryExplorer_datapull.png │ ├── PSGalleryExplorer_favicon-32x32.png │ ├── Serverless_PowerShell_DataPull.png │ ├── diagrams │ │ └── PSGalleryExplorer_datapull.drawio │ ├── favicon_io │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon.ico │ │ └── site.webmanifest │ └── psgalleryexplorer.gif ├── index.md └── requirements.txt ├── install_modules.ps1 ├── lambdafunctions └── PowerShell │ └── PubXMLMonitor │ ├── PubXMLMonitor.build.ps1 │ ├── PubXMLMonitor.ps1 │ └── PubXMLMonitor.settings.ps1 ├── mkdocs.yml └── src ├── MarkdownRepair.ps1 ├── PSGalleryExplorer.Settings.ps1 ├── PSGalleryExplorer.build.ps1 ├── PSGalleryExplorer ├── Imports.ps1 ├── PSGalleryExplorer.Format.ps1xml ├── PSGalleryExplorer.psd1 ├── PSGalleryExplorer.psm1 ├── Private │ ├── Confirm-DataLocation.ps1 │ ├── Confirm-MetadataUpdate.ps1 │ ├── Confirm-XMLDataSet.ps1 │ ├── Expand-XMLDataSet.ps1 │ ├── Get-RemoteFile.ps1 │ ├── Import-XMLDataSet.ps1 │ └── Invoke-XMLDataCheck.ps1 └── Public │ ├── Find-ModuleByCommand.ps1 │ └── Find-PSGModule.ps1 ├── PSScriptAnalyzerSettings.psd1 └── Tests ├── Integration └── PSGalleryExplorer.Tests.ps1 └── Unit ├── ExportedFunctions.Tests.ps1 ├── PSGalleryExplorer-Module.Tests.ps1 ├── Private ├── Confirm-DataLocation.Tests.ps1 ├── Confirm-MetadataUpdate.Tests.ps1 ├── Confirm-XMLDataSet.Tests.ps1 ├── Expand-XMLDataSet.Tests.ps1 ├── Get-RemoteFile.Tests.ps1 ├── Import-XMLDataSet.Tests.ps1 └── Invoke-XMLDataCheck.Tests.ps1 └── Public ├── Find-ModuleByCommand.Tests.ps1 └── Find-PSGModule.Tests.ps1 /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CloudFormation/Manual/PSGELFunctions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/CloudFormation/Manual/PSGELFunctions.yml -------------------------------------------------------------------------------- /CloudFormation/Manual/PSGalleryPipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/CloudFormation/Manual/PSGalleryPipeline.yml -------------------------------------------------------------------------------- /CloudFormation/Manual/PowerShellCodeBuildGit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/CloudFormation/Manual/PowerShellCodeBuildGit.yml -------------------------------------------------------------------------------- /CloudFormation/PSGalleryExplorer/ChildTemplates/PSGEAlarms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/CloudFormation/PSGalleryExplorer/ChildTemplates/PSGEAlarms.yml -------------------------------------------------------------------------------- /CloudFormation/PSGalleryExplorer/ChildTemplates/PSGES3Buckets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/CloudFormation/PSGalleryExplorer/ChildTemplates/PSGES3Buckets.yml -------------------------------------------------------------------------------- /CloudFormation/PSGalleryExplorer/ChildTemplates/PSGESSM.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/CloudFormation/PSGalleryExplorer/ChildTemplates/PSGESSM.yml -------------------------------------------------------------------------------- /CloudFormation/PSGalleryExplorer/ControlPlane-Parameters/PSGalleryExplorer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/CloudFormation/PSGalleryExplorer/ControlPlane-Parameters/PSGalleryExplorer.json -------------------------------------------------------------------------------- /CloudFormation/PSGalleryExplorer/PSGalleryExplorer-ControlPlane.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/CloudFormation/PSGalleryExplorer/PSGalleryExplorer-ControlPlane.yml -------------------------------------------------------------------------------- /CodeBuild/IntegrationTest/New-IntegrationInfrastructure.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/CodeBuild/IntegrationTest/New-IntegrationInfrastructure.ps1 -------------------------------------------------------------------------------- /CodeBuild/IntegrationTest/Remove-IntegrationInfrastructure.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/CodeBuild/IntegrationTest/Remove-IntegrationInfrastructure.ps1 -------------------------------------------------------------------------------- /CodeBuild/IntegrationTest/Tests/Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/CodeBuild/IntegrationTest/Tests/Integration.Tests.ps1 -------------------------------------------------------------------------------- /CodeBuild/IntegrationTest/buildspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/CodeBuild/IntegrationTest/buildspec.yml -------------------------------------------------------------------------------- /CodeBuild/UnitTestAndBuild/Publish-CFNTemplatesToS3.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/CodeBuild/UnitTestAndBuild/Publish-CFNTemplatesToS3.ps1 -------------------------------------------------------------------------------- /CodeBuild/UnitTestAndBuild/Validate-CFNTemplates.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/CodeBuild/UnitTestAndBuild/Validate-CFNTemplates.Tests.ps1 -------------------------------------------------------------------------------- /CodeBuild/UnitTestAndBuild/Validate-JSONConfigurations.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/CodeBuild/UnitTestAndBuild/Validate-JSONConfigurations.Tests.ps1 -------------------------------------------------------------------------------- /CodeBuild/UnitTestAndBuild/buildspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/CodeBuild/UnitTestAndBuild/buildspec.yml -------------------------------------------------------------------------------- /CodeBuild/UnitTestAndBuild/dotnet-install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/CodeBuild/UnitTestAndBuild/dotnet-install.ps1 -------------------------------------------------------------------------------- /CodeBuild/UnitTestAndBuild/dotnet-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/CodeBuild/UnitTestAndBuild/dotnet-install.sh -------------------------------------------------------------------------------- /CodeBuild/configure_aws_credential.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/CodeBuild/configure_aws_credential.ps1 -------------------------------------------------------------------------------- /CodeBuild/install_modules.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/CodeBuild/install_modules.ps1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/README.md -------------------------------------------------------------------------------- /actions_bootstrap.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/actions_bootstrap.ps1 -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/appveyor.yml -------------------------------------------------------------------------------- /configure_aws_credential.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/configure_aws_credential.ps1 -------------------------------------------------------------------------------- /docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/docs/CHANGELOG.md -------------------------------------------------------------------------------- /docs/Find-ModuleByCommand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/docs/Find-ModuleByCommand.md -------------------------------------------------------------------------------- /docs/Find-PSGModule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/docs/Find-PSGModule.md -------------------------------------------------------------------------------- /docs/PSGalleryExplorer-Data_Collection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/docs/PSGalleryExplorer-Data_Collection.md -------------------------------------------------------------------------------- /docs/PSGalleryExplorer-FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/docs/PSGalleryExplorer-FAQ.md -------------------------------------------------------------------------------- /docs/PSGalleryExplorer-Metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/docs/PSGalleryExplorer-Metrics.md -------------------------------------------------------------------------------- /docs/PSGalleryExplorer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/docs/PSGalleryExplorer.md -------------------------------------------------------------------------------- /docs/assets/PSGalleryExplorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/docs/assets/PSGalleryExplorer.png -------------------------------------------------------------------------------- /docs/assets/PSGalleryExplorerIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/docs/assets/PSGalleryExplorerIcon.png -------------------------------------------------------------------------------- /docs/assets/PSGalleryExplorer_datapull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/docs/assets/PSGalleryExplorer_datapull.png -------------------------------------------------------------------------------- /docs/assets/PSGalleryExplorer_favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/docs/assets/PSGalleryExplorer_favicon-32x32.png -------------------------------------------------------------------------------- /docs/assets/Serverless_PowerShell_DataPull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/docs/assets/Serverless_PowerShell_DataPull.png -------------------------------------------------------------------------------- /docs/assets/diagrams/PSGalleryExplorer_datapull.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/docs/assets/diagrams/PSGalleryExplorer_datapull.drawio -------------------------------------------------------------------------------- /docs/assets/favicon_io/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/docs/assets/favicon_io/android-chrome-192x192.png -------------------------------------------------------------------------------- /docs/assets/favicon_io/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/docs/assets/favicon_io/android-chrome-512x512.png -------------------------------------------------------------------------------- /docs/assets/favicon_io/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/docs/assets/favicon_io/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/assets/favicon_io/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/docs/assets/favicon_io/favicon-16x16.png -------------------------------------------------------------------------------- /docs/assets/favicon_io/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/docs/assets/favicon_io/favicon.ico -------------------------------------------------------------------------------- /docs/assets/favicon_io/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/docs/assets/favicon_io/site.webmanifest -------------------------------------------------------------------------------- /docs/assets/psgalleryexplorer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/docs/assets/psgalleryexplorer.gif -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /install_modules.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/install_modules.ps1 -------------------------------------------------------------------------------- /lambdafunctions/PowerShell/PubXMLMonitor/PubXMLMonitor.build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/lambdafunctions/PowerShell/PubXMLMonitor/PubXMLMonitor.build.ps1 -------------------------------------------------------------------------------- /lambdafunctions/PowerShell/PubXMLMonitor/PubXMLMonitor.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/lambdafunctions/PowerShell/PubXMLMonitor/PubXMLMonitor.ps1 -------------------------------------------------------------------------------- /lambdafunctions/PowerShell/PubXMLMonitor/PubXMLMonitor.settings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/lambdafunctions/PowerShell/PubXMLMonitor/PubXMLMonitor.settings.ps1 -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /src/MarkdownRepair.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/src/MarkdownRepair.ps1 -------------------------------------------------------------------------------- /src/PSGalleryExplorer.Settings.ps1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/PSGalleryExplorer.build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/src/PSGalleryExplorer.build.ps1 -------------------------------------------------------------------------------- /src/PSGalleryExplorer/Imports.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/src/PSGalleryExplorer/Imports.ps1 -------------------------------------------------------------------------------- /src/PSGalleryExplorer/PSGalleryExplorer.Format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/src/PSGalleryExplorer/PSGalleryExplorer.Format.ps1xml -------------------------------------------------------------------------------- /src/PSGalleryExplorer/PSGalleryExplorer.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/src/PSGalleryExplorer/PSGalleryExplorer.psd1 -------------------------------------------------------------------------------- /src/PSGalleryExplorer/PSGalleryExplorer.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/src/PSGalleryExplorer/PSGalleryExplorer.psm1 -------------------------------------------------------------------------------- /src/PSGalleryExplorer/Private/Confirm-DataLocation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/src/PSGalleryExplorer/Private/Confirm-DataLocation.ps1 -------------------------------------------------------------------------------- /src/PSGalleryExplorer/Private/Confirm-MetadataUpdate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/src/PSGalleryExplorer/Private/Confirm-MetadataUpdate.ps1 -------------------------------------------------------------------------------- /src/PSGalleryExplorer/Private/Confirm-XMLDataSet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/src/PSGalleryExplorer/Private/Confirm-XMLDataSet.ps1 -------------------------------------------------------------------------------- /src/PSGalleryExplorer/Private/Expand-XMLDataSet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/src/PSGalleryExplorer/Private/Expand-XMLDataSet.ps1 -------------------------------------------------------------------------------- /src/PSGalleryExplorer/Private/Get-RemoteFile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/src/PSGalleryExplorer/Private/Get-RemoteFile.ps1 -------------------------------------------------------------------------------- /src/PSGalleryExplorer/Private/Import-XMLDataSet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/src/PSGalleryExplorer/Private/Import-XMLDataSet.ps1 -------------------------------------------------------------------------------- /src/PSGalleryExplorer/Private/Invoke-XMLDataCheck.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/src/PSGalleryExplorer/Private/Invoke-XMLDataCheck.ps1 -------------------------------------------------------------------------------- /src/PSGalleryExplorer/Public/Find-ModuleByCommand.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/src/PSGalleryExplorer/Public/Find-ModuleByCommand.ps1 -------------------------------------------------------------------------------- /src/PSGalleryExplorer/Public/Find-PSGModule.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/src/PSGalleryExplorer/Public/Find-PSGModule.ps1 -------------------------------------------------------------------------------- /src/PSScriptAnalyzerSettings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/src/PSScriptAnalyzerSettings.psd1 -------------------------------------------------------------------------------- /src/Tests/Integration/PSGalleryExplorer.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/src/Tests/Integration/PSGalleryExplorer.Tests.ps1 -------------------------------------------------------------------------------- /src/Tests/Unit/ExportedFunctions.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/src/Tests/Unit/ExportedFunctions.Tests.ps1 -------------------------------------------------------------------------------- /src/Tests/Unit/PSGalleryExplorer-Module.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/src/Tests/Unit/PSGalleryExplorer-Module.Tests.ps1 -------------------------------------------------------------------------------- /src/Tests/Unit/Private/Confirm-DataLocation.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/src/Tests/Unit/Private/Confirm-DataLocation.Tests.ps1 -------------------------------------------------------------------------------- /src/Tests/Unit/Private/Confirm-MetadataUpdate.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/src/Tests/Unit/Private/Confirm-MetadataUpdate.Tests.ps1 -------------------------------------------------------------------------------- /src/Tests/Unit/Private/Confirm-XMLDataSet.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/src/Tests/Unit/Private/Confirm-XMLDataSet.Tests.ps1 -------------------------------------------------------------------------------- /src/Tests/Unit/Private/Expand-XMLDataSet.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/src/Tests/Unit/Private/Expand-XMLDataSet.Tests.ps1 -------------------------------------------------------------------------------- /src/Tests/Unit/Private/Get-RemoteFile.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/src/Tests/Unit/Private/Get-RemoteFile.Tests.ps1 -------------------------------------------------------------------------------- /src/Tests/Unit/Private/Import-XMLDataSet.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/src/Tests/Unit/Private/Import-XMLDataSet.Tests.ps1 -------------------------------------------------------------------------------- /src/Tests/Unit/Private/Invoke-XMLDataCheck.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/src/Tests/Unit/Private/Invoke-XMLDataCheck.Tests.ps1 -------------------------------------------------------------------------------- /src/Tests/Unit/Public/Find-ModuleByCommand.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/src/Tests/Unit/Public/Find-ModuleByCommand.Tests.ps1 -------------------------------------------------------------------------------- /src/Tests/Unit/Public/Find-PSGModule.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techthoughts2/PSGalleryExplorer/HEAD/src/Tests/Unit/Public/Find-PSGModule.Tests.ps1 --------------------------------------------------------------------------------