我正在开发一个TFS构建定义,它使用此处的博客代码启动另一个构建:Queue another Team Build when one Team Build succeeds
我对帖子底部的前几条评论感兴趣。基本上,我只想将第一个内部版本号传递给下一个版本。
更改XAML模板以传递IBuildRequest
而不是IBuildDefinition
...
<Sequence.Variables>
<Variable x:TypeArguments="mtbc:IBuildDefinition" Default="[BuildServer.GetBuildDefinition(BuildDetail.TeamProject, buildChainItem)]" Name="ChainedBuildDefinition" />
<Variable x:TypeArguments="mtbc:IBuildRequest" Default="[BuildServer.CreateBuildRequest(ChainedBuildDefinition.Uri)]" Name="ChainedBuildRequest" />
<Variable x:TypeArguments="mtbc:IQueuedBuild" Default="[BuildServer.QueueBuild(ChainedBuildRequest)]" Name="QueuedChainedBuild" />
</Sequence.Variables>
更为棘手的是将当前内部版本号添加到新ProcessParameters
的{{1}}中。
我可以看到如何使用上面IBuildRequest
的{{1}}属性添加代码行,但似乎每行必须返回一些内容。但是我想要运行的一些行只调用一个没有返回值的方法,例如将新元素添加到Default
字典中时。这是我试过的......
<Variable>
所以,我的第一个问题是......是否可以在序列变量中运行没有返回值的代码行?
我对这些技术很陌生,所以可能错过了一些基本的东西。如果某人有不同的方法将前一个版本号传递给下一个版本,那么也会非常感激。
非常感谢你有这么远: - )
答案 0 :(得分:1)
感谢@Jason Stangroome原创博客文章,并指导我进行InvokeMethod活动。在优秀WCF & WF Samples for .NET 4的帮助下,我更新了XAML:
<Sequence DisplayName="Queue chained build" sap:VirtualizedContainerService.HintSize="222,146">
<Sequence.Variables>
<Variable x:TypeArguments="mtbc:IBuildDefinition" Default="[BuildServer.GetBuildDefinition(BuildDetail.TeamProject, buildChainItem)]" Name="ChainedBuildDefinition" />
<Variable x:TypeArguments="mtbc:IBuildRequest" Default="[BuildServer.CreateBuildRequest(ChainedBuildDefinition.Uri)]" Name="ChainedBuildRequest" />
<Variable x:TypeArguments="x:String" Default="[ChainedBuildRequest.ProcessParameters]" Name="NextBuildProcessParameters" />
<Variable x:TypeArguments="scg:IDictionary(x:String, x:Object)" Default="[WorkflowHelpers.DeserializeProcessParameters(NextBuildProcessParameters)]" Name="DeserializedParameters" />
<Variable x:TypeArguments="mtbc:IQueuedBuild" Name="QueuedChainedBuild" />
</Sequence.Variables>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<InvokeMethod DisplayName="Add current build number to ProcessParameters" sap:VirtualizedContainerService.HintSize="299.663333333333,127.553333333333" MethodName="Add">
<InvokeMethod.TargetObject>
<InArgument x:TypeArguments="scg:IDictionary(x:String, x:Object)">[DeserializedParameters]</InArgument>
</InvokeMethod.TargetObject>
<InArgument x:TypeArguments="x:String">["ParentBuildNumber"]</InArgument>
<InArgument x:TypeArguments="x:Object">[BuildDetail.BuildNumber]</InArgument>
</InvokeMethod>
<InvokeMethod DisplayName="Re-serialize ProcessParameters" sap:VirtualizedContainerService.HintSize="299.663333333333,127.553333333333" MethodName="SerializeProcessParameters" TargetType="mtbw:WorkflowHelpers">
<InvokeMethod.Result>
<OutArgument x:TypeArguments="x:String">[ChainedBuildRequest.ProcessParameters]</OutArgument>
</InvokeMethod.Result>
<InArgument x:TypeArguments="scg:IDictionary(x:String, x:Object)">[DeserializedParameters]</InArgument>
</InvokeMethod>
<InvokeMethod DisplayName="Queue Next Build" sap:VirtualizedContainerService.HintSize="299.663333333333,127.553333333333" MethodName="QueueBuild">
<InvokeMethod.Result>
<OutArgument x:TypeArguments="mtbc:IQueuedBuild">[QueuedChainedBuild]</OutArgument>
</InvokeMethod.Result>
<InvokeMethod.TargetObject>
<InArgument x:TypeArguments="mtbc:IBuildServer">[BuildServer]</InArgument>
</InvokeMethod.TargetObject>
<InArgument x:TypeArguments="mtbc:IBuildRequest">[ChainedBuildRequest]</InArgument>
</InvokeMethod>
<mtbwa:WriteBuildMessage sap:VirtualizedContainerService.HintSize="200,22" Importance="[Microsoft.TeamFoundation.Build.Client.BuildMessageImportance.High]" Message="[String.Format("Queued chained build '{0}'", buildChainItem)]" mva:VisualBasic.Settings="Assembly references and imported namespaces serialized as XML namespaces" />
</Sequence>