diff --git a/Directory.Build.props b/Directory.Build.props index fd3c5d6287..3d1ed205d3 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -12,8 +12,8 @@ $(MSBuildThisFileDirectory) true - 4.11.8 - 4.11.8 + 4.11.9 + 4.11.9 $(VersionFile) $(VersionFile) diff --git a/eng/pipelines/version.yml b/eng/pipelines/version.yml index 971a5e456c..e6a124940c 100644 --- a/eng/pipelines/version.yml +++ b/eng/pipelines/version.yml @@ -2,5 +2,5 @@ variables: # File and Package version # dev branch: 1.2.4-Preview-23282-1' (PackageSuffix is always ignored in Dev branch) # main branch: 1.2.4-RC.1' (PackageSuffix is ignored, if empty, in Main branch) - FileVersion: '4.11.8' # Set the next final version here. + FileVersion: '4.11.9' # Set the next final version here. PackageSuffix: '' diff --git a/src/Core/Components/Overflow/OverflowItem.cs b/src/Core/Components/Overflow/OverflowItem.cs index 0a1af937d9..ac309a7610 100644 --- a/src/Core/Components/Overflow/OverflowItem.cs +++ b/src/Core/Components/Overflow/OverflowItem.cs @@ -1,3 +1,7 @@ +// ------------------------------------------------------------------------ +// MIT License - Copyright (c) Microsoft Corporation. All rights reserved. +// ------------------------------------------------------------------------ + namespace Microsoft.FluentUI.AspNetCore.Components; /// diff --git a/src/Core/Components/Tabs/FluentTabs.razor.cs b/src/Core/Components/Tabs/FluentTabs.razor.cs index 062365a219..3dc2df38ff 100644 --- a/src/Core/Components/Tabs/FluentTabs.razor.cs +++ b/src/Core/Components/Tabs/FluentTabs.razor.cs @@ -137,6 +137,7 @@ public partial class FluentTabs : FluentComponentBase /// public IEnumerable TabsOverflow => _tabs.Where(i => i.Overflow == true); + [DynamicDependency(DynamicallyAccessedMemberTypes.All, typeof(OverflowItem))] [DynamicDependency(DynamicallyAccessedMemberTypes.All, typeof(TabChangeEventArgs))] public FluentTabs()