chore: aktualisiert, um sowohl .net 7 als auch .net 8 zu unterstützen

This commit is contained in:
Developer 02 2025-03-25 11:52:03 +01:00
parent b88fd78367
commit 0d4436b061
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFrameworks>net7.0;net8.0</TargetFrameworks>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<Version>4.0.0.0</Version>
@ -20,7 +20,7 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="DigitalData.Auth.Client" Version="1.3.3" />
<PackageReference Include="DigitalData.Auth.Client" Version="1.3.3.1" />
<PackageReference Include="DigitalData.Core.API" Version="2.1.1" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="7.0.14" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="7.0.20" />

View File

@ -15,7 +15,7 @@ var logger = LogManager.Setup().LoadConfigurationFromAppSettings().GetCurrentCla
logger.Debug("init main");
try {
var builder = WebApplication.CreateBuilder(args);
var builder = WebApplication.CreateBuilder();
var config = builder.Configuration;