2012-07-27 44 views

回答

0

一个小控制台应用程序,有这样的事情:

var path = <YourDirectory>; 
var newValue = <a new Value in the new line>; 
var files = Directory.GetFiles(path, "web.config", SearchOption.AllDirectories); 

foreach (var file in files) 
{ 
    var doc = XDocument.Load(file); 
    var parentElement = doc.Element("blabla");//get the right parent Node 
    parentElement.Add(new XElement("new name"), newValue);//well put what you want in it : attributes, values... 
    doc.Save(file); 
} 

编辑

对于你的情况,只是把在主

var path = @"C:\Tools"; 
var newAssembly = @"System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"; 
var files = Directory.GetFiles(path, "Web.config", SearchOption.AllDirectories); 

foreach (var file in files) 
{ 
     var doc = XDocument.Load(file); 
     var parentElement = doc.Descendants("assemblies").FirstOrDefault(); 
     if (parentElement != null) 
     { 
      var newNode = new XElement("add", new XAttribute("assembly", newAssembly)); 
      parentElement.Add(newNode); 
     } 
       doc.Save(file); 
} 
+0

感谢您的回答,怎么样使用控制台应用程序在多个asp.net mvc项目中添加程序集引用? – 2012-07-30 05:40:53

+0

@ManickamChidhambaram请参阅编辑。顺便说一下,你可以尝试... – 2012-07-30 07:01:50

+0

感谢您的回答。它工作正常。 – 2012-07-30 11:06:21