Run ASP.NET 5 (MVC 6) using .NET Core on IIS

前端 未结 2 469
不知归路
不知归路 2020-12-05 15:32

I have just created a quick ASP.NET 5 MVC 6 app on Visual Studio.NET 2015 RC and would like it to run on my IIS web server on Windows 7.

Normally, when I create a we

相关标签:
2条回答
  • 2020-12-05 16:28

    This question is out of date, and Microsoft has since release pretty thorough documentation for this scenario. You can find it here: https://docs.microsoft.com/en-us/aspnet/core/publishing/iis

    0 讨论(0)
  • 2020-12-05 16:36

    Update

    As @wickdninja stated, the below is outdated. Use his updated solution instead: https://docs.microsoft.com/en-us/aspnet/core/publishing/iis To get the application to run on IIS:


    1. Create a website under a v4.0 app pool.

    2. Bundle/publish the application using dnu publish. This will create a self contained package that has the application, the runtime and all the dependencies. Change the runtime name to match the runtime of your choice.

        dnu publish --runtime dnx-coreclr-win-x86.1.0.0-beta5-11625
      

      You can even pass --no-source if you don't want the application to be compiled from sources every time it starts.

    3. Copy the bundle (from bin\output) under the website root.

    4. Run

    Things that might go wrong:

    1. The IIS bitness (32/64 bit) must match the bitness of coreclr.
    2. If you don't copy the bundled website under the website root, make sure the account under which IIS runs can actually access the runtime folder.
    0 讨论(0)
提交回复
热议问题