在 beta 5 中,VS2015 中的智能感知不适用于 taghelpers。我通过将此存根添加到我的项目中修复了缺少的属性错误消息
我怎样才能解决这个问题?
using System;
namespace Microsoft.AspNet.Mvc
{
/// <summary>
/// Specifies that a property or parameter value should be initialized via the dependency injection
/// container for activated types.
/// </summary>
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Parameter, AllowMultiple = false)]
public sealed class ActivateAttribute : Attribute
{
}
}