Azure Continuous Integration

I have an MVC 4 application on .NET 4.5. I have an application deployed in the Azure cloud.

Until yesterday, I would change my application and then register with TFS, then my application would automatically deploy to azure. And everything works fine.

But today, after making some changes, the deployment ended with the following error message: "The application pool you are trying to use has the property" managedRuntimeVersion "set to" v4.0 ". This application requires" v4.5 ".

On the azure configuration management page, I have installed the version of .NET FRAMEWORK VERSION equal to 4.5. In addition, there is no version 4.0, only 3.5 or 4.5. So it seems weird.

Any ideas that might cause the problem.

ps I made small changes in my views, I did not add any libraries or anything like that.

+4
source share
1 answer

This is not an error in your code / configuration. An error occurred in the TFS service, and many people had the same problem. But now this has to be fixed. You can find more information on this page:

Bug tracking

+1
source

Source: https://habr.com/ru/post/1482412/


All Articles