Add TagHelperFactsService
This commit is contained in:
parent
319c535224
commit
53ac097ce4
|
|
@ -0,0 +1,12 @@
|
|||
// Copyright (c) .NET Foundation. All rights reserved.
|
||||
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
||||
|
||||
using System.ComponentModel.Composition;
|
||||
|
||||
namespace Microsoft.VisualStudio.LanguageServices.Razor
|
||||
{
|
||||
[Export(typeof(RazorTagHelperFactsService))]
|
||||
internal class DefaultRazorTagHelperFactsService : RazorTagHelperFactsService
|
||||
{
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
// Copyright (c) .NET Foundation. All rights reserved.
|
||||
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
||||
|
||||
namespace Microsoft.VisualStudio.LanguageServices.Razor
|
||||
{
|
||||
public abstract class RazorTagHelperFactsService
|
||||
{
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue