No executable found matching command "dotnet-./..dll" No executable found matching command "dotnet-./..dll" heroku heroku

No executable found matching command "dotnet-./..dll"


The issue here was that the dll files in .bin folder were named differently than the parent folder name. I added this line to my project.json file:

"buildOptions": {   "outputName": "whatever-you-want-it-to-be"}

I re-built my app and everything seems to be working great. All of the dll file names were changed so I re-deployed to the server. Hope this helps!