This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add-Type -AssemblyName 'Microsoft.TeamFoundation.Client, Version=11.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' | |
Add-Type -AssemblyName 'Microsoft.TeamFoundation.Build.Client, Version=11.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' | |
$tfs = New-Object -TypeName Microsoft.TeamFoundation.Client.TfsTeamProjectCollection -ArgumentList $TfsServer | |
try { | |
$deployServiceType = [Microsoft.TeamFoundation.Build.Client.DeploymentService] | |
$deployService = $tfs.GetService($deployServiceType) | |
$deployService.CreateBuildDeployment($Uri, $Uri, $Quality) | |
} | |
catch [Microsoft.TeamFoundation.Build.Client.BuildServerException] | |
{ | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Exception calling "CreateBuildDeployment" with "3" argument(s): "TF246021: An | |
error occurred while processing your request. | |
Technical information (for administrator): | |
SQL Server Error: 2601" | |
At E:\projects\BuildProcessTemplates\Deployment\Update-TfsBuildDetails.ps1:24 | |
char:1 | |
+ $deployService.CreateBuildDeployment($Uri, $Uri, $Quality) | |
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
+ CategoryInfo : NotSpecified: (:) [], MethodInvocationException | |
+ FullyQualifiedErrorId : BuildServerException |
It has a redeploy button which just triggers a new build, so it won't actually set the correct build quality to be auto deployed by tfs deployer.
Added a discussion to TFS Deployers discussion tab http://tfsdeployer.codeplex.com/discussions/397983