Hi i have created a web api application in ASP.Net 5. i have set
"compilationOptions": {
"emitEntryPoint": true
},
in project.json file. But the following function
public static void Main(string[] args) => WebApplication.Run<Startup>(args);
in Startup.cs does not get triggering. Please help me.