I have an ASP.net Core Web API application, hosted in an Azure App Service, setup for continuous deployment via Visual Studio Team Services (was Visual Studio Online).
This application has been deploying fine up until today, my most recent commit has lead to an error at the 'Generating deployment script' stage.
I haven't changed anything related to the project structure since my last successful commit (e.g. no changes to project.json, no projects added/removed from the solution). Just made some regular changes to the code, added an EF migration, etc.
The activity log for the failed deployment just has the following:
Using the following command to generate deployment script: 'azure site deploymentscript -y --no-dot-deployment -r "D:\home\site\repository" -o "D:\home\site\deployments\tools" --aspNetCore "D:\home\site\repository\src\Authenticator" --solutionFile D:\home\site\repository\Authenticator.sln'. Project file path: .\src\Authenticator \r\nD:\Program Files (x86)\SiteExtensions\Kudu\58.50923.2428\bin\Scripts\starter.cmd "D:\Program Files (x86)\SiteExtensions\Kudu\58.50923.2428\bin\node_modules.bin\kuduscript.cmd" -y --no-dot-deployment -r "D:\home\site\repository" -o "D:\home\site\deployments\tools" --aspNetCore "D:\home\site\repository\src\Authenticator" --solutionFile D:\home\site\repository\Authenticator.sln
and the log from the previous successful deployment has this:
Using cached version of deployment script (command: 'azure -y --no-dot-deployment -r "D:\home\site\repository" -o "D:\home\site\deployments\tools" --aspNetCore "D:\home\site\repository\src\Authenticator" --solutionFile D:\home\site\repository\Authenticator.sln').
I'm not sure why these scripts are different, and what the failure is, there are no specific errors listed.
The last successful commit was on the 9th September, so presumably something has changed on the Azure backend since then.
Any ideas what could be causing this, or how I could even get a more detailed log of what's going on?