Skip to content

Commit b25eea3

Browse files
authored
Merge pull request #6447 from davidwengier/UpdateFilename
Update filename to use for project info
2 parents 62e362e + 848de5f commit b25eea3

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
- Debug from .csproj and .sln [#5876](https://github.com/dotnet/vscode-csharp/issues/5876)
99

1010
## Latest
11+
* Update Roslyn version to 4.9.0-1.23502.8 (PR: [#6447](https://github.com/dotnet/vscode-csharp/pull/6447))
12+
* Update Razor project configuration file name (PR: [#70156](https://github.com/dotnet/roslyn/pull/70156))
13+
14+
## 2.5.?
1115
* Update Roslyn version to 4.9.0-1.23502.2 (PR: [#6463](https://github.com/dotnet/vscode-csharp/pull/6463))
1216
* Fix issue loading projects on .NET 8 RC2 (PR: [#70196](https://github.com/dotnet/roslyn/pull/70196))
1317
* Fix exception thrown by outdated version of ExternalAccess.RazorCompiler.dll (PR: [#70716](https://github.com/dotnet/roslyn/pull/70176))

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
}
3838
},
3939
"defaults": {
40-
"roslyn": "4.9.0-1.23502.2",
40+
"roslyn": "4.9.0-1.23502.8",
4141
"omniSharp": "1.39.7",
4242
"razor": "7.0.0-preview.23475.5",
4343
"razorOmnisharp": "7.0.0-preview.23363.1"
@@ -5434,4 +5434,4 @@
54345434
}
54355435
]
54365436
}
5437-
}
5437+
}

src/razor/src/razorLanguageServerClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ export class RazorLanguageServerClient implements vscode.Disposable {
243243
// TODO: When all of this code is on GitHub, should we just pass `--omnisharp` as a flag to rzls, and let it decide?
244244
if (!options.usingOmniSharp) {
245245
args.push('--projectConfigurationFileName');
246-
args.push('project.razor.vscode.json');
246+
args.push('project.razor.vscode.bin');
247247
args.push('--DelegateToCSharpOnDiagnosticPublish');
248248
args.push('true');
249249
args.push('--UpdateBuffersForClosedDocuments');

0 commit comments

Comments
 (0)