I have a class that loads an xml file using the following:
Path.Combine( AppDomain.CurrentDomain.BaseDirectory, "Xml", documentName );
Documents that are downloaded are set to copy to the output directory. However, when I run mstest, the xml file is not copied to BaseDirectory.
Does anyone know how I can do this?
source share