0

Please or Register to create posts and topics.

Deploy ASP.NET Core to IIS

Hi,

I use QuickApp Ultimate in the current version with .net core 2.1.

On the site https://stackify.com/how-to-deploy-asp-net-core-to-iis/ I read:

public static void Main(string[] args)
    {
        var host = new WebHostBuilder()
            .UseKestrel()
            .UseContentRoot(Directory.GetCurrentDirectory())
            .UseIISIntegration()
            .UseStartup()
            .Build();

        host.Run();
    }

Do I have to install this extension in QuickApp?

 

No, you don't have to make any changes to QuickApp to deploy to IIS.
Simply publish your project and deploy it like you would any asp.net project. All the changes needed to support IIS are included out of the box.

Extracting from the site you linked these steps will get you running:

  1. Step 1: Publish to a File Folder
  2. Step 2: Copy Files to Preferred IIS Location
  3. Step 3: Create Application in IIS
  4. Step 4: Load Your App!

Regards,
Eben Monney

Ingo has reacted to this post.
Ingo