Skip to content

Commit d1091b3

Browse files
Yu Leng (from Dev Box)claude
andcommitted
[KBM] Lower TSF4 OS version threshold for testing
Set IsTsf4Supported() to Build >= 10000 so all Windows 10/11 machines pass the check. This enables testing the Text Expand UI flow on any dev machine. The threshold will be raised to the correct build number before shipping. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 0e137a3 commit d1091b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common/ManagedCommon/OSVersionHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public static bool IsGreaterThanWindows11_21H2()
2929
/// </summary>
3030
public static bool IsTsf4Supported()
3131
{
32-
return Environment.OSVersion.Version.Major >= 10 && Environment.OSVersion.Version.Build >= 99999;
32+
return Environment.OSVersion.Version.Major >= 10 && Environment.OSVersion.Version.Build >= 10000;
3333
}
3434
}
3535
}

0 commit comments

Comments
 (0)