ベータ 5 では、VS2015 のインテリセンスはタグヘルパーでは機能しません。このスタブを自分のプロジェクトに追加して、欠落している属性のエラー メッセージを修正しました
どうすればこれを修正できますか?
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
{
}
}