Version.h 382 B

1234567891011
  1. #pragma once
  2. // This is the number that will end up in the version window of the DLLs.
  3. // Increment this version before committing a new build if you are today's shell_integration build master.
  4. #define NCEXT_BUILD_NUM 47
  5. #define STRINGIZE2(s) #s
  6. #define STRINGIZE(s) STRINGIZE2(s)
  7. #define NCEXT_VERSION 3,0,0,NCEXT_BUILD_NUM
  8. #define NCEXT_VERSION_STRING STRINGIZE(NCEXT_VERSION)