We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 410203e commit 5c63c42Copy full SHA for 5c63c42
src/features/changeForwarding.ts
@@ -85,7 +85,7 @@ function forwardFileChanges(server: OmniSharpServer): IDisposable {
85
}
86
87
function isCSharpCodeFile(uri: Uri) : Boolean {
88
- let normalized = uri.path.toLocaleLowerCase();
+ const normalized = uri.path.toLocaleLowerCase();
89
return normalized.endsWith(".cs") || normalized.endsWith(".csx") || normalized.endsWith(".cake");
90
91
0 commit comments