Change Default Name of Generated Binlogs
Consider changing the default msbuild.binlog name to <projectOrSlnName>.binlog.
Scenarios:
- For devs that deal with many binlogs, renaming them/placing a name in the command line for each invocation can be a pain.
- Improves the "right click->pick binlog" experience for those that collect many binlogs but don't rename them.
- Sharing binlogs between any developers.

This should be on MSBuild I think.
I thought about this, and making this change in MSBuild would be a breaking change unfortunately. Many people have their CI set up with just /bl and they rely by convention on the log file name being msbuild.binlog. I don't think we should risk breaking this at this point.
I, too, wish it used the project/solution name by default instead of fixed msbuild, but this is historically how the text logs behaved. One can argue that there's value in having the name predictable by default (so one can author CI to upload the log for example).
Maybe we could add something like /bl:_ and treat that as "infer binlog name from the project being built". But that's not intuitive.
Maybe we could add something like /bl:_
I'd appreciate something like this but it doesn't sound like there's a way to make it:
- Easy to do (some other similar/short flag)
- Intuitive
/bln? (binlognamed)
Even then not many people would use it.
Feel free to close, glad I got to grumble about it 🙂