|
|
|
|
|
by staticshock
4419 days ago
|
|
You actually don't have to list every single file in a csproj. You can use this MSBuild syntax to include all file recursively: <Compile Include=".\**\*.cs" />
The downside is that VS doesn't automatically pick up on the file system event notifications in that case, so you have to unload/reload the project whenever a file gets added. |
|