2013-04-11 83 views
3

我想排队从Powershell指定过程参数的构建。我收到以下错误...任何想法我做错了什么?无法找到类型[Microsoft.TeamFoundation.Build.Workflow.WorkflowHelpers]

无法找到类型[Microsoft.TeamFoundation.Build.Workflow.WorkflowHelpers]:确保包含此类型的程序集已加载。

At line:19 char:1
+ $ paramValues = [Microsoft.TeamFoundation.Build.Workflow.WorkflowHelpers] :: Deseri ...
+ ~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~ + CategoryInfo:InvalidOperation:(Microsoft.TeamF ... WorkflowHelpers:类型名)[],的RuntimeException
+ FullyQualifiedErrorId:TypeNotFound`

function Get-BuildServer 
     { 
     param($serverName = $(throw 'please specify a TFS server name')) 
     [void][System.Reflection.Assembly]::LoadWithPartialName("Microsoft.TeamFoundation.Client") 
     [void][System.Reflection.Assembly]::LoadWithPartialName("Microsoft.TeamFoundation.Build.Client") 
     $tfs = [Microsoft.TeamFoundation.Client.TeamFoundationServerFactory]::GetServer($serverName) 

     return $tfs.GetService([Microsoft.TeamFoundation.Build.Client.IBuildServer]) 
     } 

    # SAS: Get the Build Server 
    $buildserver = Get-BuildServer "http://tfsserver:8080/tfs/My%20Project%20Collection" 

    # SAS: Set the parameters (Team Project and Build Definition) 
    $teamProject = "MyProject" 
    $buildDefinition = "MyBuildDefinition" 

    # SAS: Get the build definition 
    $definition = $buildserver.GetBuildDefinition($teamProject, $buildDefinition) 

    # SAS: Create the build request 
    $request = $definition.CreateBuildRequest() 

    # SAS: Deserialise the Process Parameter for the Build Definition 
    [System.Reflection.Assembly]::LoadWithPartialName("Microsoft.TeamFoundation.Build.Workflow") 
    $paramValues = [Microsoft.TeamFoundation.Build.Workflow.WorkflowHelpers]::DeserializeProcessParameters($request.ProcessParameters) 

    # SAS: Set the parameter(s) 
    $paramValues.Item("asdf") = "new value" 

    # SAS: Serialise the Process Parameter for the Build Definition 
    $request.ProcessParameters = [Microsoft.TeamFoundation.Build.Workflow.WorkflowHelpers]::SerializeProcessParameters($paramValues) 

    # SAS: Queue the build 
    $buildserver.QueueBuild($request, "None") 
+0

简单......不是在GAC!哎呀!不管怎么说......但是它已经解决了:-) – SuperSooty 2013-04-11 13:55:30

+0

在VS2015和TFS电动工具上使用Powershell的新Windows 10机器我惊讶地发现这些DLL不再位于Program Files(x86)\ Visual studio版本下,但是而是必须从“C:\ Program Files文件(x86)\ Microsoft团队基础服务器2015年电源工具”中引用,它为我解决了相同的错误。 – rob 2016-01-20 09:09:53

回答

1

不在GAC !您需要DLL到GAC 或 试试这个

add-type -Path 'C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\ReferenceAssemblies\v2.0\Microsoft.TeamFoundation.Build.Workflow.dll'