├── Invoke-AppVeyorBuild.ps1 ├── License.txt ├── PSAppVeyor ├── PSAppVeyor.psd1 ├── PSAppVeyor.psm1 ├── Private │ ├── Invoke-AppVeyorApi.ps1 │ └── PSAppVeyor.Classes.ps1 ├── Public │ ├── Get-AppVeyorBuild.ps1 │ ├── Get-AppVeyorCollaborator.ps1 │ ├── Get-AppVeyorEnvironment.ps1 │ ├── Get-AppVeyorProject.ps1 │ ├── Get-AppVeyorProjectDeployment.ps1 │ ├── Get-AppVeyorProjectSetting.ps1 │ ├── Get-AppVeyorUser.ps1 │ ├── Get-AppVeyorUserRole.ps1 │ ├── New-AppVeyorCollaborator.ps1 │ ├── New-AppVeyorEnvironment.ps1 │ ├── New-AppVeyorProject.ps1 │ ├── New-AppVeyorUser.ps1 │ ├── New-AppVeyorUserRole.ps1 │ ├── Remove-AppVeyorCollaborator.ps1 │ ├── Remove-AppVeyorEnvironment.ps1 │ ├── Remove-AppVeyorProject.ps1 │ ├── Remove-AppVeyorUser.ps1 │ ├── Remove-AppVeyorUserRole.ps1 │ ├── Set-AppVeyorApiToken.ps1 │ ├── Start-AppVeyorProjectBuild.ps1 │ ├── Stop-AppVeyorProjectBuild.ps1 │ ├── Update-AppVeyorEnvironment.ps1 │ ├── Update-AppVeyorProjectBuildNumber.ps1 │ ├── Update-AppVeyorUser.ps1 │ └── Update-AppVeyorUserRole.ps1 └── en-US │ └── License.txt ├── README.md ├── Tests └── Pester.Tests.ps1 └── appveyor.yml /Invoke-AppVeyorBuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotps1/PSAppVeyor/HEAD/Invoke-AppVeyorBuild.ps1 -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotps1/PSAppVeyor/HEAD/License.txt -------------------------------------------------------------------------------- /PSAppVeyor/PSAppVeyor.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotps1/PSAppVeyor/HEAD/PSAppVeyor/PSAppVeyor.psd1 -------------------------------------------------------------------------------- /PSAppVeyor/PSAppVeyor.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotps1/PSAppVeyor/HEAD/PSAppVeyor/PSAppVeyor.psm1 -------------------------------------------------------------------------------- /PSAppVeyor/Private/Invoke-AppVeyorApi.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotps1/PSAppVeyor/HEAD/PSAppVeyor/Private/Invoke-AppVeyorApi.ps1 -------------------------------------------------------------------------------- /PSAppVeyor/Private/PSAppVeyor.Classes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotps1/PSAppVeyor/HEAD/PSAppVeyor/Private/PSAppVeyor.Classes.ps1 -------------------------------------------------------------------------------- /PSAppVeyor/Public/Get-AppVeyorBuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotps1/PSAppVeyor/HEAD/PSAppVeyor/Public/Get-AppVeyorBuild.ps1 -------------------------------------------------------------------------------- /PSAppVeyor/Public/Get-AppVeyorCollaborator.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotps1/PSAppVeyor/HEAD/PSAppVeyor/Public/Get-AppVeyorCollaborator.ps1 -------------------------------------------------------------------------------- /PSAppVeyor/Public/Get-AppVeyorEnvironment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotps1/PSAppVeyor/HEAD/PSAppVeyor/Public/Get-AppVeyorEnvironment.ps1 -------------------------------------------------------------------------------- /PSAppVeyor/Public/Get-AppVeyorProject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotps1/PSAppVeyor/HEAD/PSAppVeyor/Public/Get-AppVeyorProject.ps1 -------------------------------------------------------------------------------- /PSAppVeyor/Public/Get-AppVeyorProjectDeployment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotps1/PSAppVeyor/HEAD/PSAppVeyor/Public/Get-AppVeyorProjectDeployment.ps1 -------------------------------------------------------------------------------- /PSAppVeyor/Public/Get-AppVeyorProjectSetting.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotps1/PSAppVeyor/HEAD/PSAppVeyor/Public/Get-AppVeyorProjectSetting.ps1 -------------------------------------------------------------------------------- /PSAppVeyor/Public/Get-AppVeyorUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotps1/PSAppVeyor/HEAD/PSAppVeyor/Public/Get-AppVeyorUser.ps1 -------------------------------------------------------------------------------- /PSAppVeyor/Public/Get-AppVeyorUserRole.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotps1/PSAppVeyor/HEAD/PSAppVeyor/Public/Get-AppVeyorUserRole.ps1 -------------------------------------------------------------------------------- /PSAppVeyor/Public/New-AppVeyorCollaborator.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotps1/PSAppVeyor/HEAD/PSAppVeyor/Public/New-AppVeyorCollaborator.ps1 -------------------------------------------------------------------------------- /PSAppVeyor/Public/New-AppVeyorEnvironment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotps1/PSAppVeyor/HEAD/PSAppVeyor/Public/New-AppVeyorEnvironment.ps1 -------------------------------------------------------------------------------- /PSAppVeyor/Public/New-AppVeyorProject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotps1/PSAppVeyor/HEAD/PSAppVeyor/Public/New-AppVeyorProject.ps1 -------------------------------------------------------------------------------- /PSAppVeyor/Public/New-AppVeyorUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotps1/PSAppVeyor/HEAD/PSAppVeyor/Public/New-AppVeyorUser.ps1 -------------------------------------------------------------------------------- /PSAppVeyor/Public/New-AppVeyorUserRole.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotps1/PSAppVeyor/HEAD/PSAppVeyor/Public/New-AppVeyorUserRole.ps1 -------------------------------------------------------------------------------- /PSAppVeyor/Public/Remove-AppVeyorCollaborator.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotps1/PSAppVeyor/HEAD/PSAppVeyor/Public/Remove-AppVeyorCollaborator.ps1 -------------------------------------------------------------------------------- /PSAppVeyor/Public/Remove-AppVeyorEnvironment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotps1/PSAppVeyor/HEAD/PSAppVeyor/Public/Remove-AppVeyorEnvironment.ps1 -------------------------------------------------------------------------------- /PSAppVeyor/Public/Remove-AppVeyorProject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotps1/PSAppVeyor/HEAD/PSAppVeyor/Public/Remove-AppVeyorProject.ps1 -------------------------------------------------------------------------------- /PSAppVeyor/Public/Remove-AppVeyorUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotps1/PSAppVeyor/HEAD/PSAppVeyor/Public/Remove-AppVeyorUser.ps1 -------------------------------------------------------------------------------- /PSAppVeyor/Public/Remove-AppVeyorUserRole.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotps1/PSAppVeyor/HEAD/PSAppVeyor/Public/Remove-AppVeyorUserRole.ps1 -------------------------------------------------------------------------------- /PSAppVeyor/Public/Set-AppVeyorApiToken.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotps1/PSAppVeyor/HEAD/PSAppVeyor/Public/Set-AppVeyorApiToken.ps1 -------------------------------------------------------------------------------- /PSAppVeyor/Public/Start-AppVeyorProjectBuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotps1/PSAppVeyor/HEAD/PSAppVeyor/Public/Start-AppVeyorProjectBuild.ps1 -------------------------------------------------------------------------------- /PSAppVeyor/Public/Stop-AppVeyorProjectBuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotps1/PSAppVeyor/HEAD/PSAppVeyor/Public/Stop-AppVeyorProjectBuild.ps1 -------------------------------------------------------------------------------- /PSAppVeyor/Public/Update-AppVeyorEnvironment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotps1/PSAppVeyor/HEAD/PSAppVeyor/Public/Update-AppVeyorEnvironment.ps1 -------------------------------------------------------------------------------- /PSAppVeyor/Public/Update-AppVeyorProjectBuildNumber.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotps1/PSAppVeyor/HEAD/PSAppVeyor/Public/Update-AppVeyorProjectBuildNumber.ps1 -------------------------------------------------------------------------------- /PSAppVeyor/Public/Update-AppVeyorUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotps1/PSAppVeyor/HEAD/PSAppVeyor/Public/Update-AppVeyorUser.ps1 -------------------------------------------------------------------------------- /PSAppVeyor/Public/Update-AppVeyorUserRole.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotps1/PSAppVeyor/HEAD/PSAppVeyor/Public/Update-AppVeyorUserRole.ps1 -------------------------------------------------------------------------------- /PSAppVeyor/en-US/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotps1/PSAppVeyor/HEAD/PSAppVeyor/en-US/License.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotps1/PSAppVeyor/HEAD/README.md -------------------------------------------------------------------------------- /Tests/Pester.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotps1/PSAppVeyor/HEAD/Tests/Pester.Tests.ps1 -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotps1/PSAppVeyor/HEAD/appveyor.yml --------------------------------------------------------------------------------