├── .github └── CODEOWNERS ├── .gitignore ├── .whiskey ├── Formats │ ├── System.Exception.format.ps1xml │ ├── Whiskey.BuildInfo.format.ps1xml │ ├── Whiskey.BuildVersion.format.ps1xml │ └── Whiskey.Context.format.ps1xml ├── Functions │ ├── Add-WhiskeyApiKey.ps1 │ ├── Add-WhiskeyCredential.ps1 │ ├── Add-WhiskeyTaskDefault.ps1 │ ├── Add-WhiskeyVariable.ps1 │ ├── Assert-WhiskeyNodeModulePath.ps1 │ ├── Assert-WhiskeyNodePath.ps1 │ ├── ConvertFrom-WhiskeyYamlScalar.ps1 │ ├── ConvertTo-WhiskeySemanticVersion.ps1 │ ├── ConvertTo-WhiskeyTask.ps1 │ ├── Get-MSBuild.ps1 │ ├── Get-WhiskeyApiKey.ps1 │ ├── Get-WhiskeyBuildMetadata.ps1 │ ├── Get-WhiskeyCredential.ps1 │ ├── Get-WhiskeyMSBuildConfiguration.ps1 │ ├── Get-WhiskeyTasks.ps1 │ ├── Import-WhiskeyPowerShellModule.ps1 │ ├── Import-WhiskeyYaml.ps1 │ ├── Install-WhiskeyDotNetTool.ps1 │ ├── Install-WhiskeyDotnetSdk.ps1 │ ├── Install-WhiskeyNodeModule.ps1 │ ├── Install-WhiskeyNuGet.ps1 │ ├── Install-WhiskeyPowerShellModule.ps1 │ ├── Install-WhiskeyTool.ps1 │ ├── Invoke-WhiskeyBuild.ps1 │ ├── Invoke-WhiskeyDotNetCommand.ps1 │ ├── Invoke-WhiskeyNpmCommand.ps1 │ ├── Invoke-WhiskeyNuGetPush.ps1 │ ├── Invoke-WhiskeyPipeline.ps1 │ ├── Invoke-WhiskeyRobocopy.ps1 │ ├── Invoke-WhiskeyTask.ps1 │ ├── New-WhiskeyBuildMetadataObject.ps1 │ ├── New-WhiskeyContext.ps1 │ ├── New-WhiskeyContextObject.ps1 │ ├── New-WhiskeyVersionObject.ps1 │ ├── Publish-WhiskeyPesterTestResult.ps1 │ ├── Register-WhiskeyEvent.ps1 │ ├── Remove-WhiskeyFileSystemItem.ps1 │ ├── Resolve-WhiskeyDotnetSdkVersion.ps1 │ ├── Resolve-WhiskeyNuGetPackageVersion.ps1 │ ├── Resolve-WhiskeyPowerShellModule.ps1 │ ├── Resolve-WhiskeyTaskPath.ps1 │ ├── Resolve-WhiskeyVariable.ps1 │ ├── Set-WhiskeyBuildStatus.ps1 │ ├── Set-WhiskeyDotnetGlobalJson.ps1 │ ├── Set-WhiskeyMSBuildConfiguration.ps1 │ ├── Stop-Whiskey.ps1 │ ├── Stop-WhiskeyTask.ps1 │ ├── Uninstall-WhiskeyNodeModule.ps1 │ ├── Uninstall-WhiskeyPowerShellModule.ps1 │ ├── Uninstall-WhiskeyTool.ps1 │ ├── Unregister-WhiskeyEvent.ps1 │ ├── Use-CallerPreference.ps1 │ ├── Write-CommandOutput.ps1 │ ├── Write-WhiskeyCommand.ps1 │ ├── Write-WhiskeyInfo.ps1 │ ├── Write-WhiskeyTiming.ps1 │ ├── Write-WhiskeyVerbose.ps1 │ └── Write-WhiskeyWarning.ps1 ├── Import-Whiskey.ps1 ├── PackageManagement │ ├── DSCResources │ │ ├── MSFT_PackageManagement │ │ │ ├── MSFT_PackageManagement.psm1 │ │ │ ├── MSFT_PackageManagement.schema.mfl │ │ │ ├── MSFT_PackageManagement.schema.mof │ │ │ └── MSFT_PackageManagement.strings.psd1 │ │ ├── MSFT_PackageManagementSource │ │ │ ├── MSFT_PackageManagementSource.psm1 │ │ │ ├── MSFT_PackageManagementSource.schema.mfl │ │ │ ├── MSFT_PackageManagementSource.schema.mof │ │ │ └── MSFT_PackageManagementSource.strings.psd1 │ │ ├── PackageManagementDscUtilities.psm1 │ │ └── PackageManagementDscUtilities.strings.psd1 │ ├── PackageManagement.Resources.psd1 │ ├── PackageManagement.cat │ ├── PackageManagement.format.ps1xml │ ├── PackageManagement.psd1 │ ├── PackageManagement.psm1 │ ├── PackageProviderFunctions.psm1 │ ├── coreclr │ │ ├── netcoreapp2.0 │ │ │ ├── Microsoft.PackageManagement.ArchiverProviders.dll │ │ │ ├── Microsoft.PackageManagement.CoreProviders.dll │ │ │ ├── Microsoft.PackageManagement.MetaProvider.PowerShell.dll │ │ │ ├── Microsoft.PackageManagement.NuGetProvider.dll │ │ │ ├── Microsoft.PackageManagement.dll │ │ │ └── Microsoft.PowerShell.PackageManagement.dll │ │ └── netstandard1.6 │ │ │ ├── Microsoft.PackageManagement.ArchiverProviders.dll │ │ │ ├── Microsoft.PackageManagement.CoreProviders.dll │ │ │ ├── Microsoft.PackageManagement.MetaProvider.PowerShell.dll │ │ │ ├── Microsoft.PackageManagement.NuGetProvider.dll │ │ │ ├── Microsoft.PackageManagement.dll │ │ │ └── Microsoft.PowerShell.PackageManagement.dll │ └── fullclr │ │ ├── Microsoft.PackageManagement.ArchiverProviders.dll │ │ ├── Microsoft.PackageManagement.CoreProviders.dll │ │ ├── Microsoft.PackageManagement.MetaProvider.PowerShell.dll │ │ ├── Microsoft.PackageManagement.MsiProvider.dll │ │ ├── Microsoft.PackageManagement.MsuProvider.dll │ │ ├── Microsoft.PackageManagement.NuGetProvider.dll │ │ ├── Microsoft.PackageManagement.dll │ │ └── Microsoft.PowerShell.PackageManagement.dll ├── PowerShellGet │ ├── PSGet.Format.ps1xml │ ├── PSGet.Resource.psd1 │ ├── PSModule.psm1 │ ├── PowerShellGet.cat │ ├── PowerShellGet.psd1 │ └── en-US │ │ └── PSGet.Resource.psd1 ├── Tasks │ ├── Copy-WhiskeyFile.ps1 │ ├── Get-WhiskeyPowerShellModule.ps1 │ ├── Import-WhiskeyTask.ps1 │ ├── Invoke-WhiskeyDotNet.ps1 │ ├── Invoke-WhiskeyDotNetBuild.ps1 │ ├── Invoke-WhiskeyDotNetPack.ps1 │ ├── Invoke-WhiskeyDotNetPublish.ps1 │ ├── Invoke-WhiskeyDotNetTest.ps1 │ ├── Invoke-WhiskeyExec.ps1 │ ├── Invoke-WhiskeyMSBuild.ps1 │ ├── Invoke-WhiskeyNUnit2Task.ps1 │ ├── Invoke-WhiskeyNUnit3Task.ps1 │ ├── Invoke-WhiskeyNodeLicenseChecker.ps1 │ ├── Invoke-WhiskeyNodeNspCheck.ps1 │ ├── Invoke-WhiskeyNodeTask.ps1 │ ├── Invoke-WhiskeyNpm.ps1 │ ├── Invoke-WhiskeyNpmConfig.ps1 │ ├── Invoke-WhiskeyNpmInstall.ps1 │ ├── Invoke-WhiskeyNpmPrune.ps1 │ ├── Invoke-WhiskeyNpmRunScript.ps1 │ ├── Invoke-WhiskeyParallelTask.ps1 │ ├── Invoke-WhiskeyPester3Task.ps1 │ ├── Invoke-WhiskeyPester4Task.ps1 │ ├── Invoke-WhiskeyPipelineTask.ps1 │ ├── Invoke-WhiskeyPowerShell.ps1 │ ├── New-WhiskeyGitHubRelease.ps1 │ ├── New-WhiskeyNuGetPackage.ps1 │ ├── New-WhiskeyProGetUniversalPackage.ps1 │ ├── Publish-WhiskeyBBServerTag.ps1 │ ├── Publish-WhiskeyBuildMasterPackage.ps1 │ ├── Publish-WhiskeyNodeModule.ps1 │ ├── Publish-WhiskeyNuGetPackage.ps1 │ ├── Publish-WhiskeyPowerShellModule.ps1 │ ├── Publish-WhiskeyProGetAsset.ps1 │ ├── Publish-WhiskeyProGetUniversalPackage.ps1 │ ├── Remove-WhiskeyItem.ps1 │ ├── Restore-WhiskeyNuGetPackage.ps1 │ ├── Set-WhiskeyTaskDefaults.ps1 │ ├── Set-WhiskeyVariable.ps1 │ ├── Set-WhiskeyVariableFromPowerShellDataFile.ps1 │ ├── Set-WhiskeyVariableFromXml.ps1 │ └── Set-WhiskeyVersion.ps1 ├── Whiskey.psd1 ├── Whiskey.psm1 ├── bin │ ├── 7-Zip │ │ ├── 7-zip.dll │ │ ├── 7-zip32.dll │ │ ├── 7z.dll │ │ ├── 7z.exe │ │ └── License.txt │ ├── NuGet.exe │ ├── SemanticVersion.dll │ ├── Whiskey.dll │ ├── YamlDotNet.dll │ ├── YamlDotNet.xml │ └── dotnet-install.ps1 ├── build.ps1 ├── en-US │ ├── about_Whiskey.help.txt │ ├── about_Whiskey_CopyFile_Task.help.txt │ ├── about_Whiskey_Delete_Task.help.txt │ ├── about_Whiskey_DotNet_Task.help.txt │ ├── about_Whiskey_Exec_Task.help.txt │ ├── about_Whiskey_GetPowerShellModule_Task.help.txt │ ├── about_Whiskey_GitHubRelease_Task.help.txt │ ├── about_Whiskey_LoadTasks_Task.help.txt │ ├── about_Whiskey_MSBuild_Task.help.txt │ ├── about_Whiskey_NUnit2_Task.help.txt │ ├── about_Whiskey_NUnit3_Task.help.txt │ ├── about_Whiskey_NodeLicenseChecker_Task.help.txt │ ├── about_Whiskey_Npm_Task.help.txt │ ├── about_Whiskey_NuGetPack_Task.help.txt │ ├── about_Whiskey_NuGetPush_Task.help.txt │ ├── about_Whiskey_NuGetRestore_Task.help.txt │ ├── about_Whiskey_Parallel_Task.help.txt │ ├── about_Whiskey_Pester3_Task.help.txt │ ├── about_Whiskey_Pester4_Task.help.txt │ ├── about_Whiskey_Pipeline_Task.help.txt │ ├── about_Whiskey_PowerShell_Task.help.txt │ ├── about_Whiskey_ProGetUniversalPackage_Task.help.txt │ ├── about_Whiskey_PublishBitbucketServerTag_Task.help.txt │ ├── about_Whiskey_PublishBuildMasterPackage_Task.help.txt │ ├── about_Whiskey_PublishNodeModule_Task.help.txt │ ├── about_Whiskey_PublishPowerShellModule_Task.help.txt │ ├── about_Whiskey_PublishProGetAsset_Task.help.txt │ ├── about_Whiskey_PublishProGetUniversalPackage_Task.help.txt │ ├── about_Whiskey_SetVariableFromPowerShellDataFile_Task.help.txt │ ├── about_Whiskey_SetVariableFromXml_Task.help.txt │ ├── about_Whiskey_SetVariable_Task.help.txt │ ├── about_Whiskey_Stop_Task.help.txt │ ├── about_Whiskey_TaskDefaults_Task.help.txt │ ├── about_Whiskey_Tasks.help.txt │ ├── about_Whiskey_Variables.help.txt │ ├── about_Whiskey_Version_Task.help.txt │ └── about_Whiskey_Writing_Tasks.help.txt └── whiskey.sample.yml ├── GitAutomation ├── Formats │ ├── Git.Automation.CommitInfo.formats.ps1xml │ └── LibGit2Sharp.StatusEntry.formats.ps1xml ├── Functions │ ├── Add-GitItem.ps1 │ ├── Compare-GitTree.ps1 │ ├── ConvertTo-GitFullPath.ps1 │ ├── Copy-GitRepository.ps1 │ ├── Find-GitRepository.ps1 │ ├── Get-GitBranch.ps1 │ ├── Get-GitCommit.ps1 │ ├── Get-GitConfiguration.ps1 │ ├── Get-GitRepository.ps1 │ ├── Get-GitRepositoryStatus.ps1 │ ├── Get-GitTag.ps1 │ ├── Merge-GitCommit.ps1 │ ├── New-GitBranch.ps1 │ ├── New-GitRepository.ps1 │ ├── New-GitSignature.ps1 │ ├── New-GitTag.ps1 │ ├── Receive-GitCommit.ps1 │ ├── Remove-GitConfiguration.ps1 │ ├── Remove-GitItem.ps1 │ ├── Save-GitCommit.ps1 │ ├── Send-GitBranch.ps1 │ ├── Send-GitCommit.ps1 │ ├── Send-GitObject.ps1 │ ├── Set-GitConfiguration.ps1 │ ├── Sync-GitBranch.ps1 │ ├── Test-GitBranch.ps1 │ ├── Test-GitCommit.ps1 │ ├── Test-GitRemoteUri.ps1 │ ├── Test-GitTag.ps1 │ ├── Test-GitUncommittedChange.ps1 │ ├── Update-GitConfigurationSearchPath.ps1 │ ├── Update-GitRepository.ps1 │ └── Use-CallerPreference.ps1 ├── GitAutomation.psd1 ├── GitAutomation.psm1 ├── Import-GitAutomation.ps1 ├── Types │ └── LibGit2Sharp.StatusEntry.types.ps1xml ├── bin │ └── gitconfig └── en-US │ ├── about_GitAutomation.help.txt │ └── about_GitAutomation_Installation.help.txt ├── LICENSE ├── NOTICE ├── README.md ├── RELEASE_NOTES.md ├── Source ├── Git.Automation.sln └── Git.Automation │ ├── BranchInfo.cs │ ├── CommitInfo.cs │ ├── ConfigurationExtensions.cs │ ├── ConfigurationLoader.cs │ ├── Diff.cs │ ├── Git.Automation.csproj │ ├── MergeResult.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── PushResult.cs │ ├── RepositoryInfo.cs │ ├── SendBranchResult.cs │ ├── SshExeTransport.cs │ ├── SshExeTransportStream.cs │ ├── TagInfo.cs │ └── packages.config ├── Tests ├── Add-GitItem.Tests.ps1 ├── Compare-GitTree.Tests.ps1 ├── Copy-GitRepository.Tests.ps1 ├── Find-GitRepository.Tests.ps1 ├── Get-GitBranch.Tests.ps1 ├── Get-GitCommit.Tests.ps1 ├── Get-GitConfiguration.Tests.ps1 ├── Get-GitRepositoryStatus.Tests.ps1 ├── Get-GitTag.Tests.ps1 ├── GitAutomationTest │ └── GitAutomationTest.psm1 ├── Initialize-GitAutomationTest.ps1 ├── LicenseNotices.Tests.ps1 ├── Merge-GitCommit.Tests.ps1 ├── New-GitBranch.Tests.ps1 ├── New-GitRepository.Tests.ps1 ├── New-GitSignature.Tests.ps1 ├── New-GitTag.Tests.ps1 ├── Receive-GitCommit.Tests.ps1 ├── Remove-GitConfiguration.Tests.ps1 ├── Remove-GitItem.Tests.ps1 ├── Save-GitCommit.Tests.ps1 ├── Send-GitBranch.Tests.ps1 ├── Send-GitCommit.Tests.ps1 ├── Send-GitObject.Tests.ps1 ├── Set-GitConfiguration.Tests.ps1 ├── Sync-GitBranch.Tests.ps1 ├── Test-GitBranch.Tests.ps1 ├── Test-GitCommit.Tests.ps1 ├── Test-GitRemoteUri.Tests.ps1 ├── Test-GitTag.Tests.ps1 ├── Test-GitUncommittedChange.Tests.ps1 └── Update-GitRepository.Tests.ps1 ├── init.ps1 ├── tags.json └── whiskey.yml /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.gitignore -------------------------------------------------------------------------------- /.whiskey/Formats/System.Exception.format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Formats/System.Exception.format.ps1xml -------------------------------------------------------------------------------- /.whiskey/Formats/Whiskey.BuildInfo.format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Formats/Whiskey.BuildInfo.format.ps1xml -------------------------------------------------------------------------------- /.whiskey/Formats/Whiskey.BuildVersion.format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Formats/Whiskey.BuildVersion.format.ps1xml -------------------------------------------------------------------------------- /.whiskey/Formats/Whiskey.Context.format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Formats/Whiskey.Context.format.ps1xml -------------------------------------------------------------------------------- /.whiskey/Functions/Add-WhiskeyApiKey.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Add-WhiskeyApiKey.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Add-WhiskeyCredential.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Add-WhiskeyCredential.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Add-WhiskeyTaskDefault.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Add-WhiskeyTaskDefault.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Add-WhiskeyVariable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Add-WhiskeyVariable.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Assert-WhiskeyNodeModulePath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Assert-WhiskeyNodeModulePath.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Assert-WhiskeyNodePath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Assert-WhiskeyNodePath.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/ConvertFrom-WhiskeyYamlScalar.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/ConvertFrom-WhiskeyYamlScalar.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/ConvertTo-WhiskeySemanticVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/ConvertTo-WhiskeySemanticVersion.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/ConvertTo-WhiskeyTask.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/ConvertTo-WhiskeyTask.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Get-MSBuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Get-MSBuild.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Get-WhiskeyApiKey.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Get-WhiskeyApiKey.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Get-WhiskeyBuildMetadata.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Get-WhiskeyBuildMetadata.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Get-WhiskeyCredential.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Get-WhiskeyCredential.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Get-WhiskeyMSBuildConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Get-WhiskeyMSBuildConfiguration.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Get-WhiskeyTasks.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Get-WhiskeyTasks.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Import-WhiskeyPowerShellModule.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Import-WhiskeyPowerShellModule.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Import-WhiskeyYaml.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Import-WhiskeyYaml.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Install-WhiskeyDotNetTool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Install-WhiskeyDotNetTool.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Install-WhiskeyDotnetSdk.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Install-WhiskeyDotnetSdk.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Install-WhiskeyNodeModule.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Install-WhiskeyNodeModule.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Install-WhiskeyNuGet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Install-WhiskeyNuGet.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Install-WhiskeyPowerShellModule.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Install-WhiskeyPowerShellModule.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Install-WhiskeyTool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Install-WhiskeyTool.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Invoke-WhiskeyBuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Invoke-WhiskeyBuild.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Invoke-WhiskeyDotNetCommand.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Invoke-WhiskeyDotNetCommand.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Invoke-WhiskeyNpmCommand.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Invoke-WhiskeyNpmCommand.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Invoke-WhiskeyNuGetPush.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Invoke-WhiskeyNuGetPush.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Invoke-WhiskeyPipeline.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Invoke-WhiskeyPipeline.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Invoke-WhiskeyRobocopy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Invoke-WhiskeyRobocopy.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Invoke-WhiskeyTask.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Invoke-WhiskeyTask.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/New-WhiskeyBuildMetadataObject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/New-WhiskeyBuildMetadataObject.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/New-WhiskeyContext.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/New-WhiskeyContext.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/New-WhiskeyContextObject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/New-WhiskeyContextObject.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/New-WhiskeyVersionObject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/New-WhiskeyVersionObject.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Publish-WhiskeyPesterTestResult.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Publish-WhiskeyPesterTestResult.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Register-WhiskeyEvent.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Register-WhiskeyEvent.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Remove-WhiskeyFileSystemItem.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Remove-WhiskeyFileSystemItem.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Resolve-WhiskeyDotnetSdkVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Resolve-WhiskeyDotnetSdkVersion.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Resolve-WhiskeyNuGetPackageVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Resolve-WhiskeyNuGetPackageVersion.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Resolve-WhiskeyPowerShellModule.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Resolve-WhiskeyPowerShellModule.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Resolve-WhiskeyTaskPath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Resolve-WhiskeyTaskPath.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Resolve-WhiskeyVariable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Resolve-WhiskeyVariable.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Set-WhiskeyBuildStatus.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Set-WhiskeyBuildStatus.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Set-WhiskeyDotnetGlobalJson.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Set-WhiskeyDotnetGlobalJson.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Set-WhiskeyMSBuildConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Set-WhiskeyMSBuildConfiguration.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Stop-Whiskey.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Stop-Whiskey.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Stop-WhiskeyTask.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Stop-WhiskeyTask.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Uninstall-WhiskeyNodeModule.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Uninstall-WhiskeyNodeModule.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Uninstall-WhiskeyPowerShellModule.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Uninstall-WhiskeyPowerShellModule.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Uninstall-WhiskeyTool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Uninstall-WhiskeyTool.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Unregister-WhiskeyEvent.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Unregister-WhiskeyEvent.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Use-CallerPreference.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Use-CallerPreference.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Write-CommandOutput.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Write-CommandOutput.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Write-WhiskeyCommand.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Write-WhiskeyCommand.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Write-WhiskeyInfo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Write-WhiskeyInfo.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Write-WhiskeyTiming.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Write-WhiskeyTiming.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Write-WhiskeyVerbose.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Write-WhiskeyVerbose.ps1 -------------------------------------------------------------------------------- /.whiskey/Functions/Write-WhiskeyWarning.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Functions/Write-WhiskeyWarning.ps1 -------------------------------------------------------------------------------- /.whiskey/Import-Whiskey.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Import-Whiskey.ps1 -------------------------------------------------------------------------------- /.whiskey/PackageManagement/DSCResources/MSFT_PackageManagement/MSFT_PackageManagement.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/PackageManagement/DSCResources/MSFT_PackageManagement/MSFT_PackageManagement.psm1 -------------------------------------------------------------------------------- /.whiskey/PackageManagement/DSCResources/MSFT_PackageManagement/MSFT_PackageManagement.schema.mfl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/PackageManagement/DSCResources/MSFT_PackageManagement/MSFT_PackageManagement.schema.mfl -------------------------------------------------------------------------------- /.whiskey/PackageManagement/DSCResources/MSFT_PackageManagement/MSFT_PackageManagement.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/PackageManagement/DSCResources/MSFT_PackageManagement/MSFT_PackageManagement.schema.mof -------------------------------------------------------------------------------- /.whiskey/PackageManagement/DSCResources/MSFT_PackageManagement/MSFT_PackageManagement.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/PackageManagement/DSCResources/MSFT_PackageManagement/MSFT_PackageManagement.strings.psd1 -------------------------------------------------------------------------------- /.whiskey/PackageManagement/DSCResources/MSFT_PackageManagementSource/MSFT_PackageManagementSource.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/PackageManagement/DSCResources/MSFT_PackageManagementSource/MSFT_PackageManagementSource.psm1 -------------------------------------------------------------------------------- /.whiskey/PackageManagement/DSCResources/MSFT_PackageManagementSource/MSFT_PackageManagementSource.schema.mfl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/PackageManagement/DSCResources/MSFT_PackageManagementSource/MSFT_PackageManagementSource.schema.mfl -------------------------------------------------------------------------------- /.whiskey/PackageManagement/DSCResources/MSFT_PackageManagementSource/MSFT_PackageManagementSource.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/PackageManagement/DSCResources/MSFT_PackageManagementSource/MSFT_PackageManagementSource.schema.mof -------------------------------------------------------------------------------- /.whiskey/PackageManagement/DSCResources/MSFT_PackageManagementSource/MSFT_PackageManagementSource.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/PackageManagement/DSCResources/MSFT_PackageManagementSource/MSFT_PackageManagementSource.strings.psd1 -------------------------------------------------------------------------------- /.whiskey/PackageManagement/DSCResources/PackageManagementDscUtilities.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/PackageManagement/DSCResources/PackageManagementDscUtilities.psm1 -------------------------------------------------------------------------------- /.whiskey/PackageManagement/DSCResources/PackageManagementDscUtilities.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/PackageManagement/DSCResources/PackageManagementDscUtilities.strings.psd1 -------------------------------------------------------------------------------- /.whiskey/PackageManagement/PackageManagement.Resources.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/PackageManagement/PackageManagement.Resources.psd1 -------------------------------------------------------------------------------- /.whiskey/PackageManagement/PackageManagement.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/PackageManagement/PackageManagement.cat -------------------------------------------------------------------------------- /.whiskey/PackageManagement/PackageManagement.format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/PackageManagement/PackageManagement.format.ps1xml -------------------------------------------------------------------------------- /.whiskey/PackageManagement/PackageManagement.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/PackageManagement/PackageManagement.psd1 -------------------------------------------------------------------------------- /.whiskey/PackageManagement/PackageManagement.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/PackageManagement/PackageManagement.psm1 -------------------------------------------------------------------------------- /.whiskey/PackageManagement/PackageProviderFunctions.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/PackageManagement/PackageProviderFunctions.psm1 -------------------------------------------------------------------------------- /.whiskey/PackageManagement/coreclr/netcoreapp2.0/Microsoft.PackageManagement.ArchiverProviders.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/PackageManagement/coreclr/netcoreapp2.0/Microsoft.PackageManagement.ArchiverProviders.dll -------------------------------------------------------------------------------- /.whiskey/PackageManagement/coreclr/netcoreapp2.0/Microsoft.PackageManagement.CoreProviders.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/PackageManagement/coreclr/netcoreapp2.0/Microsoft.PackageManagement.CoreProviders.dll -------------------------------------------------------------------------------- /.whiskey/PackageManagement/coreclr/netcoreapp2.0/Microsoft.PackageManagement.MetaProvider.PowerShell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/PackageManagement/coreclr/netcoreapp2.0/Microsoft.PackageManagement.MetaProvider.PowerShell.dll -------------------------------------------------------------------------------- /.whiskey/PackageManagement/coreclr/netcoreapp2.0/Microsoft.PackageManagement.NuGetProvider.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/PackageManagement/coreclr/netcoreapp2.0/Microsoft.PackageManagement.NuGetProvider.dll -------------------------------------------------------------------------------- /.whiskey/PackageManagement/coreclr/netcoreapp2.0/Microsoft.PackageManagement.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/PackageManagement/coreclr/netcoreapp2.0/Microsoft.PackageManagement.dll -------------------------------------------------------------------------------- /.whiskey/PackageManagement/coreclr/netcoreapp2.0/Microsoft.PowerShell.PackageManagement.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/PackageManagement/coreclr/netcoreapp2.0/Microsoft.PowerShell.PackageManagement.dll -------------------------------------------------------------------------------- /.whiskey/PackageManagement/coreclr/netstandard1.6/Microsoft.PackageManagement.ArchiverProviders.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/PackageManagement/coreclr/netstandard1.6/Microsoft.PackageManagement.ArchiverProviders.dll -------------------------------------------------------------------------------- /.whiskey/PackageManagement/coreclr/netstandard1.6/Microsoft.PackageManagement.CoreProviders.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/PackageManagement/coreclr/netstandard1.6/Microsoft.PackageManagement.CoreProviders.dll -------------------------------------------------------------------------------- /.whiskey/PackageManagement/coreclr/netstandard1.6/Microsoft.PackageManagement.MetaProvider.PowerShell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/PackageManagement/coreclr/netstandard1.6/Microsoft.PackageManagement.MetaProvider.PowerShell.dll -------------------------------------------------------------------------------- /.whiskey/PackageManagement/coreclr/netstandard1.6/Microsoft.PackageManagement.NuGetProvider.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/PackageManagement/coreclr/netstandard1.6/Microsoft.PackageManagement.NuGetProvider.dll -------------------------------------------------------------------------------- /.whiskey/PackageManagement/coreclr/netstandard1.6/Microsoft.PackageManagement.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/PackageManagement/coreclr/netstandard1.6/Microsoft.PackageManagement.dll -------------------------------------------------------------------------------- /.whiskey/PackageManagement/coreclr/netstandard1.6/Microsoft.PowerShell.PackageManagement.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/PackageManagement/coreclr/netstandard1.6/Microsoft.PowerShell.PackageManagement.dll -------------------------------------------------------------------------------- /.whiskey/PackageManagement/fullclr/Microsoft.PackageManagement.ArchiverProviders.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/PackageManagement/fullclr/Microsoft.PackageManagement.ArchiverProviders.dll -------------------------------------------------------------------------------- /.whiskey/PackageManagement/fullclr/Microsoft.PackageManagement.CoreProviders.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/PackageManagement/fullclr/Microsoft.PackageManagement.CoreProviders.dll -------------------------------------------------------------------------------- /.whiskey/PackageManagement/fullclr/Microsoft.PackageManagement.MetaProvider.PowerShell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/PackageManagement/fullclr/Microsoft.PackageManagement.MetaProvider.PowerShell.dll -------------------------------------------------------------------------------- /.whiskey/PackageManagement/fullclr/Microsoft.PackageManagement.MsiProvider.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/PackageManagement/fullclr/Microsoft.PackageManagement.MsiProvider.dll -------------------------------------------------------------------------------- /.whiskey/PackageManagement/fullclr/Microsoft.PackageManagement.MsuProvider.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/PackageManagement/fullclr/Microsoft.PackageManagement.MsuProvider.dll -------------------------------------------------------------------------------- /.whiskey/PackageManagement/fullclr/Microsoft.PackageManagement.NuGetProvider.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/PackageManagement/fullclr/Microsoft.PackageManagement.NuGetProvider.dll -------------------------------------------------------------------------------- /.whiskey/PackageManagement/fullclr/Microsoft.PackageManagement.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/PackageManagement/fullclr/Microsoft.PackageManagement.dll -------------------------------------------------------------------------------- /.whiskey/PackageManagement/fullclr/Microsoft.PowerShell.PackageManagement.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/PackageManagement/fullclr/Microsoft.PowerShell.PackageManagement.dll -------------------------------------------------------------------------------- /.whiskey/PowerShellGet/PSGet.Format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/PowerShellGet/PSGet.Format.ps1xml -------------------------------------------------------------------------------- /.whiskey/PowerShellGet/PSGet.Resource.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/PowerShellGet/PSGet.Resource.psd1 -------------------------------------------------------------------------------- /.whiskey/PowerShellGet/PSModule.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/PowerShellGet/PSModule.psm1 -------------------------------------------------------------------------------- /.whiskey/PowerShellGet/PowerShellGet.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/PowerShellGet/PowerShellGet.cat -------------------------------------------------------------------------------- /.whiskey/PowerShellGet/PowerShellGet.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/PowerShellGet/PowerShellGet.psd1 -------------------------------------------------------------------------------- /.whiskey/PowerShellGet/en-US/PSGet.Resource.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/PowerShellGet/en-US/PSGet.Resource.psd1 -------------------------------------------------------------------------------- /.whiskey/Tasks/Copy-WhiskeyFile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Tasks/Copy-WhiskeyFile.ps1 -------------------------------------------------------------------------------- /.whiskey/Tasks/Get-WhiskeyPowerShellModule.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Tasks/Get-WhiskeyPowerShellModule.ps1 -------------------------------------------------------------------------------- /.whiskey/Tasks/Import-WhiskeyTask.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Tasks/Import-WhiskeyTask.ps1 -------------------------------------------------------------------------------- /.whiskey/Tasks/Invoke-WhiskeyDotNet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Tasks/Invoke-WhiskeyDotNet.ps1 -------------------------------------------------------------------------------- /.whiskey/Tasks/Invoke-WhiskeyDotNetBuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Tasks/Invoke-WhiskeyDotNetBuild.ps1 -------------------------------------------------------------------------------- /.whiskey/Tasks/Invoke-WhiskeyDotNetPack.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Tasks/Invoke-WhiskeyDotNetPack.ps1 -------------------------------------------------------------------------------- /.whiskey/Tasks/Invoke-WhiskeyDotNetPublish.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Tasks/Invoke-WhiskeyDotNetPublish.ps1 -------------------------------------------------------------------------------- /.whiskey/Tasks/Invoke-WhiskeyDotNetTest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Tasks/Invoke-WhiskeyDotNetTest.ps1 -------------------------------------------------------------------------------- /.whiskey/Tasks/Invoke-WhiskeyExec.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Tasks/Invoke-WhiskeyExec.ps1 -------------------------------------------------------------------------------- /.whiskey/Tasks/Invoke-WhiskeyMSBuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Tasks/Invoke-WhiskeyMSBuild.ps1 -------------------------------------------------------------------------------- /.whiskey/Tasks/Invoke-WhiskeyNUnit2Task.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Tasks/Invoke-WhiskeyNUnit2Task.ps1 -------------------------------------------------------------------------------- /.whiskey/Tasks/Invoke-WhiskeyNUnit3Task.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Tasks/Invoke-WhiskeyNUnit3Task.ps1 -------------------------------------------------------------------------------- /.whiskey/Tasks/Invoke-WhiskeyNodeLicenseChecker.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Tasks/Invoke-WhiskeyNodeLicenseChecker.ps1 -------------------------------------------------------------------------------- /.whiskey/Tasks/Invoke-WhiskeyNodeNspCheck.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Tasks/Invoke-WhiskeyNodeNspCheck.ps1 -------------------------------------------------------------------------------- /.whiskey/Tasks/Invoke-WhiskeyNodeTask.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Tasks/Invoke-WhiskeyNodeTask.ps1 -------------------------------------------------------------------------------- /.whiskey/Tasks/Invoke-WhiskeyNpm.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Tasks/Invoke-WhiskeyNpm.ps1 -------------------------------------------------------------------------------- /.whiskey/Tasks/Invoke-WhiskeyNpmConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Tasks/Invoke-WhiskeyNpmConfig.ps1 -------------------------------------------------------------------------------- /.whiskey/Tasks/Invoke-WhiskeyNpmInstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Tasks/Invoke-WhiskeyNpmInstall.ps1 -------------------------------------------------------------------------------- /.whiskey/Tasks/Invoke-WhiskeyNpmPrune.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Tasks/Invoke-WhiskeyNpmPrune.ps1 -------------------------------------------------------------------------------- /.whiskey/Tasks/Invoke-WhiskeyNpmRunScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Tasks/Invoke-WhiskeyNpmRunScript.ps1 -------------------------------------------------------------------------------- /.whiskey/Tasks/Invoke-WhiskeyParallelTask.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Tasks/Invoke-WhiskeyParallelTask.ps1 -------------------------------------------------------------------------------- /.whiskey/Tasks/Invoke-WhiskeyPester3Task.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Tasks/Invoke-WhiskeyPester3Task.ps1 -------------------------------------------------------------------------------- /.whiskey/Tasks/Invoke-WhiskeyPester4Task.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Tasks/Invoke-WhiskeyPester4Task.ps1 -------------------------------------------------------------------------------- /.whiskey/Tasks/Invoke-WhiskeyPipelineTask.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Tasks/Invoke-WhiskeyPipelineTask.ps1 -------------------------------------------------------------------------------- /.whiskey/Tasks/Invoke-WhiskeyPowerShell.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Tasks/Invoke-WhiskeyPowerShell.ps1 -------------------------------------------------------------------------------- /.whiskey/Tasks/New-WhiskeyGitHubRelease.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Tasks/New-WhiskeyGitHubRelease.ps1 -------------------------------------------------------------------------------- /.whiskey/Tasks/New-WhiskeyNuGetPackage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Tasks/New-WhiskeyNuGetPackage.ps1 -------------------------------------------------------------------------------- /.whiskey/Tasks/New-WhiskeyProGetUniversalPackage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Tasks/New-WhiskeyProGetUniversalPackage.ps1 -------------------------------------------------------------------------------- /.whiskey/Tasks/Publish-WhiskeyBBServerTag.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Tasks/Publish-WhiskeyBBServerTag.ps1 -------------------------------------------------------------------------------- /.whiskey/Tasks/Publish-WhiskeyBuildMasterPackage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Tasks/Publish-WhiskeyBuildMasterPackage.ps1 -------------------------------------------------------------------------------- /.whiskey/Tasks/Publish-WhiskeyNodeModule.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Tasks/Publish-WhiskeyNodeModule.ps1 -------------------------------------------------------------------------------- /.whiskey/Tasks/Publish-WhiskeyNuGetPackage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Tasks/Publish-WhiskeyNuGetPackage.ps1 -------------------------------------------------------------------------------- /.whiskey/Tasks/Publish-WhiskeyPowerShellModule.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Tasks/Publish-WhiskeyPowerShellModule.ps1 -------------------------------------------------------------------------------- /.whiskey/Tasks/Publish-WhiskeyProGetAsset.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Tasks/Publish-WhiskeyProGetAsset.ps1 -------------------------------------------------------------------------------- /.whiskey/Tasks/Publish-WhiskeyProGetUniversalPackage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Tasks/Publish-WhiskeyProGetUniversalPackage.ps1 -------------------------------------------------------------------------------- /.whiskey/Tasks/Remove-WhiskeyItem.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Tasks/Remove-WhiskeyItem.ps1 -------------------------------------------------------------------------------- /.whiskey/Tasks/Restore-WhiskeyNuGetPackage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Tasks/Restore-WhiskeyNuGetPackage.ps1 -------------------------------------------------------------------------------- /.whiskey/Tasks/Set-WhiskeyTaskDefaults.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Tasks/Set-WhiskeyTaskDefaults.ps1 -------------------------------------------------------------------------------- /.whiskey/Tasks/Set-WhiskeyVariable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Tasks/Set-WhiskeyVariable.ps1 -------------------------------------------------------------------------------- /.whiskey/Tasks/Set-WhiskeyVariableFromPowerShellDataFile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Tasks/Set-WhiskeyVariableFromPowerShellDataFile.ps1 -------------------------------------------------------------------------------- /.whiskey/Tasks/Set-WhiskeyVariableFromXml.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Tasks/Set-WhiskeyVariableFromXml.ps1 -------------------------------------------------------------------------------- /.whiskey/Tasks/Set-WhiskeyVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Tasks/Set-WhiskeyVersion.ps1 -------------------------------------------------------------------------------- /.whiskey/Whiskey.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Whiskey.psd1 -------------------------------------------------------------------------------- /.whiskey/Whiskey.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/Whiskey.psm1 -------------------------------------------------------------------------------- /.whiskey/bin/7-Zip/7-zip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/bin/7-Zip/7-zip.dll -------------------------------------------------------------------------------- /.whiskey/bin/7-Zip/7-zip32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/bin/7-Zip/7-zip32.dll -------------------------------------------------------------------------------- /.whiskey/bin/7-Zip/7z.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/bin/7-Zip/7z.dll -------------------------------------------------------------------------------- /.whiskey/bin/7-Zip/7z.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/bin/7-Zip/7z.exe -------------------------------------------------------------------------------- /.whiskey/bin/7-Zip/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/bin/7-Zip/License.txt -------------------------------------------------------------------------------- /.whiskey/bin/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/bin/NuGet.exe -------------------------------------------------------------------------------- /.whiskey/bin/SemanticVersion.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/bin/SemanticVersion.dll -------------------------------------------------------------------------------- /.whiskey/bin/Whiskey.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/bin/Whiskey.dll -------------------------------------------------------------------------------- /.whiskey/bin/YamlDotNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/bin/YamlDotNet.dll -------------------------------------------------------------------------------- /.whiskey/bin/YamlDotNet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/bin/YamlDotNet.xml -------------------------------------------------------------------------------- /.whiskey/bin/dotnet-install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/bin/dotnet-install.ps1 -------------------------------------------------------------------------------- /.whiskey/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/build.ps1 -------------------------------------------------------------------------------- /.whiskey/en-US/about_Whiskey.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/en-US/about_Whiskey.help.txt -------------------------------------------------------------------------------- /.whiskey/en-US/about_Whiskey_CopyFile_Task.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/en-US/about_Whiskey_CopyFile_Task.help.txt -------------------------------------------------------------------------------- /.whiskey/en-US/about_Whiskey_Delete_Task.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/en-US/about_Whiskey_Delete_Task.help.txt -------------------------------------------------------------------------------- /.whiskey/en-US/about_Whiskey_DotNet_Task.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/en-US/about_Whiskey_DotNet_Task.help.txt -------------------------------------------------------------------------------- /.whiskey/en-US/about_Whiskey_Exec_Task.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/en-US/about_Whiskey_Exec_Task.help.txt -------------------------------------------------------------------------------- /.whiskey/en-US/about_Whiskey_GetPowerShellModule_Task.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/en-US/about_Whiskey_GetPowerShellModule_Task.help.txt -------------------------------------------------------------------------------- /.whiskey/en-US/about_Whiskey_GitHubRelease_Task.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/en-US/about_Whiskey_GitHubRelease_Task.help.txt -------------------------------------------------------------------------------- /.whiskey/en-US/about_Whiskey_LoadTasks_Task.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/en-US/about_Whiskey_LoadTasks_Task.help.txt -------------------------------------------------------------------------------- /.whiskey/en-US/about_Whiskey_MSBuild_Task.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/en-US/about_Whiskey_MSBuild_Task.help.txt -------------------------------------------------------------------------------- /.whiskey/en-US/about_Whiskey_NUnit2_Task.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/en-US/about_Whiskey_NUnit2_Task.help.txt -------------------------------------------------------------------------------- /.whiskey/en-US/about_Whiskey_NUnit3_Task.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/en-US/about_Whiskey_NUnit3_Task.help.txt -------------------------------------------------------------------------------- /.whiskey/en-US/about_Whiskey_NodeLicenseChecker_Task.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/en-US/about_Whiskey_NodeLicenseChecker_Task.help.txt -------------------------------------------------------------------------------- /.whiskey/en-US/about_Whiskey_Npm_Task.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/en-US/about_Whiskey_Npm_Task.help.txt -------------------------------------------------------------------------------- /.whiskey/en-US/about_Whiskey_NuGetPack_Task.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/en-US/about_Whiskey_NuGetPack_Task.help.txt -------------------------------------------------------------------------------- /.whiskey/en-US/about_Whiskey_NuGetPush_Task.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/en-US/about_Whiskey_NuGetPush_Task.help.txt -------------------------------------------------------------------------------- /.whiskey/en-US/about_Whiskey_NuGetRestore_Task.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/en-US/about_Whiskey_NuGetRestore_Task.help.txt -------------------------------------------------------------------------------- /.whiskey/en-US/about_Whiskey_Parallel_Task.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/en-US/about_Whiskey_Parallel_Task.help.txt -------------------------------------------------------------------------------- /.whiskey/en-US/about_Whiskey_Pester3_Task.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/en-US/about_Whiskey_Pester3_Task.help.txt -------------------------------------------------------------------------------- /.whiskey/en-US/about_Whiskey_Pester4_Task.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/en-US/about_Whiskey_Pester4_Task.help.txt -------------------------------------------------------------------------------- /.whiskey/en-US/about_Whiskey_Pipeline_Task.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/en-US/about_Whiskey_Pipeline_Task.help.txt -------------------------------------------------------------------------------- /.whiskey/en-US/about_Whiskey_PowerShell_Task.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/en-US/about_Whiskey_PowerShell_Task.help.txt -------------------------------------------------------------------------------- /.whiskey/en-US/about_Whiskey_ProGetUniversalPackage_Task.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/en-US/about_Whiskey_ProGetUniversalPackage_Task.help.txt -------------------------------------------------------------------------------- /.whiskey/en-US/about_Whiskey_PublishBitbucketServerTag_Task.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/en-US/about_Whiskey_PublishBitbucketServerTag_Task.help.txt -------------------------------------------------------------------------------- /.whiskey/en-US/about_Whiskey_PublishBuildMasterPackage_Task.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/en-US/about_Whiskey_PublishBuildMasterPackage_Task.help.txt -------------------------------------------------------------------------------- /.whiskey/en-US/about_Whiskey_PublishNodeModule_Task.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/en-US/about_Whiskey_PublishNodeModule_Task.help.txt -------------------------------------------------------------------------------- /.whiskey/en-US/about_Whiskey_PublishPowerShellModule_Task.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/en-US/about_Whiskey_PublishPowerShellModule_Task.help.txt -------------------------------------------------------------------------------- /.whiskey/en-US/about_Whiskey_PublishProGetAsset_Task.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/en-US/about_Whiskey_PublishProGetAsset_Task.help.txt -------------------------------------------------------------------------------- /.whiskey/en-US/about_Whiskey_PublishProGetUniversalPackage_Task.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/en-US/about_Whiskey_PublishProGetUniversalPackage_Task.help.txt -------------------------------------------------------------------------------- /.whiskey/en-US/about_Whiskey_SetVariableFromPowerShellDataFile_Task.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/en-US/about_Whiskey_SetVariableFromPowerShellDataFile_Task.help.txt -------------------------------------------------------------------------------- /.whiskey/en-US/about_Whiskey_SetVariableFromXml_Task.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/en-US/about_Whiskey_SetVariableFromXml_Task.help.txt -------------------------------------------------------------------------------- /.whiskey/en-US/about_Whiskey_SetVariable_Task.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/en-US/about_Whiskey_SetVariable_Task.help.txt -------------------------------------------------------------------------------- /.whiskey/en-US/about_Whiskey_Stop_Task.help.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.whiskey/en-US/about_Whiskey_TaskDefaults_Task.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/en-US/about_Whiskey_TaskDefaults_Task.help.txt -------------------------------------------------------------------------------- /.whiskey/en-US/about_Whiskey_Tasks.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/en-US/about_Whiskey_Tasks.help.txt -------------------------------------------------------------------------------- /.whiskey/en-US/about_Whiskey_Variables.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/en-US/about_Whiskey_Variables.help.txt -------------------------------------------------------------------------------- /.whiskey/en-US/about_Whiskey_Version_Task.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/en-US/about_Whiskey_Version_Task.help.txt -------------------------------------------------------------------------------- /.whiskey/en-US/about_Whiskey_Writing_Tasks.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/en-US/about_Whiskey_Writing_Tasks.help.txt -------------------------------------------------------------------------------- /.whiskey/whiskey.sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/.whiskey/whiskey.sample.yml -------------------------------------------------------------------------------- /GitAutomation/Formats/Git.Automation.CommitInfo.formats.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/GitAutomation/Formats/Git.Automation.CommitInfo.formats.ps1xml -------------------------------------------------------------------------------- /GitAutomation/Formats/LibGit2Sharp.StatusEntry.formats.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/GitAutomation/Formats/LibGit2Sharp.StatusEntry.formats.ps1xml -------------------------------------------------------------------------------- /GitAutomation/Functions/Add-GitItem.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/GitAutomation/Functions/Add-GitItem.ps1 -------------------------------------------------------------------------------- /GitAutomation/Functions/Compare-GitTree.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/GitAutomation/Functions/Compare-GitTree.ps1 -------------------------------------------------------------------------------- /GitAutomation/Functions/ConvertTo-GitFullPath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/GitAutomation/Functions/ConvertTo-GitFullPath.ps1 -------------------------------------------------------------------------------- /GitAutomation/Functions/Copy-GitRepository.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/GitAutomation/Functions/Copy-GitRepository.ps1 -------------------------------------------------------------------------------- /GitAutomation/Functions/Find-GitRepository.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/GitAutomation/Functions/Find-GitRepository.ps1 -------------------------------------------------------------------------------- /GitAutomation/Functions/Get-GitBranch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/GitAutomation/Functions/Get-GitBranch.ps1 -------------------------------------------------------------------------------- /GitAutomation/Functions/Get-GitCommit.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/GitAutomation/Functions/Get-GitCommit.ps1 -------------------------------------------------------------------------------- /GitAutomation/Functions/Get-GitConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/GitAutomation/Functions/Get-GitConfiguration.ps1 -------------------------------------------------------------------------------- /GitAutomation/Functions/Get-GitRepository.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/GitAutomation/Functions/Get-GitRepository.ps1 -------------------------------------------------------------------------------- /GitAutomation/Functions/Get-GitRepositoryStatus.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/GitAutomation/Functions/Get-GitRepositoryStatus.ps1 -------------------------------------------------------------------------------- /GitAutomation/Functions/Get-GitTag.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/GitAutomation/Functions/Get-GitTag.ps1 -------------------------------------------------------------------------------- /GitAutomation/Functions/Merge-GitCommit.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/GitAutomation/Functions/Merge-GitCommit.ps1 -------------------------------------------------------------------------------- /GitAutomation/Functions/New-GitBranch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/GitAutomation/Functions/New-GitBranch.ps1 -------------------------------------------------------------------------------- /GitAutomation/Functions/New-GitRepository.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/GitAutomation/Functions/New-GitRepository.ps1 -------------------------------------------------------------------------------- /GitAutomation/Functions/New-GitSignature.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/GitAutomation/Functions/New-GitSignature.ps1 -------------------------------------------------------------------------------- /GitAutomation/Functions/New-GitTag.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/GitAutomation/Functions/New-GitTag.ps1 -------------------------------------------------------------------------------- /GitAutomation/Functions/Receive-GitCommit.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/GitAutomation/Functions/Receive-GitCommit.ps1 -------------------------------------------------------------------------------- /GitAutomation/Functions/Remove-GitConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/GitAutomation/Functions/Remove-GitConfiguration.ps1 -------------------------------------------------------------------------------- /GitAutomation/Functions/Remove-GitItem.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/GitAutomation/Functions/Remove-GitItem.ps1 -------------------------------------------------------------------------------- /GitAutomation/Functions/Save-GitCommit.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/GitAutomation/Functions/Save-GitCommit.ps1 -------------------------------------------------------------------------------- /GitAutomation/Functions/Send-GitBranch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/GitAutomation/Functions/Send-GitBranch.ps1 -------------------------------------------------------------------------------- /GitAutomation/Functions/Send-GitCommit.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/GitAutomation/Functions/Send-GitCommit.ps1 -------------------------------------------------------------------------------- /GitAutomation/Functions/Send-GitObject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/GitAutomation/Functions/Send-GitObject.ps1 -------------------------------------------------------------------------------- /GitAutomation/Functions/Set-GitConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/GitAutomation/Functions/Set-GitConfiguration.ps1 -------------------------------------------------------------------------------- /GitAutomation/Functions/Sync-GitBranch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/GitAutomation/Functions/Sync-GitBranch.ps1 -------------------------------------------------------------------------------- /GitAutomation/Functions/Test-GitBranch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/GitAutomation/Functions/Test-GitBranch.ps1 -------------------------------------------------------------------------------- /GitAutomation/Functions/Test-GitCommit.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/GitAutomation/Functions/Test-GitCommit.ps1 -------------------------------------------------------------------------------- /GitAutomation/Functions/Test-GitRemoteUri.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/GitAutomation/Functions/Test-GitRemoteUri.ps1 -------------------------------------------------------------------------------- /GitAutomation/Functions/Test-GitTag.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/GitAutomation/Functions/Test-GitTag.ps1 -------------------------------------------------------------------------------- /GitAutomation/Functions/Test-GitUncommittedChange.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/GitAutomation/Functions/Test-GitUncommittedChange.ps1 -------------------------------------------------------------------------------- /GitAutomation/Functions/Update-GitConfigurationSearchPath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/GitAutomation/Functions/Update-GitConfigurationSearchPath.ps1 -------------------------------------------------------------------------------- /GitAutomation/Functions/Update-GitRepository.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/GitAutomation/Functions/Update-GitRepository.ps1 -------------------------------------------------------------------------------- /GitAutomation/Functions/Use-CallerPreference.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/GitAutomation/Functions/Use-CallerPreference.ps1 -------------------------------------------------------------------------------- /GitAutomation/GitAutomation.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/GitAutomation/GitAutomation.psd1 -------------------------------------------------------------------------------- /GitAutomation/GitAutomation.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/GitAutomation/GitAutomation.psm1 -------------------------------------------------------------------------------- /GitAutomation/Import-GitAutomation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/GitAutomation/Import-GitAutomation.ps1 -------------------------------------------------------------------------------- /GitAutomation/Types/LibGit2Sharp.StatusEntry.types.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/GitAutomation/Types/LibGit2Sharp.StatusEntry.types.ps1xml -------------------------------------------------------------------------------- /GitAutomation/bin/gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/GitAutomation/bin/gitconfig -------------------------------------------------------------------------------- /GitAutomation/en-US/about_GitAutomation.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/GitAutomation/en-US/about_GitAutomation.help.txt -------------------------------------------------------------------------------- /GitAutomation/en-US/about_GitAutomation_Installation.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/GitAutomation/en-US/about_GitAutomation_Installation.help.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/RELEASE_NOTES.md -------------------------------------------------------------------------------- /Source/Git.Automation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Source/Git.Automation.sln -------------------------------------------------------------------------------- /Source/Git.Automation/BranchInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Source/Git.Automation/BranchInfo.cs -------------------------------------------------------------------------------- /Source/Git.Automation/CommitInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Source/Git.Automation/CommitInfo.cs -------------------------------------------------------------------------------- /Source/Git.Automation/ConfigurationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Source/Git.Automation/ConfigurationExtensions.cs -------------------------------------------------------------------------------- /Source/Git.Automation/ConfigurationLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Source/Git.Automation/ConfigurationLoader.cs -------------------------------------------------------------------------------- /Source/Git.Automation/Diff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Source/Git.Automation/Diff.cs -------------------------------------------------------------------------------- /Source/Git.Automation/Git.Automation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Source/Git.Automation/Git.Automation.csproj -------------------------------------------------------------------------------- /Source/Git.Automation/MergeResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Source/Git.Automation/MergeResult.cs -------------------------------------------------------------------------------- /Source/Git.Automation/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Source/Git.Automation/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Git.Automation/PushResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Source/Git.Automation/PushResult.cs -------------------------------------------------------------------------------- /Source/Git.Automation/RepositoryInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Source/Git.Automation/RepositoryInfo.cs -------------------------------------------------------------------------------- /Source/Git.Automation/SendBranchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Source/Git.Automation/SendBranchResult.cs -------------------------------------------------------------------------------- /Source/Git.Automation/SshExeTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Source/Git.Automation/SshExeTransport.cs -------------------------------------------------------------------------------- /Source/Git.Automation/SshExeTransportStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Source/Git.Automation/SshExeTransportStream.cs -------------------------------------------------------------------------------- /Source/Git.Automation/TagInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Source/Git.Automation/TagInfo.cs -------------------------------------------------------------------------------- /Source/Git.Automation/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Source/Git.Automation/packages.config -------------------------------------------------------------------------------- /Tests/Add-GitItem.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Tests/Add-GitItem.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Compare-GitTree.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Tests/Compare-GitTree.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Copy-GitRepository.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Tests/Copy-GitRepository.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Find-GitRepository.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Tests/Find-GitRepository.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Get-GitBranch.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Tests/Get-GitBranch.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Get-GitCommit.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Tests/Get-GitCommit.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Get-GitConfiguration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Tests/Get-GitConfiguration.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Get-GitRepositoryStatus.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Tests/Get-GitRepositoryStatus.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Get-GitTag.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Tests/Get-GitTag.Tests.ps1 -------------------------------------------------------------------------------- /Tests/GitAutomationTest/GitAutomationTest.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Tests/GitAutomationTest/GitAutomationTest.psm1 -------------------------------------------------------------------------------- /Tests/Initialize-GitAutomationTest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Tests/Initialize-GitAutomationTest.ps1 -------------------------------------------------------------------------------- /Tests/LicenseNotices.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Tests/LicenseNotices.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Merge-GitCommit.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Tests/Merge-GitCommit.Tests.ps1 -------------------------------------------------------------------------------- /Tests/New-GitBranch.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Tests/New-GitBranch.Tests.ps1 -------------------------------------------------------------------------------- /Tests/New-GitRepository.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Tests/New-GitRepository.Tests.ps1 -------------------------------------------------------------------------------- /Tests/New-GitSignature.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Tests/New-GitSignature.Tests.ps1 -------------------------------------------------------------------------------- /Tests/New-GitTag.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Tests/New-GitTag.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Receive-GitCommit.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Tests/Receive-GitCommit.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Remove-GitConfiguration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Tests/Remove-GitConfiguration.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Remove-GitItem.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Tests/Remove-GitItem.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Save-GitCommit.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Tests/Save-GitCommit.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Send-GitBranch.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Tests/Send-GitBranch.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Send-GitCommit.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Tests/Send-GitCommit.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Send-GitObject.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Tests/Send-GitObject.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Set-GitConfiguration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Tests/Set-GitConfiguration.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Sync-GitBranch.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Tests/Sync-GitBranch.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Test-GitBranch.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Tests/Test-GitBranch.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Test-GitCommit.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Tests/Test-GitCommit.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Test-GitRemoteUri.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Tests/Test-GitRemoteUri.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Test-GitTag.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Tests/Test-GitTag.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Test-GitUncommittedChange.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Tests/Test-GitUncommittedChange.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Update-GitRepository.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/Tests/Update-GitRepository.Tests.ps1 -------------------------------------------------------------------------------- /init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/init.ps1 -------------------------------------------------------------------------------- /tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/tags.json -------------------------------------------------------------------------------- /whiskey.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmd-health-services/GitAutomation/HEAD/whiskey.yml --------------------------------------------------------------------------------