I have a project which utilizes many global constants. Eventually I am planning to extract some parts of the program and create assemblies of its own.
Is it worthy (or is it possible?) to create an assembly for global constants alone (viz, GlobalConstants.dll), so that I can use this assembly in future assemblies?
This method will help me do less coding, and I can keep the same name for the constants across the projects.