CSS智能感知不能在Visual Studio 2012旗舰版工作MVC 4项目(CSS Intel

2019-08-22 16:49发布

已经创建了一个全新的Visual Studio 2012旗舰版SP2 MVC4项目,但无法获得CSS类选择智能感知工作?

当我键入<p class="m" ....我应该得到的类“MyClass的”出现在智能感知下拉,但没有任何反应。

我在下面列出的文件是: \Views\Shared\_Layout.cshtml

有任何想法吗 ?

编辑:对品牌的新窗口重新安装VS2012 7系统(Mac OSX上运行Parallels 8),并以同样的方式仍然演戏。 也似乎对MVC 3项目相同。

安装扩展:

Answer 1:

尝试添加Web要点2012扩展的Visual Studio 2012: http://visualstudiogallery.msdn.microsoft.com/07d54d12-7133-4e15-becb-6f451ea3bea6?SRC=VSIDE

和/或

尝试添加的Microsoft Web开发工具的扩展。

我有这两个和使用相同的例子中,智能感知就像一个魅力。



Answer 2:

我尝试了所有上面提到的补救措施和建议。 这些都不在我的环境中工作。 据微软(在Microsoft Connect的错误号781048),他们还没有实现的MVC /剃刀文件CSS类智能感知,但是,这其中包括在未来的版本都在工作。

我有延长VS2012的智能感知,增加了一个解决方案,将增加智能感知到你的VS2012环境的一个10分钟的网络直播例子: 一个Visual Studio智能感知扩展

网上直播使用MEF扩展Visual Studio来添加扫描当前加载的项目的CSS类名称添加为一个智能感知完成一系列的智能感知完成源。 这里是CSS完成源类:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel.Composition;
using Microsoft.VisualStudio.Language.Intellisense;
using Microsoft.VisualStudio.Text;
using Microsoft.VisualStudio.Text.Operations;
using Microsoft.VisualStudio.Utilities;
using EnvDTE;
using System.Text.RegularExpressions;
using System.Configuration;
using System.Collections.Specialized;

namespace CssClassIntellisense
{
   internal class cssClassList
   {
      public string cssFileName { get; set; } //Intellisense Statement Completion Tab Name

      public HashSet<string> cssClasses { get; set; }
   }

   internal class CssClassCompletionSource : ICompletionSource
   {
    private CssClassCompletionSourceProvider m_sourceProvider;
    private ITextBuffer m_textBuffer;
    private List<Completion> m_compList;
    private Project m_proj;
    private string m_pattern = @"(?<=\.)[A-Za-z0-9_-]+(?=\ {|{|,|\ )";
    private bool m_isDisposed;

    //constructor
    public CssClassCompletionSource(CssClassCompletionSourceProvider sourceProvider, ITextBuffer textBuffer, Project proj)
    {
        m_sourceProvider = sourceProvider;
        m_textBuffer = textBuffer;
        m_proj = proj;
    }

    public void AugmentCompletionSession(ICompletionSession session, IList<CompletionSet> completionSets)
    {

        ITextSnapshot snapshot = session.TextView.TextSnapshot;
        SnapshotPoint currentPoint = (SnapshotPoint)session.GetTriggerPoint(snapshot);

        if (TargetAttribute.Inside(currentPoint))
        {
            var hash = new List<cssClassList>();
            //read any .css project file to get a distinct list of class names
            if (m_proj != null)
                foreach (ProjectItem _item in m_proj.ProjectItems)
                {
                    getCssFiles(_item, hash);
                }

            //Scan Current Editor's text buffer for any inline css class names 
            cssClassList cssclasslist = ScanTextForCssClassName(
                    "Inline", snapshot.GetText());

            //If file had any css class names add to hash of files with css class names
            if (cssclasslist != null)
                hash.Add(cssclasslist);

            var _tokenSpanAtPosition = FindTokenSpanAtPosition(session.GetTriggerPoint(m_textBuffer), session);

            foreach (cssClassList _cssClassList in hash)
            {
                m_compList = new List<Completion>();
                foreach (string str in _cssClassList.cssClasses.OrderBy(x => x))  //alphabetic sort
                    m_compList.Add(new Completion(str, str, str, null, null));

                completionSets.Add(new CompletionSet(
                    _cssClassList.cssFileName,    //the non-localized title of the tab 
                    _cssClassList.cssFileName,    //the display title of the tab
                    _tokenSpanAtPosition,
                    m_compList,
                    null));

            }
        }
    }

    private ITrackingSpan FindTokenSpanAtPosition(ITrackingPoint point, ICompletionSession session)
    {
        SnapshotPoint currentPoint = (session.TextView.Caret.Position.BufferPosition) - 1;
        ITextStructureNavigator navigator = m_sourceProvider.NavigatorService.GetTextStructureNavigator(m_textBuffer);
        TextExtent extent = navigator.GetExtentOfWord(currentPoint);
        return currentPoint.Snapshot.CreateTrackingSpan(extent.Span, SpanTrackingMode.EdgeInclusive);
    }


    private void getCssFiles(ProjectItem proj, List<cssClassList> hash)
    {
        foreach (ProjectItem _item in proj.ProjectItems)
        {
            if (_item.Name.EndsWith(".css") &&
                !_item.Name.EndsWith(".min.css"))
            {
                //Scan File's text contents for css class names
                cssClassList cssclasslist = ScanTextForCssClassName(
                    _item.Name.Substring(0, _item.Name.IndexOf(".")),
                    System.IO.File.ReadAllText(_item.get_FileNames(0))
                    );

                //If file had any css class names add to hash of files with css class names
                if (cssclasslist != null)
                    hash.Add(cssclasslist);
            }
            //recursively scan any subdirectory project files
            if (_item.ProjectItems.Count > 0)
                getCssFiles(_item, hash);
        }
    }

    private cssClassList ScanTextForCssClassName(string FileName, string TextToScan)
    {

        Regex rEx = new Regex(m_pattern);
        MatchCollection matches = rEx.Matches(TextToScan);
        cssClassList cssclasslist = null;

        if (matches.Count > 0)
        {
            //create css class file object to hold the list css class name that exists in this file
            cssclasslist = new cssClassList();
            cssclasslist.cssFileName = FileName;
            cssclasslist.cssClasses = new HashSet<string>();

        }

        foreach (Match match in matches)
        {
            //creat a unique list of css class names
            if (!cssclasslist.cssClasses.Contains(match.Value))
                cssclasslist.cssClasses.Add(match.Value);
        }

        return cssclasslist;
    }

    public void Dispose()
    {
        if (!m_isDisposed)
        {
            GC.SuppressFinalize(this);
            m_isDisposed = true;
        }
    }
}

}

作为一个仅供参考,您也可以使用ReSharper的解决这个问题。 但是,这是一个需要购买Visual Studio的第三方产品



Answer 3:

难道不及格,或者已经完全它整个的Visual Studio停止只是CSS智能感知?

我有我的影响的Visual Studio 2012的全这是一个而回了类似的问题,但我记得从我的应用程序数据删除文件夹。 看看这个链接,希望这将帮助: http://www.haneycodes.net/visual-studio-2012-intellisense-not-working-solved/



Answer 4:

你不会得到智能感知在VS2012 CSS Razor的观点。 还有就是使用智能感知一种变通方法。 只要创建使用ASPX视图引擎一个测试视图(的.aspx),包括你的CSS文件中有。 现在,智能感知将在新的ASPX视图中工作。 所有你需要做的就是从复制到ASPX Razor视图(.cshtml或.vbhtml)粘贴的CSS类。 我希望这有帮助。



文章来源: CSS Intellisense not working for MVC 4 project in Visual Studio 2012 Ultimate