https://github.com/Kitware/CMake
Raw File
Tip revision: 25d2850c190ba915a7527a29dda6efe61be901f0 authored by Brad King on 21 March 2024, 13:32:22 UTC
CMake 3.29.0
Tip revision: 25d2850
CMAKE_VS_VERSION_BUILD_NUMBER_COMPONENTS.txt
The components are:

``<major>.<minor>``

  The VS major and minor version numbers.
  These are the same as the release version numbers.

``<date>``

  A build date in the format ``MMMDD``, where ``MMM`` is a month index
  since an epoch used by Microsoft, and ``DD`` is a day in that month.

``<build>``

  A build index on the day represented by ``<date>``.

The build number is reported by ``vswhere`` as ``installationVersion``.
For example, VS 16.11.10 has build number ``16.11.32126.315``.
back to top