You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ScaffoldingReadMe.txt 505B

123456789101112
  1. Scaffolding has generated all the files and added the required dependencies.
  2. However the Application's Startup code may require additional changes for things to work end to end.
  3. Add the following code to the Configure method in your Application's Startup class if not already done:
  4. app.UseEndpoints(endpoints =>
  5. {
  6. endpoints.MapControllerRoute(
  7. name : "areas",
  8. pattern : "{area:exists}/{controller=Home}/{action=Index}/{id?}"
  9. );
  10. });