无法在IIS

时间:2017-08-16 19:27:59

标签: iis asp.net-core iis-10

我已经ASP.NET Core 1.1.1IIS-10 Windows 10后面Modules部署IIS个应用程序。但是,当我尝试在<?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="%LAUNCHER_PATH%" arguments="%LAUNCHER_ARGS%" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false"/> </system.webServer> </configuration> 中打开constructor时,出现以下错误[对于清晰视图,您可以点击图片进行放大]:

this

注意

  1. 它是一台开发机器,已安装如下: enter image description here
  2. 该应用的应用池如下:
  3. enter image description here

    和Web.config文件

    interface IToastr{
        toast(message:string,title:string):void;
    }
    
    @Injectable()
    export class ToastrService implements IToastr {
        toast(message:string,title:string):void {
             toastr.success(message,title);
        }
    }
    

    更新:问题可能与enter image description here帖子有关

1 个答案:

答案 0 :(得分:1)

事实证明,ASP.NET Core Module是与SDK分开安装的,我需要安装ASP.NET Core Module才能解决上述问题,如本post所述。感谢@natemcmaster帮助我解决问题。