使用XSD.exe生成C#帮助程序类:处理导入的模式失败

时间:2009-06-18 10:53:25

标签: c# xml import xsd xsd.exe

我想使用XSD.exe工具(来自VS2008 SDK)从KML2.2 xml schema生成C#帮助文件。使用KML2.1,该工具工作正常。但是,KML2.2架构包含指向other schemas的导入标记,导致XSD.exe崩溃。

这是我收到的错误消息:

C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Sample
s\Sdm> xsd.exe d:\temp\kml22.xsd /c /l:CS /n:Google.Kml22 /o:D:\temp\

Microsoft (R) Xml Schemas/DataTypes support utility
[Microsoft (R) .NET Framework, Version 2.0.50727.3038]
Copyright (C) Microsoft Corporation. All rights reserved.

Schema validation warning: The 'http://www.w3.org/2005/Atom:author' element is
 not declared. Line 311, position 12.
Schema validation warning: The 'http://www.w3.org/2005/Atom:link' element is not
 declared. Line 312, position 12.
Schema validation warning: The 'urn:oasis:names:tc:ciq:xsdschema:xAL:2.0:Address
Details' element is not declared. Line 314, position 12.

Warning: Schema could not be validated. Class generation may fail or may produce
 incorrect results.

Error: Error generating classes for schema 'd:\temp\kml22'.
  - The element 'http://www.w3.org/2005/Atom:author' is missing.

您有什么建议我如何生成我的C#帮助文件?

2 个答案:

答案 0 :(得分:6)

您必须在命令行中指定所涉及的所有XSD,包括导入。 Here's一篇博文,附有一个例子。

答案 1 :(得分:0)

我写了一个快速的LinqPad脚本,让XSD.EXE做我的出价..复制/粘贴到LinqPad,更改第3行指向你的XSD,按F5,和TADA!

void Main()
{
    var file = @"C:\.... some.xsd";
    Do(file);
    files.Dump();

    ("xsd.exe \"" + string.Join("\" \"", files) + "\" /classes").Dump();
}

private void Do(string file)
{
    file = file.ToLower();

    var dir = Path.GetDirectoryName(file);
    var contents = File.ReadAllText(file);
    var regex = @"schemaLocation=""(.*?)""";

    if (files.Contains(file))
    {
        return;
    }

    files.Add(file);

    var toProcess = Regex.Matches(contents, regex).OfType<Match>().Select (m => m.Groups[1].Value).Select (m => 
    {
        if (Path.IsPathRooted(m))
        {
            return m;
        }
        else
        {
            return Path.GetFullPath(Path.Combine(dir, m));
        }
    }).Select (m => m.ToLower()).Where (m => !files.Contains(m)).ToList();

    foreach (var nested in toProcess)
    {
        Do(nested);
    }
}
private List<string> files = new List<string>();

http://www.alexdresko.com/2015/10/08/xsd-exe-and-imports-a-solution/

了解详情