I have few config values which are static and not going to change frequently for my DLL project. I can add those config values in ProjectName.dll.config.
But then I have to ship ProjectName.dll.config with my ProjectName.dll. Also, I have to inform .dll consumers about this new config file (or change .dll consumers build code).
Is there a way I can store these config values in .dll itself? So I don't need to worry about shipping config files?