A
AutoTrackerPlus
I have a .Net 2005 windows application. In a method, I do the following to
load an XML file..
System.Xml.XmlDocument singleFax = new System.Xml.XmlDocument();
singleFax.Load(Path.Combine(Application.StartupPath, NameOfFile.xml));
The XML file I load in the code above needs to be installed with the
apllication... how do I add the XML file to the deploy? Right now, I just
use the "Publish Now" feature by selecting properties and clicking the
"Publish" tab in the project file... I'm just not sure how to add this file
(the XML file) to the deployment "package".
Thanks in advance!
Brian
load an XML file..
System.Xml.XmlDocument singleFax = new System.Xml.XmlDocument();
singleFax.Load(Path.Combine(Application.StartupPath, NameOfFile.xml));
The XML file I load in the code above needs to be installed with the
apllication... how do I add the XML file to the deploy? Right now, I just
use the "Publish Now" feature by selecting properties and clicking the
"Publish" tab in the project file... I'm just not sure how to add this file
(the XML file) to the deployment "package".
Thanks in advance!
Brian