Initial commit: ASP.NET Core 10.0 MVC application

- Basic MVC structure with HomeController
- Bootstrap 5 and jQuery included
- CLAUDE.md for AI assistant guidance

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-03-29 14:48:34 -04:00
commit cd9ba29e76
82 changed files with 83112 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
using ImageProcessor.Models;
using Microsoft.AspNetCore.Mvc;
using System.Diagnostics;
namespace ImageProcessor.Controllers
{
public class HomeController : Controller
{
public IActionResult Index()
{
return View();
}
public IActionResult Privacy()
{
return View();
}
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
public IActionResult Error()
{
return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
}
}
}