为什么我的asp.net项目看起来像引用没有解决?

时间:2015-06-18 18:17:03

标签: asp.net visual-studio visual-studio-2015

在Windows 7 64上运行VS 2015 RC,对于asp.net项目,它看起来像下面的截图,也没有intellisense,但是项目可以编译,出错了吗?

VS还安装了resharper 9和web基本扩展

project.json

 {
  "webroot": "wwwroot",
  "version": "1.0.0-*",

  "dependencies": {
    "Microsoft.AspNet.Server.IIS": "1.0.0-beta4",
    "Microsoft.AspNet.Server.WebListener": "1.0.0-beta4",
    //"Microsoft.AspNet.Mvc": "6.0.0-beta4"
  },

  "commands": {
      "web": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.WebListener --server.urls http://localhost:5000"
  },

  "frameworks": {
    "dnx451": { },
    "dnxcore50": { }
  },

  "publishExclude": [
    "node_modules",
    "bower_components",
    "**.xproj",
    "**.user",
    "**.vspscc"
  ],
  "exclude": [
    "wwwroot",
    "node_modules",
    "bower_components"
  ]
}

enter image description here

另外,一直在收到错误消息 enter image description here

activitylog.xml enter image description here

1 个答案:

答案 0 :(得分:1)

他们没有丢失,他们只是没有被使用。如果它们丢失/未解决,则会出现红色波形。它们是暗淡的,因为你没有使用它们。

请参阅:http://csharp.2000things.com/2014/10/28/1213-visual-studio-2014-unused-using-statements-greyed-out/

请针对其他问题尝试此操作:

  1. 使用/ SafeMode切换运行VS(消除扩展问题并可能与VS发生冲突)
  2. 取消注释依赖项文件中的“Microsoft.AspNet.Mvc”:“6.0.0-beta4”行