In a C# solution, Where do you declare solution-scope enums?

c#, enums, projects-and-solutions

Solution

You'll need to declare them within a Project which all other projects in the solution reference.

Problem

In a C# solution, Where do you declare solution-scope enums ?

Original source