Upgrade .NET SDK version to 10.0 in Dockerfile and project file; enable static files in Program.cs

This commit is contained in:
MaddoScientisto 2026-03-17 19:17:55 +01:00
commit d3887f1dd0
3 changed files with 6 additions and 4 deletions

View file

@ -69,6 +69,8 @@ if (useHttpsRedirection)
app.UseHttpsRedirection();
}
app.UseStaticFiles();
app.UseRequestLocalization(localizationOptions);
app.UseAuthentication();