I have a .NET C# 2.0 Project and it refers to many .xml files, i'd need these files when i port my project to another location or distribute it. I'm currently not interested in making it as a setup.exe file. I want to to be standalone. currently i've got all of them in a folder "FILES" within my project. So what i want to know is
- Can i pack all these XML files inside a dll, so that it's secure and portable? If so how to do it?
- When i build the program the FILES folder is not copied. How can i make it copy it as well?