Make sure the entry point is
static void Main(string[] args)
instead of
static void Main(String[] args)
The lower case of ‘s’ in string[] really matters. Otherwise, you won’t seet it in the startup object list.
Make sure the entry point is
static void Main(string[] args)
instead of
static void Main(String[] args)
The lower case of ‘s’ in string[] really matters. Otherwise, you won’t seet it in the startup object list.