Skip to content

Commit 0e6b60a

Browse files
committed
upgrade version in package.json
1 parent b6d9787 commit 0e6b60a

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "csharp",
33
"publisher": "muhammad-sammy",
4-
"version": "2.61.28",
4+
"version": "2.63.32",
55
"description": "Free/Libre C# support for vscode-compatible editors.",
66
"displayName": "C#",
77
"author": "Muhammad Sammy",

src/razor/src/razorLanguageServerClient.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export class RazorLanguageServerClient implements vscode.Disposable {
3737
private readonly vscodeType: typeof vscode,
3838
private readonly languageServerDir: string,
3939
private readonly razorTelemetryReporter: RazorTelemetryReporter,
40-
private readonly isCSharpDevKitActivated: boolean,
40+
// private readonly isCSharpDevKitActivated: boolean,
4141
private readonly env: NodeJS.ProcessEnv,
4242
private readonly dotnetExecutablePath: string,
4343
private readonly logger: RazorLogger
@@ -305,13 +305,13 @@ export class RazorLanguageServerClient implements vscode.Disposable {
305305

306306
// VS code will have a default session id when running under tests. Since we may still
307307
// report telemetry, we need to give a unique session id instead of the default value.
308-
function getSessionId(): string {
309-
const sessionId = vscode.env.sessionId;
308+
// function getSessionId(): string {
309+
// const sessionId = vscode.env.sessionId;
310310

311-
// 'somevalue.sessionid' is the test session id provided by vs code
312-
if (sessionId.toLowerCase() === 'somevalue.sessionid') {
313-
return randomUUID();
314-
}
311+
// // 'somevalue.sessionid' is the test session id provided by vs code
312+
// if (sessionId.toLowerCase() === 'somevalue.sessionid') {
313+
// return randomUUID();
314+
// }
315315

316-
return sessionId;
317-
}
316+
// return sessionId;
317+
// }

0 commit comments

Comments
 (0)