Skip to content

Commit

Permalink
Merge pull request #13 from ejball/events
Browse files Browse the repository at this point in the history
  • Loading branch information
ejball authored Jul 15, 2024
2 parents a62308a + be3c82c commit 1ba0936
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
6 changes: 1 addition & 5 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>

<PropertyGroup>
<VersionPrefix>2.2.0</VersionPrefix>
<VersionPrefix>2.3.0</VersionPrefix>
<LangVersion>11.0</LangVersion>
<Nullable>warnings</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
Expand Down Expand Up @@ -32,10 +32,6 @@
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>

<PropertyGroup>
<FacilityVersion>2.11.0</FacilityVersion>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Faithlife.Analyzers" Version="1.4.0" PrivateAssets="All" IncludeAssets="runtime; build; native; contentfiles; analyzers" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
Expand Down
6 changes: 6 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
# Release Notes

## 2.3.0

* Support events.

## 2.2.0

* Add document symbol handler.

## 2.1.0

* Fix definition handler for External members.
* Add reference handler.

Expand Down
2 changes: 1 addition & 1 deletion src/Facility.LanguageServer/Facility.LanguageServer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Facility.Definition" Version="$(FacilityVersion)" />
<PackageReference Include="Facility.Definition" Version="2.14.0" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="6.0.0" />
<PackageReference Include="OmniSharp.Extensions.LanguageServer" Version="0.19.7" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Facility.LanguageServer/FsdSyncHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public FsdSyncHandler(
IDictionary<DocumentUri, ServiceInfo> serviceInfos)
: base(router, configuration, serviceInfos)
{
m_parser = new FsdParser();
m_parser = new FsdParser(new FsdParserSettings { SupportsEvents = true });
}

public TextDocumentSyncOptions Options { get; } =
Expand Down

0 comments on commit 1ba0936

Please sign in to comment.