24 lines
1.5 KiB
Plaintext
24 lines
1.5 KiB
Plaintext
// Indicate the minimum OS version required for the binary to run properly.
|
|
// Updater will fail the update if the user does not meet this requirement.
|
|
OSMinimumVersionWin10=10.0.18362.0
|
|
OSMinimumVersionWin11=10.0.22000.0
|
|
|
|
// This is the runtime which was compiled against - providing a way for Updater to detect if update
|
|
// is needed before executing this binary. Note that, annoyingly, the version in environment
|
|
// variables does not match the "real" version. Consider:
|
|
// VersionInfo : File: C:\Program Files\Microsoft Visual Studio\18\Community\VC\Redist\MSVC\14.51.36231\vc_redist.x64.exe
|
|
// InternalName: setup
|
|
// OriginalFilename: VC_redist.x64.exe
|
|
// FileVersion: 14.51.36247.0
|
|
// FileDescription: Microsoft Visual C++ v14 Redistributable (x64) - 14.51.36247
|
|
// Product: Microsoft Visual C++ v14 Redistributable (x64) - 14.51.36247
|
|
// ProductVersion: 14.51.36247.0
|
|
// Whereas the environment variables look like:
|
|
// VCToolsInstallDir=C:\Program Files\Microsoft Visual Studio\18\Community\VC\Tools\MSVC\14.51.36231\
|
|
// VCToolsRedistDir=C:\Program Files\Microsoft Visual Studio\18\Community\VC\Redist\MSVC\14.51.36231\
|
|
// VCToolsVersion=14.51.36231
|
|
// We're really looking for "14.51.36247.00" (because that's what will appear in the registry once
|
|
// installed), NOT the other values!
|
|
VCToolsVersion=${VC_TOOLS_VERSION}
|
|
VCToolsUpdateURL=https://aka.ms/vc14/vc_redist.x64.exe
|