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
{{ message }}
This repository has been archived by the owner on Dec 19, 2018. It is now read-only.
Create a new type that will be called from web applications in their static void Main(string args). Note this depends on #425
publicstaticclassWebApplication{publicstaticvoidStart<TStartup>(){Start(typeof(TStartup),null);}publicstaticvoidStart<TStartup>(string[]args){Start(typeof(TStartup),args);}publicstaticvoidStart(TypestartupType){Start(startupType,null);}publicstaticvoidStart(TypestartupType,string[]args){// Basically the body of Microsoft.AspNet.Hosting.Program.Main, which will now call into this instead
...}}
The text was updated successfully, but these errors were encountered:
Create a new type that will be called from web applications in their
static void Main(string args)
. Note this depends on #425The text was updated successfully, but these errors were encountered: