File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed
src/VisualStudio/Xaml/Impl/Implementation/LanguageServer Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change 1+ // Licensed to the .NET Foundation under one or more agreements.
2+ // The .NET Foundation licenses this file to you under the MIT license.
3+ // See the LICENSE file in the project root for more information.
4+
5+ using System ;
6+ using System . Composition ;
7+ using Microsoft . CodeAnalysis . Editor . Xaml ;
8+ using Microsoft . CodeAnalysis . Host . Mef ;
9+ using Microsoft . CodeAnalysis . LanguageServer ;
10+ using Microsoft . CodeAnalysis . LanguageServer . Handler . ServerLifetime ;
11+
12+ namespace Microsoft . VisualStudio . LanguageServices . Xaml . LanguageServer ;
13+
14+ [ ExportLspServiceFactory ( typeof ( LspServiceLifeCycleManager ) , StringConstants . XamlLspLanguagesContract ) , Shared ]
15+ [ method: ImportingConstructor ]
16+ [ method: Obsolete ( MefConstruction . ImportingConstructorMessage , error : true ) ]
17+ internal sealed class XamlLifeCycleManager ( LspWorkspaceRegistrationService lspWorkspaceRegistrationService ) : LspServiceLifeCycleManager . LspLifeCycleManagerFactory ( lspWorkspaceRegistrationService ) ;
You can’t perform that action at this time.
0 commit comments