This commit is contained in:
Ryan Brandenburg 2022-11-18 09:20:09 -08:00
Родитель b763bc4192
Коммит b80e80e670
3 изменённых файлов: 1 добавлений и 6 удалений

Просмотреть файл

@ -10,7 +10,7 @@ internal static class RazorCodeDocumentExtensions
{
private static readonly object s_unsupportedKey = new();
public static bool IsUnsupported(this RazorCodeDocument document)
internal static bool IsUnsupported(this RazorCodeDocument document)
{
if (document is null)
{

Просмотреть файл

@ -8,10 +8,6 @@
<Using Alias="Range" Include="Microsoft.VisualStudio.LanguageServer.Protocol.Range" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\src\Microsoft.AspNetCore.Razor.LanguageServer.Common\Extensions\RazorCodeDocumentExtensions.cs" LinkBase="Shared" />
</ItemGroup>
<ItemGroup>
<None Include="xunit.runner.json" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>

Просмотреть файл

@ -10,7 +10,6 @@ using Microsoft.AspNetCore.Razor.LanguageServer;
using Microsoft.AspNetCore.Razor.LanguageServer.Common.Extensions;
using Microsoft.AspNetCore.Razor.LanguageServer.Protocol;
using Microsoft.AspNetCore.Razor.LanguageServer.Test.Common;
using Microsoft.AspNetCore.Razor.Test.Common;
using Microsoft.Extensions.Logging;
using Microsoft.VisualStudio.LanguageServer.Protocol;
using Microsoft.VisualStudio.LanguageServerClient.Razor.Extensions;