Currently I have a custom Web Part, deployed as a Feature, and it accesses an XML file as follows:
string sUri = @"C:\inetpub\wwwroot\wss\VirtualDirectories\80" + @"\wpresources\links.xml";
ds = new DataSet(); ds.ReadXml(sUri);
What is the correct way to include an XML file as part of a SharePoint Feature deployment?