Install
Add the package source and pull RazorComponentEndpoints.
Install
The package is hosted on a custom NuGet v3 feed. Add it to your NuGet.config:
<configuration>
<packageSources>
<clear />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
<add key="razorendpoints" value="https://razorendpoints.ironcode.top/v3/index.json" />
</packageSources>
</configuration>
Then pull the package:
dotnet add package RazorComponentEndpoints
Target framework: net10.0. Uses <FrameworkReference Include="Microsoft.AspNetCore.App" /> — the host must be a compatible ASP.NET Core app.
Versioning
CalVer (yy.M.d.HHmmss). Every pack is a new version; there's no SemVer contract. Pin with Version="*":
<PackageReference Include="RazorComponentEndpoints" Version="*" />
…and re-resolve on every restore. The feed has no retention — whatever versions are on disk right now is what's available. Older versions can disappear.