You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Usually it'd be preferable to just construct the Identifier ourselves, but the opportunity to inject parse options lets us control the LanguageVersion which needs to be high enough not to consider nameof an error
Copy file name to clipboardExpand all lines: CodeConverter/CSharp/VBToCSProjectContentsConverter.cs
+2-10Lines changed: 2 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -20,14 +20,6 @@ internal class VBToCSProjectContentsConverter : IProjectContentsConverter
20
20
privateCSharpCompilation_csharpViewOfVbSymbols;
21
21
privateProject_convertedCsProject;
22
22
23
-
/// <summary>
24
-
/// It's really hard to change simplifier options since everything is done on the Object hashcode of internal fields.
25
-
/// I wanted to avoid saying "default" instead of "default(string)" because I don't want to force a later language version on people in such a common case.
26
-
/// This will have that effect, but also has the possibility of failing to interpret code output by this converter.
27
-
/// If this has such unintended effects in future, investigate the code that loads options from an editorconfig file
//Perf heuristic: Decrease memory pressure on the simplification phase by converting large files first https://github.com/icsharpcode/CodeConverter/issues/524#issuecomment-590301594
0 commit comments