Reputation: 51
I have an ASP.NET MVC app, heavily uses System.Web, Is it possible to deploy in Service Fabric?
Upvotes: 2
Views: 2440
Reputation: 11470
Yes, you can do that by using containers. Here's a blog post about how to do that. Create your cluster using Windows Server 2016 nodes, with the Containers feature enabled.
(e.g. in Azure, use the '2016-Datacenter-with-Containers' sku.)
Upvotes: 3
Reputation: 797
Yes, you can.
If you just want your application to be hosted on SF, host it as a Guest Executable but with this approach you will miss native SF Features.
You can also Create MVC app native to SF Cluster with SDK provided.
Upvotes: -1