Here’s a cool article on simplifying your csproj files by using glob pattern for paths and file extensions
https://mykeels.medium.com/using-glob-patterns-in-csproj-files-95122c7f0870
Glob patterns are like wildcard-based rules that match file paths. They let you specify file patterns using wildcards like * and ** to match multiple files with similar characteristics.
In this case, we want to target all C# files (*.cs) within certain directories without listing each file individually.