├── .gitignore ├── PowerShellModuleProject.Tests.ps1 ├── PowerShellModuleProject.nuspec ├── PowerShellModuleProject.psd1 ├── PowerShellModuleProject.psm1 └── public └── Test-Function.ps1 /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /PowerShellModuleProject.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PowerShellModuleProject/HEAD/PowerShellModuleProject.Tests.ps1 -------------------------------------------------------------------------------- /PowerShellModuleProject.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PowerShellModuleProject/HEAD/PowerShellModuleProject.nuspec -------------------------------------------------------------------------------- /PowerShellModuleProject.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PowerShellModuleProject/HEAD/PowerShellModuleProject.psd1 -------------------------------------------------------------------------------- /PowerShellModuleProject.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PowerShellModuleProject/HEAD/PowerShellModuleProject.psm1 -------------------------------------------------------------------------------- /public/Test-Function.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PowerShellModuleProject/HEAD/public/Test-Function.ps1 --------------------------------------------------------------------------------