You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
eprintln!("Detected VC++ Redistributable version (x64): {}", version);
69
+
let threshold = "14.44.0.0";
70
+
if !is_version_at_least(&version, threshold){
71
+
eprintln!(
72
+
"Version is below {}. Please download/upgrade the Visual C++ Redistributable. Help: https://learn.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist?view=msvc-170#latest-supported-redistributable-version ",
73
+
threshold
74
+
);
75
+
}else{
76
+
eprintln!("MSVC Version: {} meets the requirement.", version);
77
+
}
78
+
}else{
79
+
eprintln!(
80
+
"Visual C++ Redistributable version not found. Please install it. Help: https://learn.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist?view=msvc-170#latest-supported-redistributable-version"
0 commit comments