首页 > 代码库 > .Net Core 常见问题整理

.Net Core 常见问题整理

1、安装时报0x80070490 找不到元素

这里应该是vs只装了web没有装c++

下载一个 VC_redist.x64.exe 安装就行了

 

https://github.com/dotnet/core/issues/271
 
2、No executable found matching command "bower"
屏蔽project.json中的 scripts
  //"scripts": {
  //  "prepublish": [ "bower install", "dotnet bundle" ],
  //  "postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" ]
  //},

 

 

.Net Core 常见问题整理