prepared project for release

This commit is contained in:
2025-01-19 16:26:45 +01:00
parent a1dbe841ff
commit fbb844d38f
7 changed files with 167 additions and 47 deletions

View File

@@ -4,6 +4,11 @@
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>true</IsPackable>
<PackageReadmeFile>../../README.md</PackageReadmeFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageId>HopFrame.Core</PackageId>
</PropertyGroup>
<ItemGroup>

View File

@@ -4,6 +4,11 @@
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<IsPackable>true</IsPackable>
<PackageReadmeFile>../../README.md</PackageReadmeFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageId>HopFrame.Web</PackageId>
</PropertyGroup>

View File

@@ -36,6 +36,9 @@ public static class ServiceCollectionExtensions {
return services;
}
/// <summary>
/// Maps the HopFrame admin ui endpoints
/// </summary>
public static RazorComponentsEndpointConventionBuilder MapHopFramePages(this RazorComponentsEndpointConventionBuilder builder) {
builder
.AddInteractiveServerRenderMode()