added code to put a copyright notice in each format file

added code to put a copyright notice in each genmac file
This commit is contained in:
2012-10-25 18:48:42 +00:00
parent 29f2d79fed
commit 8284c66da2
2 changed files with 3 additions and 0 deletions

View File

@@ -13,7 +13,9 @@ namespace fmtxml
{
MyPath = path;
XmlDocument xmldoc = new XmlDocument();
XmlComment copyright = xmldoc.CreateComment("Proprietary Information - Copyright 2012 - Volian Enterprises, Inc. All rights reserved.");
XmlElement top = xmldoc.CreateElement("PlantFormat");
xmldoc.AppendChild(copyright);
xmldoc.AppendChild(top);
try
{