예제 #1
0
        private static void Main(string[] args)
        {
            //string dllPath = GetDllPath(args);
            var dllPath = @"D:\Projects\XsdGen\TestDLL\bin\Debug\TestDLL.dll";
            var assembly = Assembly.LoadFile(dllPath);

            var builder = new XsdBuilder();
            builder.Build(assembly);
        }
예제 #2
0
파일: Program.cs 프로젝트: liang0612/XsdGen
        private static void Main(string[] args)
        {
            //string dllPath = GetDllPath(args);
            var dllPath  = @"D:\Projects\XsdGen\TestDLL\bin\Debug\TestDLL.dll";
            var assembly = Assembly.LoadFile(dllPath);

            var builder = new XsdBuilder();

            builder.Build(assembly);
        }