From a13f6ef1006d65083d4004df6d5360192eb9ccff Mon Sep 17 00:00:00 2001 From: Michael Grafnetter Date: Sat, 16 Sep 2023 20:03:51 +0200 Subject: [PATCH] Added Windows Server 2025 DFL --- Src/DSInternals.DataStore/Enums/FunctionalLevel.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Src/DSInternals.DataStore/Enums/FunctionalLevel.cs b/Src/DSInternals.DataStore/Enums/FunctionalLevel.cs index 100a10d7..41af9acc 100644 --- a/Src/DSInternals.DataStore/Enums/FunctionalLevel.cs +++ b/Src/DSInternals.DataStore/Enums/FunctionalLevel.cs @@ -1,4 +1,6 @@  +using System; + namespace DSInternals.DataStore { /// @@ -17,6 +19,9 @@ public enum FunctionalLevel : int Win2008R2 = 4, Win2012 = 5, Win2012R2 = 6, - WinThreshold = 7 + Win2016 = 7, + [Obsolete] + WinThreshold = Win2016, + Win2025 = 10 } }