所以我安装了Visual Studio 2015 RC1 Enterprise。在依赖关系下的web项目中,bower显示错误抱怨语法错误。我在文件中看不到任何错误。它在2015年的旧版本中表现完美,所以不确定是什么问题。
{
"dependencies": {
"bootstrap": "3.0.0"
},
"name": "MyProject",
"private", true
}
有什么想法吗?
答案 0 :(得分:2)
您在最后一行的语法中有错误,其中您有逗号而不是冒号。
将"private", true
更改为"private": true