Share via

Cloud Services (extended support) will be retired on 31 March 2027

Nischay 125 Reputation points
2026-03-27T11:52:10.9133333+00:00

Got this notification from Azure:-

Cloud Services (extended support) will be retired on 31 March 2027 – Transition to Service Fabric managed cluster

You're receiving this notification because you're associated with one or more Azure subscriptions that use Cloud Services (extended support). Cloud Services (extended support) will be retired on 31 March 2027, please transition to Service Fabric managed cluster by that date. Migrating from Cloud Services (Extended Support) to Service Fabric managed cluster enhances the scalability, flexibility, and reliability of your Azure deployments. From now to 31 March 2027, you can continue to use Cloud Services (extended support) without disruption. To avoid service disruption, migrate workloads running Cloud Services (extended support) to Service Fabric managed clusters by 31 March 2027.

Here is some additional information about our Cloud Service:-

Legacy enterprise backend built on the classic Microsoft stack.

  • Core type: Monolithic backend solution for content, licensing, and campaign/submission workflows.
  • Tech stack: C# / .NET Framework 4.8, ASP.NET MVC 5 + Web API 2, Entity Framework 6, 1 Web role, 0 Worker role
  • Data layer: SQL Server via old Entity Framework (EDMX/EF  CaDb context and related entities).
  • Platform integrations: Azure Blob Storage, Notification Hubs/Service Bus-era libraries, Cloud Services (extended support) deployment model.

Please share any recommended steps/solutions to address this?

Azure Cloud Services
Azure Cloud Services

An Azure platform as a service offer that is used to deploy web and cloud applications.


Answer accepted by question author
  1. Ankit Yadav 12,825 Reputation points Microsoft External Staff Moderator
    2026-03-27T12:26:16.82+00:00

    Hello Nischay,

    Yes the notification is correct and expected.

    What it means:

    You can keep using Cloud Services (extended support) until 31 March 2027. However, to avoid any service disruption, you must complete your migration before this date. Extensions will not be granted, and there is no one-click migration tool because your application will need some changes in how it is built and deployed.

    What this means for your setup

    For your shared environment, you can keep a similar overall architecture. The main change is replacing your current Cloud Services (CSES) deployment with a Service Fabric application. Your existing Web Role can be converted into a Service Fabric stateless service.

    Important things to note:

    • Service Fabric does not support IIS.
    • Your web application will need to move to a self-hosted framework, such as ASP.NET Core.
    • If you’re using:
      • ASP.NET MVC -> this can be upgraded to ASP.NET Core MVC
      • ASP.NET Web Forms -> this is not supported and will require a redesign

    Recommended steps:

    1. Review your application dependencies, scaling needs, and overall readiness.
    2. Plan the conversion of your Web Role into a stateless service, including moving away from IIS/System.Web.
    3. Set up a Service Fabric managed cluster as your new platform.
    4. Move your configuration and packaging from .csdef / .cscfg files to Service Fabric formats.
    5. Deploy your application to the cluster and perform thorough testing.

    References:

    1 person found this answer helpful.

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.