Azure Service Fabric's documentation has ample examples of deploying and hosting ASP.Net Core on Azure Service Fabric. Nowhere is the deployment of IIS-hosted apps to be found.
How could one deploy ASP.Net sites and WCF services as guest executables on an Azure Service Fabric cluster as simply as deploying them to an Azure App Service instance?
AFAIK , Afraid that for ASP.Net web site, we have to use conventional approach to scale up/scale out.
Migrating WCF to ServiceFabric comes with quandary verbal expression of scaling Monolithic WCF Accommodations. To scale the application, Only Horizontal scaling will be get done by increment number of Web Server with load balancing in front of it.
To surmount this issue microservices architectural approach is the best one to opt for. We can breakdown Single WCF application to several microservices hosting as WCF application.
One of approach is to Move this WCF to service fabric (Distributed System Platform) as stateless service and scale the service by engendering various instance of services within service fabric cluster.
If you want to do minimal changes to move your application to distributed environment ,can host using WCF communication stateless service in service fabric.
Check the below doc for further reference:
https://amoghnatu.net/2017/07/03/creating-wcf-service-hosted-in-azure-service-fabric-over-https-with-basic-authentication/
https://github.com/loekd/ServiceFabric.WcfCalc
https://www.dotnetcurry.com/windows-azure/1342/create-wcf-service-azure-service-fabric
Hope it helps.