namespace Company.WebApplication1 open System open System.IO open Microsoft.AspNetCore.Hosting module Program = let exitCode = 0 [] let main args = let host = WebHostBuilder() .UseContentRoot(Directory.GetCurrentDirectory()) .UseKestrel() .UseIISIntegration() .UseStartup() #if (IncludeApplicationInsights) .UseApplicationInsights() #endif .Build() host.Run() exitCode