Reputation: 121
My subscription has been moved over to CSP subscription and i can no longer can use cloud services within it. For that matter, i guess i need to convert to Azure App services/Service fabric. The application is .NET MVC type and trying to convert to Service Fabric involves converting to .NET Core application which is more difficult i guess.
Is there a way i can convert to Azure App service (Web app) ? How would that go? How do we convert service config settings, service definitions ?
Upvotes: -1
Views: 791
Reputation: 121
Straight forward answer is that convert the serviceconfig connection strings to the in the web.config of the mvc web application.
Upvotes: 0
Reputation: 14324
If you want to convert Web Roles to Service Fabric , you could refer to this doc.
And if your app is .net MVC , yes, you need to upgrade it to .net core MVC. If you don't know how to upgrade, here is the reference.
If you still have questions, please let me know.
Upvotes: 0