Skip to content

Commit

Permalink
Merge pull request dotnet#6447 from davidwengier/UpdateFilename
Browse files Browse the repository at this point in the history
Update filename to use for project info
  • Loading branch information
davidwengier authored Oct 4, 2023
2 parents 62e362e + 848de5f commit b25eea3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
- Debug from .csproj and .sln [#5876](https://github.com/dotnet/vscode-csharp/issues/5876)

## Latest
* Update Roslyn version to 4.9.0-1.23502.8 (PR: [#6447](https://github.com/dotnet/vscode-csharp/pull/6447))
* Update Razor project configuration file name (PR: [#70156](https://github.com/dotnet/roslyn/pull/70156))

## 2.5.?
* Update Roslyn version to 4.9.0-1.23502.2 (PR: [#6463](https://github.com/dotnet/vscode-csharp/pull/6463))
* Fix issue loading projects on .NET 8 RC2 (PR: [#70196](https://github.com/dotnet/roslyn/pull/70196))
* Fix exception thrown by outdated version of ExternalAccess.RazorCompiler.dll (PR: [#70716](https://github.com/dotnet/roslyn/pull/70176))
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
}
},
"defaults": {
"roslyn": "4.9.0-1.23502.2",
"roslyn": "4.9.0-1.23502.8",
"omniSharp": "1.39.7",
"razor": "7.0.0-preview.23475.5",
"razorOmnisharp": "7.0.0-preview.23363.1"
Expand Down Expand Up @@ -5434,4 +5434,4 @@
}
]
}
}
}
2 changes: 1 addition & 1 deletion src/razor/src/razorLanguageServerClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ export class RazorLanguageServerClient implements vscode.Disposable {
// TODO: When all of this code is on GitHub, should we just pass `--omnisharp` as a flag to rzls, and let it decide?
if (!options.usingOmniSharp) {
args.push('--projectConfigurationFileName');
args.push('project.razor.vscode.json');
args.push('project.razor.vscode.bin');
args.push('--DelegateToCSharpOnDiagnosticPublish');
args.push('true');
args.push('--UpdateBuffersForClosedDocuments');
Expand Down

0 comments on commit b25eea3

Please sign in to comment.