Skip to content

Commit dde8119

Browse files
authored
Merge pull request #2572 from OmniSharp/jorobich/add-razor-ea
2 parents 8fa31b6 + 6bff13d commit dde8119

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Changelog
22
All changes to the project will be documented in this file.
33

4+
## [1.39.10] - 2023-10-05
5+
* Add RazorComplier EA to support razor generators (PR: [#2572](https://github.com/OmniSharp/omnisharp-roslyn/pull/2572))
6+
47
## [1.39.9] - 2023-10-04
58
* Add Kind parameter to InlayHint (PR: [#2570](https://github.dev/OmniSharp/omnisharp-roslyn/pull/2570))
69
* Do not include commit characters if the typed span is empty (PR: [#2569](https://github.com/OmniSharp/omnisharp-roslyn/pull/2569))

Directory.Packages.props

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
<PackageVersion Include="Microsoft.CodeAnalysis.Workspaces.Common" Version="$(RoslynPackageVersion)" />
4242
<PackageVersion Include="Microsoft.CodeAnalysis.ExternalAccess.OmniSharp" Version="$(RoslynPackageVersion)" />
4343
<PackageVersion Include="Microsoft.CodeAnalysis.ExternalAccess.OmniSharp.CSharp" Version="$(RoslynPackageVersion)" />
44+
<PackageVersion Include="Microsoft.CodeAnalysis.ExternalAccess.RazorCompiler" Version="$(RoslynPackageVersion)" />
4445

4546
<PackageVersion Include="Microsoft.Extensions.Caching.Memory" Version="$(MicrosoftExtensionPackageVersion)" />
4647
<PackageVersion Include="Microsoft.Extensions.Configuration" Version="$(MicrosoftExtensionPackageVersion)" />

src/OmniSharp.Roslyn/OmniSharp.Roslyn.csproj

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
<PackageReference Include="Microsoft.CodeAnalysis.Common" />
1717
<PackageReference Include="Microsoft.CodeAnalysis.Workspaces.Common" />
1818
<PackageReference Include="Microsoft.CodeAnalysis.ExternalAccess.OmniSharp" />
19+
<!-- Not directly referenced but needed for Razor source generators -->
20+
<PackageReference Include="Microsoft.CodeAnalysis.ExternalAccess.RazorCompiler" ReferenceOutputAssembly="false" />
1921
<PackageReference Include="Microsoft.Extensions.Caching.Memory" />
2022
<PackageReference Include="System.ComponentModel.Composition" />
2123
<PackageReference Include="System.Reflection.DispatchProxy" />

0 commit comments

Comments
 (0)