-
Notifications
You must be signed in to change notification settings - Fork 4.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Check both csc.exe and vbc.exe as filename to exclude #69221
Conversation
@@ -107,7 +107,6 @@ private bool CheckPackages(TextWriter textWriter) | |||
PathComparer.Equals(relativeFileName, "Icon.png") || | |||
PathComparer.Equals(relativeFileName, "Init.cmd") || | |||
PathComparer.Equals(relativeFileName, "VS.Tools.Roslyn.nuspec") || | |||
PathComparer.Equals(relativeFileName, "csc.exe") || |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jaredpar should this actually have been vbc?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure looks like it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've updated the PR to exclude vbc.exe also instead of getting csc.exe excluded twice
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll wait for @jaredpar to take a look before merging, but otherwise LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's definitely a typo: whether the intent was csi
or vbc
I cannot decide though.
@@ -107,7 +107,6 @@ private bool CheckPackages(TextWriter textWriter) | |||
PathComparer.Equals(relativeFileName, "Icon.png") || | |||
PathComparer.Equals(relativeFileName, "Init.cmd") || | |||
PathComparer.Equals(relativeFileName, "VS.Tools.Roslyn.nuspec") || | |||
PathComparer.Equals(relativeFileName, "csc.exe") || |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll wait for @jaredpar to take a look before merging, but otherwise LGTM
I used my identical subexpression analyzer to see if I missed certain exceptions.
This was one diagnostic found that wasn't wrong.
was checked twice.