Revert "Refactor PDF viewing and integrate DevExpress support"

This reverts commit b515b4f523.
This commit is contained in:
OlgunR
2026-06-09 11:48:49 +02:00
parent 746465d8fe
commit b622df4187
5 changed files with 11 additions and 49 deletions

View File

@@ -8,9 +8,6 @@ using DevExpress.XtraReports.Web.Extensions;
var builder = WebApplication.CreateBuilder(args);
// MVC-Controller hinzufügen (benötigt für DevExpress WebDocumentViewer)
builder.Services.AddControllersWithViews();
builder.Services.AddRazorPages();
// DevExpress Controls und Reporting Services
@@ -55,8 +52,5 @@ app.UseDevExpressControls();
app.UseRouting();
app.UseAuthorization();
// Controller-Routen verfügbar machen (wichtig für DevExpress WebDocumentViewer)
app.MapControllers();
app.MapRazorPages();
app.Run();