Skip to content

Commit 4fea282

Browse files
committed
Fix namespace
1 parent 70421b3 commit 4fea282

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

src/Razor/src/Microsoft.AspNetCore.Razor.LanguageServer/ProjectSystem/MonitorProjectConfigurationFilePathEndpoint.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
using Microsoft.CommonLanguageServerProtocol.Framework;
1616
using Microsoft.Extensions.Logging;
1717

18-
namespace Microsoft.AspNetCore.Razor.LanguageServer;
18+
namespace Microsoft.AspNetCore.Razor.LanguageServer.ProjectSystem;
1919

2020
[LanguageServerEndpoint(LanguageServerConstants.RazorMonitorProjectConfigurationFilePathEndpoint)]
2121
internal class MonitorProjectConfigurationFilePathEndpoint : IRazorNotificationHandler<MonitorProjectConfigurationFilePathParams>, IDisposable

src/Razor/src/Microsoft.AspNetCore.Razor.LanguageServer/ProjectSystem/MonitorProjectConfigurationFilePathParams.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) .NET Foundation. All rights reserved.
22
// Licensed under the MIT license. See License.txt in the project root for license information.
33

4-
namespace Microsoft.AspNetCore.Razor.LanguageServer.EndpointContracts;
4+
namespace Microsoft.AspNetCore.Razor.LanguageServer.ProjectSystem;
55

66
internal class MonitorProjectConfigurationFilePathParams
77
{

src/Razor/src/Microsoft.AspNetCore.Razor.LanguageServer/RazorLanguageServer.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
using Microsoft.AspNetCore.Razor.LanguageServer.LinkedEditingRange;
1919
using Microsoft.AspNetCore.Razor.LanguageServer.MapCode;
2020
using Microsoft.AspNetCore.Razor.LanguageServer.ProjectContexts;
21+
using Microsoft.AspNetCore.Razor.LanguageServer.ProjectSystem;
2122
using Microsoft.AspNetCore.Razor.LanguageServer.Refactoring;
2223
using Microsoft.AspNetCore.Razor.LanguageServer.SignatureHelp;
2324
using Microsoft.AspNetCore.Razor.LanguageServer.WrapWithTag;

src/Razor/test/Microsoft.AspNetCore.Razor.LanguageServer.Test/MonitorProjectConfigurationFilePathEndpointTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
using System.Linq;
99
using System.Threading;
1010
using System.Threading.Tasks;
11-
using Microsoft.AspNetCore.Razor.LanguageServer.EndpointContracts;
11+
using Microsoft.AspNetCore.Razor.LanguageServer.ProjectSystem;
1212
using Microsoft.AspNetCore.Razor.Test.Common;
1313
using Microsoft.CodeAnalysis.Razor;
1414
using Microsoft.Extensions.Logging;

0 commit comments

Comments
 (0)