Add TagHelperFactsService

This commit is contained in:
Ryan Nowak 2017-03-20 15:50:17 -07:00
parent 319c535224
commit 53ac097ce4
2 changed files with 21 additions and 0 deletions

View File

@ -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
{
}
}

View File

@ -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
{
}
}