This tool currently migrates and dependencies on the Microsoft.AspNet.IISPlatformHandler package, to the newer Microsoft.AspNetCore.Server.IISIntegration package (which is correct) - but as part of this change there are also implications for startup.cs. In RC2, you now have to create and configure your own host in the entry point Main(args) for your application, and some of the methods to do this configuration are found in a new package - Microsoft.AspNetCore.Hosting which you have to then add. This tool should automatically add this package for you to save you the hassle, whenever it detects a project that references Microsoft.AspNetCore.Server.IISIntegration
This tool currently migrates and dependencies on the
Microsoft.AspNet.IISPlatformHandler
package, to the newerMicrosoft.AspNetCore.Server.IISIntegration
package (which is correct) - but as part of this change there are also implications forstartup.cs
. In RC2, you now have to create and configure your own host in the entry pointMain(args)
for your application, and some of the methods to do this configuration are found in a new package -Microsoft.AspNetCore.Hosting
which you have to then add. This tool should automatically add this package for you to save you the hassle, whenever it detects a project that referencesMicrosoft.AspNetCore.Server.IISIntegration