Skip to content

Instantly share code, notes, and snippets.

@CoreProgramm
Created May 7, 2020 15:33
Show Gist options
  • Save CoreProgramm/29ab807112b720dc6618c2efbb2ebc27 to your computer and use it in GitHub Desktop.
Save CoreProgramm/29ab807112b720dc6618c2efbb2ebc27 to your computer and use it in GitHub Desktop.
Setup MVC in ASP .NET Core
public class HomeController : Controller
{
public string Index()
{
return "Hello from MVC | Coreprogram";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment