Posts

Showing posts with the label LAUNCHER_PATH and LAUNCHER_ARGS

ASP.Net Core: LAUNCHER_PATH and LAUNCHER_ARGS in web.config

In github, IISSample cleared my confusion about processPath = "%LAUNCHER_PATH%" arguments = "%LAUNCHER_ARGS%". In web.config, following lines exist: <system.webServer> <handlers> <add name = "aspNetCore" path = "*" verb = "*" module = "AspNetCoreModule" resourceType = "unspecified" /> </handlers> <!-- This set of attributes are used for launching the sample using IISExpress via Visual Studio tooling --> <aspNetCore processPath = "%LAUNCHER_PATH%" arguments = "%LAUNCHER_ARGS%" stdoutLogEnabled = "false" stdoutLogFile = ".\logs\stdout" forwardWindowsAuthToken = "false" /> </system.webServer> Now read the comments and understand it what would be used when. <!-- This set of attributes are used for launching the sample using IISExpress via Visual Studio tooling --> <aspNetCore...