diff --git a/GVFS/GVFS.Common/ProcessHelper.cs b/GVFS/GVFS.Common/ProcessHelper.cs index 4fa57fbaf..3d7e35463 100644 --- a/GVFS/GVFS.Common/ProcessHelper.cs +++ b/GVFS/GVFS.Common/ProcessHelper.cs @@ -57,8 +57,10 @@ public static string GetCurrentProcessVersion() public static bool IsDevelopmentVersion() { + // Official CI builds use version numbers where major > 0. + // Development builds always start with 0. string version = ProcessHelper.GetCurrentProcessVersion(); - return version.Equals("0.2.173.2") || version.StartsWith("0.2.173.2+"); + return version.StartsWith("0."); } public static string GetProgramLocation(string programLocaterCommand, string processName)