我在visual studio 2015 update 3中创建了一个带有角度的asp.net核心1.0项目,我是.net核心托管的新手,该项目在本地机器上运行,当我在iis中发布.net核心应用程序时,我跟着以下步骤提供了ms文档 .

https://docs.microsoft.com/en-us/aspnet/core/publishing/iis?tabs=aspnetcore1x

问:1我已经为dotnet 1.0.3安装了.NET Core Windows Server Hosting bundle 2.0.Windows Server Hosting bundle 2.0支持dotnet core 1.03 .

enter image description here

Dotnet的版本 . 在IIS中,我已将应用程序池更改为无管理代码 .

enter image description here

Asp.net核心文件夹结构发布
enter image description here

注意:我已安装.NET Core Windows Server Hosting捆绑包 . 配置IIS并获得项目的权限 . 将.net框架更改为.net管理代码 . 该应用程序在本地计算机中完美运行
enter image description here
.

是否可以在iis中托管基于.net core 1.0.3的angular2应用程序?

enter image description here

如果有人能做到吗?

enter image description here

这是发布的webconfig文件 .

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <!--
    Configure your application settings in appsettings.json. Learn more at http://go.microsoft.com/fwlink/?LinkId=786380
  -->
  <system.webServer>
    <handlers>
      <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified" />
    </handlers>
    <aspNetCore processPath="dotnet" arguments=".\Angular2Seed.dll" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false" />
  </system.webServer>
</configuration>
<!--ProjectGuid: 32c02de9-da04-4bb4-b20b-93df756b9828-->