Мне не удалось найти способ заставить CodeSmith автоматически решать эту проблему, поэтому я решил написать собственный метод в файле Code Behind, чтобы справиться с этим.
Несколько заметок:
- Файлы proj являются XML, и, таким образом, их довольно легко редактировать, но фактический узел ItemGroup, содержащий список файлов, включенных в проект, на самом деле не помечен каким-либо особым образом. Я закончил тем, что выбрал узел «ItemGroup», который имеет «Содержит» дочерние узлы, но может быть лучший способ определить, какой из них вы должны использовать.
- Я рекомендую делать все изменения файла proj сразу, а не каждый файл создается / обновляется. В противном случае, если вы запустите генерацию из Visual Studio, вы можете получить поток «Этот элемент изменился, вы хотите перезагрузить»
- Если ваши файлы находятся под контролем исходного кода (они правы ?!), вам нужно будет обработать проверку файлов и добавить их в систему контроля версий вместе с редактированием файлов proj.
Вот (более или менее) код, который я использовал для добавления файла в проект:
/// <summary>
/// Adds the given file to the indicated project
/// </summary>
/// <param name="project">The path of the proj file</param>
/// <param name="projectSubDir">The subdirectory of the project that the
/// file is located in, otherwise an empty string if it is at the project root</param>
/// <param name="file">The name of the file to be added to the project</param>
/// <param name="parent">The name of the parent to group the file to, an
/// empty string if there is no parent file</param>
public static void AddFileToProject(string project, string projectSubDir,
string file, string parent)
{
XDocument proj = XDocument.Load(project);
XNamespace ns = "http://schemas.microsoft.com/developer/msbuild/2003";
var itemGroup = proj.Descendants(ns + "ItemGroup").FirstOrDefault(x => x.Descendants(ns + "Compile").Count() > 0);
if (itemGroup == null)
throw new Exception(string.Format("Unable to find an ItemGroup to add the file {1} to the {0} project", project, file));
//If the file is already listed, don't bother adding it again
if(itemGroup.Descendants(ns + "Compile").Where(x=>x.Attribute("Include").Value.ToString() == file).Count() > 0)
return;
XElement item = new XElement(ns + "Compile",
new XAttribute("Include", Path.Combine(projectSubDir,file)));
//This is used to group files together, in this case the file that is
//regenerated is grouped as a dependent of the user-editable file that
//is not changed by the code generator
if (string.IsNullOrEmpty(parent) == false)
item.Add(new XElement(ns + "DependentUpon", parent));
itemGroup.Add(item);
proj.Save(project);
}