diff --git a/BREPipelineFramework/BREPipelineFramework.SampleInstructions/Instructions/TransformationInstruction.cs b/BREPipelineFramework/BREPipelineFramework.SampleInstructions/Instructions/TransformationInstruction.cs index 4bc89a3..673c202 100644 --- a/BREPipelineFramework/BREPipelineFramework.SampleInstructions/Instructions/TransformationInstruction.cs +++ b/BREPipelineFramework/BREPipelineFramework.SampleInstructions/Instructions/TransformationInstruction.cs @@ -8,6 +8,7 @@ using Microsoft.BizTalk.Streaming; using BREPipelineFramework.Helpers.Tracing; using Microsoft.BizTalk.Component; +using Microsoft.XLANGs.BaseTypes; namespace BREPipelineFramework.SampleInstructions.Instructions { @@ -89,7 +90,7 @@ public void Execute(ref Microsoft.BizTalk.Message.Interop.IBaseMessage inmsg, Mi { XPathDocument input = new XPathDocument(inmsg.BodyPart.GetOriginalDataStream()); pc.ResourceTracker.AddResource(input); - dynamic transform = transformMetaData.Transform; + ITransform transform = transformMetaData.Transform; Stream output = new VirtualStream(); TraceManager.PipelineComponent.TraceInfo("{0} - Applying transformation {1} to the message", callToken, mapName);