I have a Silverlght library project that produces a dll
output. This project utilises a xml file for parsing etc.
There is a second project that references the Dll project to get the built dll
files and package into a xap.
However, when I run my silverlight web application project, it gives me an error that there is no xyz.xml file found
What properties of the .xml file do I need to change so tha it goes with the dll in the xap file?
EDIT
Setting the Build action to Embedded Resource gives the timing.xml as a separate file in the bin/Debug folder when looked in Windows Explorer.
Setting the Build action to Resource does not give timing.xml as a separate file in the bin.Debug folder, but only a single dll
. I don't know if it gets packaged with the .dll file in this way but it is still not in the .xap file that is prepared after that.
The project that produces dll is referenced by another project that produces xap.