Releases: podNET-Hungary/PodNet.Blazor.TypedRoutes
Releases · podNET-Hungary/PodNet.Blazor.TypedRoutes
v1.0.0
v1.0.0-beta6
Updated list of authors to be consistent throughout podNET packages.
v1.0.0-beta5
This release contains no new features or fixes.
The sole change is to update the links to point to the repo's new URL.
v1.0.0-beta4
- The NuGet package now specifies .NET 8 as a requirement instead of .NET Standard 2.0.
- This reflects the runtime support more clearly, as even though the code generator runs on .NET Standard 2.0 (in the IDE, like Visual Studio), the generated code depends on the C# 11 feature static abstracts on interfaces, or "generic math", which was introduced in preview with .NET 6 (C# 10) and made GA with .NET 7 (C# 11). If you're using .NET 7, you can still make do with v1.0.0-beta3, but support is ending soon, and you're encouraged to migrate to .NET 8.
- Moved the common interfaces (
IRoutableComponent
,INavigableComponent
) to a Core assembly that is automatically referenced for compilation and runtime.- The analyzer (code generator) is still only referenced by the IDE at design-time, not by the user's app. This enables the user to have pages defined in multiple assemblies and not have conflicting definitions for these symbols.
v1.0.0-beta3
Fixed dashes not being replaced in .razor files.
v1.0.0-beta2: Fix: singular parametered route not generating;
Fixed singular primary route not generating method
v1.0.0-beta1
Initial version