Skip to content

Commit

Permalink
feat(nuget): update framework web
Browse files Browse the repository at this point in the history
Refs: CPLP-3400
  • Loading branch information
Phil91 committed Jan 13, 2024
1 parent f4cd85b commit 12070b9
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/framework/Framework.Web/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
<Project>
<PropertyGroup>
<VersionPrefix>1.0.0</VersionPrefix>
<VersionSuffix>beta.7</VersionSuffix>
<VersionSuffix>beta.8</VersionSuffix>
</PropertyGroup>
</Project>
2 changes: 1 addition & 1 deletion src/framework/Framework.Web/WebApplicationBuildRunner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public static void BuildAndRunWebApplication<TProgram, TClaimsTransformation>(
}
catch (Exception ex) when (!ex.GetType().Name.Equals("StopTheHostException", StringComparison.Ordinal))
{
Log.Fatal("Unhandled exception {Exception}", ex);
Log.Fatal(ex, "Start failed due to unhandled exception");
}
finally
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Org.Eclipse.TractusX.Portal.Backend.Framework.Web" Version="1.0.0-beta.7" />
<PackageReference Include="Org.Eclipse.TractusX.Portal.Backend.Framework.Web" Version="1.0.0-beta.8" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion src/web/Web.Initialization/Web.Initialization.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Org.Eclipse.TractusX.Portal.Backend.Framework.Web" Version="1.0.0-beta.7" />
<PackageReference Include="Org.Eclipse.TractusX.Portal.Backend.Framework.Web" Version="1.0.0-beta.8" />
</ItemGroup>

</Project>
3 changes: 2 additions & 1 deletion src/web/Web.Initialization/WebAppHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,5 +68,6 @@ public static void BuildAndRunWebApplication<TProgram>(string[] args, string pat
}

FlurlErrorHandler.ConfigureErrorHandler(app.Services.GetRequiredService<ILogger<TProgram>>(), environment.IsDevelopment());
});
},
null);
}

0 comments on commit 12070b9

Please sign in to comment.