I've developed a program that utilizes Settings
within my C# program. When I build the program, a separate XML Config
file is created, that contains the settings of the program.
I've been able to merge other files, like the .dll's
and manifest file I use for the program, into the executable. I've tried the suggested solution of putting it as a resource, but I get an error saying that it can't find the file. Secondly, the user of the program can change the settings, and I think that the Settings
being implemented within the Resources
isn't the best way to go. I've also set the Build Action
to Embedded Resource
and it still creates a separate XML Config
file. How could I also merge the XML Config
file with the executable?