diff --git a/sample/Demo/Demo.csproj b/sample/Demo/Demo.csproj index 5d7019f..ef09257 100644 --- a/sample/Demo/Demo.csproj +++ b/sample/Demo/Demo.csproj @@ -1,13 +1,13 @@  - net7.0 + net8.0 - - - + + + diff --git a/sample/DemoAuth/DemoAuth.csproj b/sample/DemoAuth/DemoAuth.csproj index 61fa105..f77c9d7 100644 --- a/sample/DemoAuth/DemoAuth.csproj +++ b/sample/DemoAuth/DemoAuth.csproj @@ -1,16 +1,16 @@  - net7.0 + net8.0 aspnet-WebApplication2-BE3CB597-3006-40BA-9FE0-C651562C4A99 - - - - - + + + + + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/sample/DemoServer/DemoServer.csproj b/sample/DemoServer/DemoServer.csproj index 968505f..3fbc4f4 100644 --- a/sample/DemoServer/DemoServer.csproj +++ b/sample/DemoServer/DemoServer.csproj @@ -1,7 +1,7 @@  - net7.0 + net8.0 diff --git a/src/XTabs/BlazorXTabs.csproj b/src/XTabs/BlazorXTabs.csproj index 7f2432b..4cee583 100644 --- a/src/XTabs/BlazorXTabs.csproj +++ b/src/XTabs/BlazorXTabs.csproj @@ -1,7 +1,7 @@  - net5.0;net6.0;net7.0 + net5.0;net6.0;net7.0;net8.0 @@ -32,12 +32,17 @@ + + + + + BlazorXTabs - 1.9.0 + 2.0.0 David Moreira MIT https://github.com/David-Moreira/XTabs diff --git a/src/XTabs/XTabs.razor b/src/XTabs/XTabs.razor index 5da7c79..79be512 100644 --- a/src/XTabs/XTabs.razor +++ b/src/XTabs/XTabs.razor @@ -21,7 +21,7 @@
- @if ( RenderMode == RenderMode.Full ) + @if ( RenderMode == BlazorXTabs.Configuration.RenderMode.Full ) { @foreach ( var tab in TabContent ) { @@ -65,7 +65,7 @@ } } - @if ( RenderMode == RenderMode.Steps ) + @if ( RenderMode == BlazorXTabs.Configuration.RenderMode.Steps ) {
@if ( PreviousStepsContent is object )