I have a series of properties I need to set in ~15 projects. Is there a way to put these properties in a single file and have all the project files reference the one file using some sort of import directive rather than duplicating the properties in each project file?
EDIT: To clarify, I'm talking about <PropertyGroup>
elements within the csproj file. All the projects need the same series of <PropertyGroup>
settings. These elements set properties like DebugSymbols
or DefineDebug
, and are not used for referencing source files.