We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f44d708 + e620f45 commit 3349dcdCopy full SHA for 3349dcd
1 file changed
GVFS/GVFS.Common/ProcessHelper.cs
@@ -57,8 +57,10 @@ public static string GetCurrentProcessVersion()
57
58
public static bool IsDevelopmentVersion()
59
{
60
+ // Official CI builds use version numbers where major > 0.
61
+ // Development builds always start with 0.
62
string version = ProcessHelper.GetCurrentProcessVersion();
- return version.Equals("0.2.173.2") || version.StartsWith("0.2.173.2+");
63
+ return version.StartsWith("0.");
64
}
65
66
public static string GetProgramLocation(string programLocaterCommand, string processName)
0 commit comments