diff --git a/Source/Krypton Components/Krypton.Standard.Toolkit/Krypton.Standard.Toolkit.csproj b/Source/Krypton Components/Krypton.Standard.Toolkit/Krypton.Standard.Toolkit.csproj
index 86662f9c1..a85b9360d 100644
--- a/Source/Krypton Components/Krypton.Standard.Toolkit/Krypton.Standard.Toolkit.csproj
+++ b/Source/Krypton Components/Krypton.Standard.Toolkit/Krypton.Standard.Toolkit.csproj
@@ -130,8 +130,53 @@
-->
$(TargetsForTfmSpecificContentInPackage);AddReferencedAssembliesToPackage
+ $(GenerateNuspecDependsOn);NormalizePackTargetFrameworkAliases
+
+
+
+ <_OriginalPackTargetFrameworks Include="@(_TargetFrameworks)" />
+ <_OriginalSuppressedDependencyFrameworks Include="@(_FrameworksWithSuppressedDependencies)" />
+ <_OriginalFrameworkAssemblyReferences Include="@(_FrameworkAssemblyReferences)" />
+
+ <_TargetFrameworks Remove="@(_TargetFrameworks)" />
+ <_FrameworksWithSuppressedDependencies Remove="@(_FrameworksWithSuppressedDependencies)" />
+ <_FrameworkAssemblyReferences Remove="@(_FrameworkAssemblyReferences)" />
+
+ <_TargetFrameworks Include=".NETFramework4.7.2" Condition="'%(_OriginalPackTargetFrameworks.Identity)' == 'net472'" />
+ <_TargetFrameworks Include=".NETFramework4.8" Condition="'%(_OriginalPackTargetFrameworks.Identity)' == 'net48'" />
+ <_TargetFrameworks Include=".NETFramework4.8.1" Condition="'%(_OriginalPackTargetFrameworks.Identity)' == 'net481'" />
+ <_TargetFrameworks Include="net8.0-windows7.0" Condition="'%(_OriginalPackTargetFrameworks.Identity)' == 'net8.0-windows'" />
+ <_TargetFrameworks Include="net9.0-windows7.0" Condition="'%(_OriginalPackTargetFrameworks.Identity)' == 'net9.0-windows'" />
+ <_TargetFrameworks Include="net10.0-windows7.0" Condition="'%(_OriginalPackTargetFrameworks.Identity)' == 'net10.0-windows'" />
+ <_TargetFrameworks Include="net11.0-windows7.0" Condition="'%(_OriginalPackTargetFrameworks.Identity)' == 'net11.0-windows'" />
+ <_TargetFrameworks Include="%(_OriginalPackTargetFrameworks.Identity)" Condition="'@(_TargetFrameworks)' == ''" />
+
+ <_FrameworksWithSuppressedDependencies Include=".NETFramework4.7.2" Condition="'%(_OriginalSuppressedDependencyFrameworks.Identity)' == 'net472'" />
+ <_FrameworksWithSuppressedDependencies Include=".NETFramework4.8" Condition="'%(_OriginalSuppressedDependencyFrameworks.Identity)' == 'net48'" />
+ <_FrameworksWithSuppressedDependencies Include=".NETFramework4.8.1" Condition="'%(_OriginalSuppressedDependencyFrameworks.Identity)' == 'net481'" />
+ <_FrameworksWithSuppressedDependencies Include="net8.0-windows7.0" Condition="'%(_OriginalSuppressedDependencyFrameworks.Identity)' == 'net8.0-windows'" />
+ <_FrameworksWithSuppressedDependencies Include="net9.0-windows7.0" Condition="'%(_OriginalSuppressedDependencyFrameworks.Identity)' == 'net9.0-windows'" />
+ <_FrameworksWithSuppressedDependencies Include="net10.0-windows7.0" Condition="'%(_OriginalSuppressedDependencyFrameworks.Identity)' == 'net10.0-windows'" />
+ <_FrameworksWithSuppressedDependencies Include="net11.0-windows7.0" Condition="'%(_OriginalSuppressedDependencyFrameworks.Identity)' == 'net11.0-windows'" />
+ <_FrameworksWithSuppressedDependencies Include="%(_OriginalSuppressedDependencyFrameworks.Identity)" Condition="'@(_FrameworksWithSuppressedDependencies)' == ''" />
+
+ <_FrameworkAssemblyReferences Include="@(_OriginalFrameworkAssemblyReferences)">
+ .NETFramework4.7.2
+ .NETFramework4.8
+ .NETFramework4.8.1
+ net8.0-windows7.0
+ net9.0-windows7.0
+ net10.0-windows7.0
+ net11.0-windows7.0
+
+
+
+
+
+## Version History
+
+[](https://github.com/Krypton-Suite/Standard-Toolkit/blob/master/Documents/Changelog/Changelog.md)
+
+=======
+
+## Breaking Changes
+
+## V110.00 (2026-11-xx - Build 2611 - November 2026)
+
+There are list of changes that have occurred during the development of the V110.00 version
+
+* Implemented [#3177](https://github.com/Krypton-Suite/Standard-Toolkit/issues/3177), **[Breaking Change]** Move `KryptonAboutBox` to `Krypton.Utilities`
+ * **Note:**: The `KryptonAboutBox` class has been moved from the `Krypton.Toolkit` namespace to the `Krypton.Utilities` namespace. Please update your using directives accordingly.
+ * You can find the `KryptonAboutBox` class in the `Krypton.Utilities` assembly, which is part of the `Krypton.Standard.Toolkit` NuGet package.
+
+* Implemented [#2858](https://github.com/Krypton-Suite/Standard-Toolkit/issues/2858), **[Breaking Change]:** Move `KryptonCommandLink` buttons to `Krypton.Utilities`
+ * **Note:**: The `KryptonCommandLinkButton` class has been moved from the `Krypton.Toolkit` namespace to the `Krypton.Utilities` namespace. Please update your using directives accordingly.
+ * It is now located in the `Krypton.Utilities` assembly, which is part of the `Krypton.Standard.Toolkit` NuGet package.
+
+* Implemented [#2808](https://github.com/Krypton-Suite/Standard-Toolkit/issues/2808), Move `KryptonToastNotification` feature to `Krypton.Utilities`
+ * **Note:**: The `KryptonToastNotification` class has been moved from the `Krypton.Toolkit` namespace to the `Krypton.Utilities` namespace. Please update your using directives accordingly.
+ * It is now located in the `Krypton.Utilities` assembly, which is part of the `Krypton.Standard.Toolkit` NuGet package.
+ * The `KryptonToastNotification` public API has also been renamed to `KryptonToast` to better reflect its purpose. It is recommended to update any references to the old class name in your codebase to ensure compatibility with the new version.
+
+* Implemented [#2762](https://github.com/Krypton-Suite/Standard-Toolkit/issues/2762), Move the public facing version of `KryptonExceptionDialog` to `Krypton.Utilities`
+ * **Note:**: The `KryptonExceptionDialog` class has been moved from the `Krypton.Toolkit` namespace to the `Krypton.Utilities` namespace. Please update your using directives accordingly.
+ * It is now located in the `Krypton.Utilities` assembly, which is part of the `Krypton.Standard.Toolkit` NuGet package.
+
+## V100.00 (2025-11-24 - Build 2511 - November 2025)
+
+There are list of changes that have occurred during the development of the V100.00 version
+
+* Implemented [#984](https://github.com/Krypton-Suite/Standard-Toolkit/issues/984), `KryptonForm` using `SizeGripStyle` for grippie.
+ * **Note:** This contains a breaking change for **custom** themes as it introduces a new abstract method:
+ `public abstract Image? GetSizeGripImage(RightToLeft isRtl);`
+ so that themes can return a size grip image (or null).
+
+* Implemented [#2328](https://github.com/Krypton-Suite/Standard-Toolkit/issues/2328), Set the baseline support to .NET Framework 4.7.2
+ * **Note:** This is a breaking change, as the minimum supported version of .NET Framework has been raised from 4.6.2 to 4.7.2.
+* Resolved [#240](https://github.com/Krypton-Suite/Standard-Toolkit/issues/240), **[Breaking Change]** `KryptonRichTextBox` Why is it not possible to have the `ButtonSpecs` aligned to the top of a control
+ * `ButtonSpecs` have been removed from the `KryptonRichTextBox`
+ * Use another layout to align in the designers
+* Resolved [#1212](https://github.com/Krypton-Suite/Standard-Toolkit/issues/1842), **[Breaking Change]** `KColorButton` 'drop-down' arrow should be drawn
+ * Create Scaled Drop Glyph and use for colour button and comboDrops
+ * Remove the `PaletteRedirectDropDownButton`
+ * Remove `KryptonPaletteImagesDropDownButton`
+ * **Breaking Change**: Remove `DropDownButtonImages` from designers
+
+### Support for .NET FrameWork 4.6.2, 4.7 & 4.7.1
+
+As of version 100, support for .NET FrameWork 4.6.2, 4.7 & 4.7.1 has been dropped, due to lack of native support for high DPI.
+
+## V95.00 (2025-02-01 - Build 2502 - February 2025)
+
+* Resolved [#1212](https://github.com/Krypton-Suite/Standard-Toolkit/issues/1842), **[Breaking Change]** `KColorButton` 'drop-down' arrow should be drawn
+ * Create Scaled Drop Glyph and use for colour button and comboDrops
+ * Remove the `PaletteRedirectDropDownButton`
+ * Remove `KryptonPaletteImagesDropDownButton`
+ * **Breaking Change**: Remove `DropDownButtonImages` from designers
+
+## V90.00 (2024-11-12 - Build 2411 - November 2024)
+
+There are list of changes that have occurred during the development of the V90.00 version
+
+* [#632](https://github.com/Krypton-Suite/Standard-Toolkit/issues/632), **[Breaking Change]** `KryptonPropertyGrid` should have a customisable back colour.
+ * `KryptonPropertyGrid` now uses the State### sets like the rest of the controls.
+ * Any build breaks in the designers can just be deleted, as the the colouring will be done by the `State####` equivalents
+* [#1435](https://github.com/Krypton-Suite/Standard-Toolkit/issues/1435), **Breaking Change** Take KMB back to the Winform override (Remove Checkbox etc)
+* and [#1432](https://github.com/Krypton-Suite/Standard-Toolkit/issues/1432), **Breaking Change placeholder** Copy `KryptonMessageBox` to `KryptonMessageBoxDep`
+ * The introduction of new Parameters elements to the `KryptonMessageBox` is now supported in the `KryptonMessageBoxDep` class
+ * This is so that the `KryptonMessageBox` gets back to being a drop in replacement for the WinForm `MessageBox`
+ * And a start of the introduction of the `KryptonMessageDialog` implementation of the UWP `MessageDialog`
+* [#1424](https://github.com/Krypton-Suite/Standard-Toolkit/issues/1424), **Breaking Change** `KryptonMessageBox` does not obey tab characters like `MessageBox`
+ * The optional `ContentAlignment` for a `KryptonMessageBox.Show` command is no longer possible.
+* [#1356](https://github.com/Krypton-Suite/Standard-Toolkit/issues/1356), AppButton colours don't change while switching themes
+ * See
+ * `RibbonAppButton` has become `RibbonFileAppButton`
+ * Addition `RibbonFileAppTab` to hold the tab text (Defaults to `File`)
+ * Colours for the `FileAppTab` have been moved into the `StateCommon` area
+* [#1206](https://github.com/Krypton-Suite/Standard-Toolkit/issues/1206), Remove the `Font Size` (as it is already covered by the actual font !)
+* [#1224](https://github.com/Krypton-Suite/Standard-Toolkit/issues/1224), Move `GlobalPaletteMode` into `GlobalPalette` and rename
+ * BaseFont is now part of the KryptonManager class, and will override the applied palette font(s)
+ * `CustomPalette` must be derived from the `KryptonCustomPaletteBase` class
+ * `BasePaletteMode` has been removed from `KryptonCustomPaletteBase` class
+* [#124](https://github.com/Krypton-Suite/Standard-Toolkit/issues/124), When setting AllowFormChrome = false, then the Form Bar should still be Theme rendered
+ * `AllowFormChrome` has been removed and replaced with `UseThemeFormChromeBorderWidth` to better explain what it is doing
+ * It means that a theme can get closer to "Material Design", and that the Title bar can still be themed (And rounded)
+* [#215](https://github.com/Krypton-Suite/Standard-Toolkit/issues/215), `KryptonTreeView` Multi Node Select
+ * Designer values named `State####Pressed` have changed to `State#####MultiSelect` to reflect usage
+ * New ReeView Designer value `MultiSelect` allows drawing of selected items and retrieval via `CheckedNodes`
+* [#1268](https://github.com/Krypton-Suite/Standard-Toolkit/issues/1268), Many Krypton Controls have a `CornerRoundingRadius` that overrides the State#### Node Rounding values. Please remove!
+ * `CornerRoundingRadius` overrides **ONLY** the `StateCommon.Border.Rounding` which is incorrect.
+ * All `CornerRoundingRadius` have been removed
+* [#1269](https://github.com/Krypton-Suite/Standard-Toolkit/issues/1269), Remove AllowFormIntegrate to give consistent experience on all supported OS's
+ * Please check the images in the issue.
+ * To fix: just remove `AllowFormIntegrate` from your deisgner files
+* [#1266](https://github.com/Krypton-Suite/Standard-Toolkit/issues/1266), Since V 5.400, the QAT button is supposed to perform the close, therefore the Close Form button should not be visible
+ * The RibbonAppButton has a new Designer field for setting the "Form Close Visible" to off by default
+
+### Support for .NET 6/7
+
+As of V90.00, support for .NET 6 and 7 has been removed due to their release cadences.
+
+### `KryptonButton` Properties
+
+Some properties previously found in the root such as, `ShowSplitOption`, `UseAsADialogButton`, `UseAsUACElevationButton` and `UACShieldIconSize` are now located in the `Values` section.
+
+### API Changes
+
+If using `KryptonAboutToolkit`, please note that this has been superceded by `KryptonAboutBox`. Or if you use `KryptonThemeBrowserForm`, it has now been moved to `KryptonThemeBrowser` as the public facing API.
+
+### `KryptonInputBox`
+
+The `KryptonInputBox` now uses the new `KryptonInputBoxData` API, to handle data.
+
+### Building the Toolkit
+
+As of V90.00 support for longer path names **will** need to be enabled if you want to build the toolkit yourself. For more details on how to do this, please follow the instructions in the [long path names configuration guide](https://krypton-suite.github.io/Standard-Toolkit-Online-Help/Source/Help/Output/articles/Contributing/AllowingforLongerPathandFileNames.html).
+
+Quick options from the repository root:
+
+- **Solution build:** `dotnet build "Source/Krypton Components/Krypton Toolkit Suite 2022 - VS2022.sln" -c Debug` (see [AGENTS.md](AGENTS.md) for TestForm and preset script notes).
+- **Interactive scripts:** `run.cmd` or the channel scripts under `Scripts/VS2022/` (and related folders).
+- **ModernBuild (optional):** keyboard-driven build, pack, and NuGet workflows — see [Scripts/ModernBuild/README.md](Scripts/ModernBuild/README.md).
+
+=======
+
+## Known Issues & Workarounds
+
+* [#1109](https://github.com/Krypton-Suite/Standard-Toolkit/issues/1109) - KryptonPropertyGrid 'jagged' text
+ * Some controls can display `Jagged text` when drawing. (i.e. ComboBox contents / PropertyGrid / Extended controls )
+ This is due to the usage of the Legacy API `Application.SetCompatibleTextRenderingDefault` having a value of `true`. Please set it to false.
+
+* [#665](https://github.com/Krypton-Suite/Standard-Toolkit/issues/665) - Workaround add `net48` or `net481` to your `` if using .NET 8 or newer.
+
+* .NET 6/7 Designer issues - If you are experiencing designer issues with your project, please refer to [this](https://krypton-suite.github.io/Standard-Toolkit-Online-Help/Source/Help/Output/articles/Support/DesignerFix.html) for more information
+
+* ***URGENT:*** If anyone experiences "Double events" such as the one found in [issue #666 about double events](https://github.com/Krypton-Suite/Standard-Toolkit/issues/666), please can you report it ASAP, so that they can be investigated. Thanks!
+
+=======
+
+## Introduction
+
+The Krypton Suite contains user interface components designed to make it quick and easy for developers to create professional looking applications. It provides the essential building blocks needed to create a consistent look and feel across all your products. You can use the built-in palettes to achieve the same appearance as industry standard applications such as Microsoft Office `2007/2010/2013` & Microsoft 365, Visual Studio 2010. Alternatively you can create your own custom palettes to create a completely unique user interface. The Krypton Suite consists of five products called ***Krypton Toolkit***, ***Krypton Ribbon***, ***Krypton Navigator***, ***Krypton Workspace*** and ***Krypton Docking***.
+
+## What is this Repository About?
+
+* Modifications by Peter Wagner (aka Wagnerp), Simon Coghlan (aka Smurf-IV), Giduac, tobitege &
+Ahmed-Abdelhameed have been fixing and adding more capabilities to this toolkit.
+* There is also an Extensions project, which takes these base controls and add more useful complete controls (Currently outside the scope of this help). To find out more about the Extended Toolkit, please visit the [Extended Toolkit repository](https://github.com/Krypton-Suite/Extended-Toolkit)
+* All .Net Versions from 4.8.2 are catered for (interim releases, i.e. releases in-between Long Term Support (LTS) versions of .NET will **only** be supported for the duration of that particular version, usually 24 months.)
+* New versions of NuGet packages can be obtained via the [Krypton Suite NuGet profile page](https://www.nuget.org/profiles/Krypton_Suite), or via your package manager by searching `Krypton.`.
+* New, major versions are released annually, with patches if needed released throughout that period (for example, V100 shipped November 2025). See the [changelog](Documents/Changelog/Changelog.md) for current work.
+* For tips on how to build the toolkit for yourself, please read the following [article](https://krypton-suite.github.io/Standard-Toolkit-Online-Help/Source/Help/Output/articles/Contributing/HowtoBuild.html). Repository-specific commands and tooling are summarized in [AGENTS.md](AGENTS.md) and [Scripts/ModernBuild/README.md](Scripts/ModernBuild/README.md).
+
+## Contributing to this project
+
+If you want to contribute to this project, please follow [these](https://krypton-suite.github.io/Standard-Toolkit-Online-Help/Source/Help/Output/articles/Contributing.html) guidelines. All contributions are welcome!
+
+## Individual Components
+
+### Krypton Toolkit
+
+The Krypton Toolkit provides a set of basic user interface components for free. You can distribute the signed Krypton Toolkit assembly without charge or royalty with your own products. The Krypton Toolkit is great resource for speeding up development of professional looking applications. It works in tandem with the **MenuStrip**, **StatusStrip** and **ToolStrip** controls that come with .NET Framework controls. Using the Krypton Toolkit you can create a great looking application in just minutes.
+
+
+
+
+
+
+
+### Krypton Ribbon
+
+The Krypton Ribbon is designed to mimic the look, feel and operation of the ribbon control seen in the Microsoft Office `2007/2010/2013/365` applications such as Word and Excel. It provides advanced capabilities including the quick access toolbar, contextual tabs and auto shrinking groups. With rich design time support and sample code you can be up and running with the ribbon in no time at all. It integrates with the Krypton Toolkit architecture to ensure a consistent look and feel.
+
+
+
+### Krypton Navigator
+
+The Krypton Navigator is a user interface control that provides the user with a variety of ways to navigate around a set of pages. Think of it as a traditional TabControl on steroids. It has many different modes of operation allowing you to achieve exactly the right operation for your application. It integrates with the Krypton Toolkit architecture to ensure a consistent look and feel.
+
+
+
+### Krypton Workspace
+
+The Krypton Workspace allows a document area to be created that the user can customise by dragging and dropping pages into new positions. Similar to the Visual Studio document area but with far greater flexibility and functionality. Each cell within the workspace uses an instance of the Krypton Navigator allowing a wide range of options for organising and displaying pages. It integrates with the Krypton Toolkit architecture to ensure a consistent look and feel.
+
+
+
+### Krypton Docking
+
+The Krypton Docking set of components allow the user to drag and drop docking pages into new locations in order to customise the organisation of the application content. It allows this in a way similar to that of Visual Studio 2008/2010. Each docking area uses an instance of the Krypton Workspace allowing a wide range of options for organising and displaying pages. It integrates with the Krypton Toolkit architecture to ensure a consistent look and feel.
+
+
diff --git a/Source/Krypton Components/Krypton.Standard.Toolkit/verify-package/expanded/_rels/.rels b/Source/Krypton Components/Krypton.Standard.Toolkit/verify-package/expanded/_rels/.rels
new file mode 100644
index 000000000..d50ca793a
--- /dev/null
+++ b/Source/Krypton Components/Krypton.Standard.Toolkit/verify-package/expanded/_rels/.rels
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/Source/Krypton Components/Krypton.Standard.Toolkit/verify-package/expanded/package/services/metadata/core-properties/450370ed8bf84b7cba842fe3bb22dde3.psmdcp b/Source/Krypton Components/Krypton.Standard.Toolkit/verify-package/expanded/package/services/metadata/core-properties/450370ed8bf84b7cba842fe3bb22dde3.psmdcp
new file mode 100644
index 000000000..3c4d7bf6b
--- /dev/null
+++ b/Source/Krypton Components/Krypton.Standard.Toolkit/verify-package/expanded/package/services/metadata/core-properties/450370ed8bf84b7cba842fe3bb22dde3.psmdcp
@@ -0,0 +1,9 @@
+
+
+ Peter Wagner (A.K.A Wagnerp) and Simon Coghlan (A.K.A Smurf-IV), Giduac, Ahmed Abdelhameed, Lesandro, tobitege, Phil Wright (A.K.A ComponentFactory)
+ An update to Component factory's krypton toolkit to support .NET Framework 4.7.2 - 4.8.1 and .NET 8 - 11. Aggregate package containing Krypton.Docking, Krypton.Navigator, Krypton.Navigator.Utilities, Krypton.Ribbon, Krypton.Toolkit, Krypton.Utilities, and Krypton.Workspace with all reference binaries included. This package supports all .NET Framework versions starting .NET Framework 4.6.2 - 4.8.1 and .NET 8 - 11. Also, all libraries are included targeting each specific framework version for performance purposes. To view all of the standard toolkit package latest version information, please visit: https://github.com/Krypton-Suite/Krypton-Toolkit-Suite-Version-Dashboard/blob/main/Documents/Modules/Standard/Krypton-Toolkit-Suite-Standard-Modules.md To find out what's new, please visit: https://github.com/Krypton-Suite/Standard-Toolkit/blob/alpha/Documents/Changelog/Changelog.md This package is for those who want to try out the latest cutting edge features before deployment.
+ Krypton.Standard.Toolkit.Nightly
+ 110.26.04.106-alpha
+ Krypton ComponentFactory WinForms Themes Controls DataGrid Ribbon Workspace Tabs .Net Toolkit
+ NuGet.Packaging, Version=7.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35;.NET 8.0
+
\ No newline at end of file