Remove invalid characters from issue titles - Apparently newlines are valid in GitHub issue titles! This code makes sure they are stripped out, or else it breaks the TSV file because it has extra newlines.
Fix compiler warning about re-throwing an exception
Add dotnet/msbuild to repos.json
The first change is very important because some repos (dotnet/aspnetcore) have newlines (hex 0x0A) in issue titles! Yes, GitHub actually allows that! There was exactly 1 place where we weren't stripping those characters so I fixed that. The other 2 are just minor fixes/improvements.
3 fixes:
The first change is very important because some repos (dotnet/aspnetcore) have newlines (hex 0x0A) in issue titles! Yes, GitHub actually allows that! There was exactly 1 place where we weren't stripping those characters so I fixed that. The other 2 are just minor fixes/improvements.