Azure build stopped working when using xproj based ASP.NET Core project

Viewed 102

I have a webapp on Azure that is setup with continuous integration via BitBucket repo.

My last build and commit (which was successful) was on 5/25. I did a commit today to a couple *.cs files, as well as 2 *.cshtml files.

Now, my Azure build is failing on step 2 (step 1 is 'Updating submodules').

Preparing deployment for commit id 'xxxxxxxx'

And here's the beautiful error that is in the log, this is the ENTIRE log:

'D:\home\site\repository*.xproj' is not a deployable project.

What in the world?!?! What am I supposed to do with that?

Here's a summary of my changes that were in my release:

  • changing value of a string constant
  • adding additional parms.Add("parameter", parameterValue);
  • add parameters to method signatures
  • adding/changing/removing divs in cshtml files

all normal stuff; NOTHING changed on the xproj file. Why would the build start failing now? Have there been any issues with building on Azure since 5/25?

I hope this is the correct forum for Azure build stuff, since there's not really any code that I can place here.

1 Answers
Related