You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The publish-iis tool underwent some breaking changes recently:
the name of the package that contains the publish-iis tool was changed to Microsoft.AspNetCore.Server.IISIntegration.Tools. This requires changing your project.json file to inlude the "Microsoft.AspNetCore.Server.IISIntegration.Tools" package instead of the "dotnet-publish-iis" package.
the tool needs now to distinguish portable apps from standalone apps to be able to write the web.config file correctly depending on the application type that is being published. This required adding a new, mandatory parameter --framework that tells the tool what framework the application was published for.
The publish-iis tool underwent some breaking changes recently:
publish-iis
tool was changed toMicrosoft.AspNetCore.Server.IISIntegration.Tools
. This requires changing your project.json file to inlude the "Microsoft.AspNetCore.Server.IISIntegration.Tools" package instead of the "dotnet-publish-iis" package.--framework
that tells the tool what framework the application was published for.the web.config created by the publish-iis tool now configures IIS to use AspNetCoreModule instead of HttpPlatformHandler to forward requests to Kestrel
The code snippet below shows how to configure the new publish-iis tool in project.json file
Please use aspnet/IISIntegration#139 for discussion.
The text was updated successfully, but these errors were encountered: