Add workaround for current tooling

We don't want to put this in one of the product assemblies because that
would undo the API review xD
This commit is contained in:
Ryan Nowak 2019-07-19 11:08:19 -07:00 committed by Ryan Nowak
parent 7bf660947b
commit 3f02894057
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
namespace Microsoft.AspNetCore.Components
{
// This is a temporary workaround for the fact that public previews of VS look for
// this type. Without this the tooling won't understand bind or event handlers.
//
// This has already gotten better in 16.3 and we look for IComponent rather
// than specific implementation details.
public static class BindMethods
{
}
}