我正在尝试使用 C# 和 Linq to XML 创建一个 XML 文件,但是遇到了 nant 命名空间的问题。
var myXElement = new XElement("project", new XAttribute("name", "MySystemName"), new XAttribute("default", "myNAntTargetName"), new XAttribute("xmlns", "http://nant.sf.net/schemas/nant.xsd"));
myXElement.Save("c:\foo.xml");
因为我试图强制命名空间 XAtrribute (到http://nant.sf.net/schemas/nant.xsd) .Save 失败,说:
XmlException 未处理:前缀 '' 不能在同一起始元素标记内从 '' 重新定义为 ' http://nant.sf.net/schemas/nant.xsd '。
如果我只是删除命名空间属性,文件保存得很好,但我需要其中的命名空间,否则我的 NAnt 命令会失败。
有什么建议么?