Add project files.

This commit is contained in:
2025-07-09 16:15:14 +04:00
parent e0e07ca012
commit dc68787b0b
8 changed files with 303 additions and 0 deletions

14
Program.cs Normal file
View File

@@ -0,0 +1,14 @@
using Microsoft.AspNetCore.Mvc;
var builder = WebApplication.CreateBuilder(args);
builder.Services.AddRazorPages(options =>
{
options.Conventions.ConfigureFilter(new IgnoreAntiforgeryTokenAttribute());
});
var app = builder.Build();
app.MapRazorPages();
app.Run();