1

在 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
    {
    }
}
4

1 回答 1

1

找到了。我暂时使用了 beta 6。但忘记将 _ViewImports 重命名为 _GlobalImport

于 2015-07-04T12:53:23.357 回答