如何在TFS中反序列化和序列化构建过程参数

时间:2014-03-26 07:21:46

标签: c# xaml tfs build workflow-foundation-4

我正在尝试使用TFS 2013 API创建新的构建定义。我必须引用的流程模板包含几个自定义活动和参数。在创建构建定义时,需要动态更新某些属性值。所以我尝试使用下面的代码反序列化过程参数:

IDictionary<string, object> processParams = WorkflowHelpers.DeserializeProcessParameters(defaultTemplate.Parameters);

此代码总是抛出异常:

An unhandled exception of type 'System.Xaml.XamlObjectWriterException' occurred in System.Xaml.dll

Additional information: No matching constructor found on type 'System.Activities.Activity'. You can use the Arguments or FactoryMethod directives to construct this type.

这真是令人沮丧,我还无法摆脱这个错误。

我还尝试使用以下代码反序列化流程参数:

using (StringReader stringReader = new StringReader(parameterValues))
{
    object obj = XamlServices.Load(
          ActivityXamlServices.CreateReader(
              new XamlXmlReader((TextReader)stringReader, new XamlXmlReaderSettings { LocalAssembly  = System.Reflection.Assembly.GetExecutingAssembly() }
    )));
}

这有效,但当我使用XamlServices.Save(XamlWriter writer, object instance)方法再次序列化时,参数发生了变化,与构建工作流程不兼容。

那么,我如何更新构建过程参数呢? WorkflowHelpers类可以以其他方式使用吗?或者是否有任何其他方法来更新流程参数,以便它反映在构建定义中。任何帮助都非常感谢。

1 个答案:

答案 0 :(得分:3)

现在工作正常。 以下是新代码:

IDictionary<string, object> processParams = WorkflowHelpers.DeserializeProcessParameters(defaultTemplate.ProcessParameters);

我需要传递defaultTemplate.Parameters

而不是defaultTemplate.ProcessParameters