using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; using System.Xml; using Microsoft.Dynamics.IntegrationFramework.Transform; using tmxEDITransformsX12.SharedXSD; using tmxEDITransformsX12.Transform820XSD; namespace TransformTest { class Program { static void Main(string[] args) { FileStream input = new FileStream("C:\\Test.edi", FileMode.Open); FileStream output = new FileStream("C:\\Output.xml", FileMode.OpenOrCreate); tmxEDITransformsX12.Transform820 transform = new tmxEDITransformsX12.Transform820(); transform.Transform(input, output, ""); } } }
2020 release wave 2 Installed product version : 10.0.14 (10.0.605.20015) Installed platform version : Update38 (7.0.5778.41504)
Simple enough, but even google knows nothing about the following two lines:
ReplyDeleteusing tmxEDITransformsX12.SharedXSD;
using tmxEDITransformsX12.Transform820XSD;