File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
Dependencies/max/Code/max/Compiling/Configuration/Compiler Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 26
26
27
27
28
28
- name : Update NuGet packages
29
- uses : nuget update
29
+ run : nuget restore .\Projects\VisualStudio\maxGUI.sln
30
30
31
31
- name : Build
32
32
working-directory : ${{env.GITHUB_WORKSPACE}}
Original file line number Diff line number Diff line change 11
11
12
12
#define MAX_COMPILER_MESSAGE ( Message ) __pragma( message( Message ) )
13
13
14
- #if _MSC_VER > 1938
14
+ #if _MSC_VER > 1939
15
15
MAX_COMPILER_MESSAGE ( " Compiling with a newer version of MSVC than max recognizes. Using last known version." );
16
+ #elif _MSC_VER >= 1939
17
+ // MSVC++ (Visual Studio 2022 / version 17.9)
18
+ #define MAX_COMPILER_VERSION_MAJOR 17
19
+ #define MAX_COMPILER_VERSION_MINOR 9
16
20
#elif _MSC_VER >= 1938
17
- // MCVC ++ (Visual Studio 2022 / version 17.8)
21
+ // MSVC ++ (Visual Studio 2022 / version 17.8)
18
22
#define MAX_COMPILER_VERSION_MAJOR 17
19
23
#define MAX_COMPILER_VERSION_MINOR 8
20
24
#elif _MSC_VER >= 1937
You can’t perform that action at this time.
0 commit comments