Skip to content

Commit

Permalink
fix: include icon in package and fix readme
Browse files Browse the repository at this point in the history
  • Loading branch information
egil committed Jan 20, 2024
1 parent bd1f8a9 commit 9374ac6
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 16 deletions.
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
# Htmxor - supercharging Blazor Static SSR with Htmx
![Htmxor logo](docs/htmxor.svg)
![Htmxor logo](https://raw.githubusercontent.com/egil/Htmxor/main/docs/htmxor.svg)

This packages enables Blazor static SSR to be used seamlessly with Htmx.
This packages enables Blazor Static SSR (.NET 8 and later) to be used seamlessly with Htmx.

Blazor static SSR
Blazor Static SSR
comes with basic interactivity via enhanced navigation and enhanced form handling.
Adding Htmx (htmx.org) to the mix gives you access to another level of interactivity while still
retaining all the advantages of Blazor SSR stateless nature.

**NOTE:** _This package is highly experimental!_

## Samples used for comparison:

- [BlazorSSR - pure Blazor SSR](/samples/BlazorSSR)
- [BlazorSSR - pure Blazor SSR](https://github.com/egil/Htmxor/tree/main/samples/BlazorSSR)
- [HtmxBlazorSSR - pure Blazor SSR](https://github.com/egil/Htmxor/tree/main/samples/HtmxBlazorSSR)
Binary file added docs/htmxor-icon-light-mode.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 6 additions & 12 deletions src/Htmxor/Htmxor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@
<Authors>Egil Hansen</Authors>
<Title>Htmxor - supercharging Blazor Static SSR with Htmx</Title>
<Description>
This packages enables Blazor static SSR to be used seamlessly with Htmx.
This packages enables Blazor static SSR to be used seamlessly with Htmx.

Blazor static SSR comes with basic interactivity via enhanced navigation and enhanced form handling.
Adding Htmx (htmx.org) to the mix gives you access to another level of interactivity while still
retaining all the advantages of Blazor SSR stateless nature.
</Description>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageTags>Blazor, Htmx, BlazorSSR</PackageTags>
<Copyright>Egil Hansen</Copyright>
<PackageIconUrl>https://raw.githubusercontent.com/egil/Htmxor/main/docs/htmxor-icon.svg</PackageIconUrl>
<PackageIcon>htmxor-icon-light-mode.png</PackageIcon>
<PackageProjectUrl>https://github.com/egil/Htmxor</PackageProjectUrl>
<RepositoryUrl>https://github.com/egil/Htmxor</RepositoryUrl>
<RepositoryType>git</RepositoryType>
Expand All @@ -46,7 +46,6 @@
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.0" />

<PackageReference Include="MinVer" Version="4.3.0" PrivateAssets="All" />
<PackageReference Include="DotNet.ReproducibleBuilds" Version="1.1.1">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand All @@ -55,14 +54,9 @@
</ItemGroup>

<ItemGroup>
<None Include="..\..\LICENSE">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\..\LICENSE" Pack="true" PackagePath="\" />
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
<None Include="..\..\docs\htmxor-icon-light-mode.png" Pack="true" PackagePath="\"/>
</ItemGroup>

<Target Name="SetPackageReleaseNotes" BeforeTargets="GenerateNuspec">
Expand Down

0 comments on commit 9374ac6

Please sign in to comment.