No executable found matching command “dotnet-bundle” during WebDeploy for ASP.NET Core

后端 未结 3 1374
闹比i
闹比i 2020-12-15 16:56

I am new to ASP.NET and I am trying to publish a web app. I have tried with 2 different hosts to do a web deploy but keep receving the error:-

No executable found ma

3条回答
  •  有刺的猬
    2020-12-15 17:17

    You probably also need to add

    "runtimes": {
    "win10-x64": {}
    },
    

    to your project.json if you want to upgrate to core 1.1 (also change to correct runtime in the global.json file) I say this because I got the bundle error after upgrading my packages and app to 1.1 in VS2015.

提交回复
热议问题