1 -*- mode: outline; coding: utf-8 -*- |
|
2 |
|
3 * Downloads. |
|
4 |
|
5 ** MSVC. |
|
6 |
|
7 |
|
8 |
|
9 ** SDK. |
|
10 |
|
11 http://msdn.microsoft.com/en-us/windows/bb980924.aspx |
|
12 Windows SDK |
|
13 |
|
14 * Register SDK to Visual Studio. |
|
15 |
|
16 To check all available version: |
|
17 |
|
18 cmd> cd %PROGRAMFILES%\Microsoft SDKs\Windows\vX.X\Setup\ |
|
19 cmd> WindowsSdkVer.exe -version |
|
20 |
|
21 To check current used version: |
|
22 |
|
23 cmd> cd %PROGRAMFILES%\Microsoft SDKs\Windows\vX.X\Setup\ |
|
24 cmd> WindowsSdkVer.exe -current |
|
25 |
|
26 Register SDK: |
|
27 |
|
28 cmd> cd %PROGRAMFILES%\Microsoft SDKs\Windows\vX.X\Setup\ |
|
29 cmd> WindowsSdkVer.exe -version:v6.1 |
|
30 |
|
31 * MSVC versions. |
|
32 |
|
33 NAME VER _MSC_VER cl |
|
34 |
|
35 Visual Studio 6.0 (1998) 6.0 1200 |
|
36 Visual Studio .NET (2002) 7.0 1300 |
|
37 Visual Studio .NET 2003 7.1 1310 |
|
38 Visual Studio 2005 8.0 1400 14.00 |
|
39 Visual Studio 2008 9.0 1500 15.00 |
|
40 Visual Studio 2010 10.0 1600 16.00 |
|
41 |
|
42 To check version from command line: |
|
43 |
|
44 cmd# cl /help 2>&1 | head -n 1 |
|
45 Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 16.00.30319.01 for 80x8 |
|
46 cmd# cl /help 2>&1 | head -n 1 | sed "s=.*Version \([0-9]*\)\.\([0-9]*\)\..*=\1.\2=" |
|
47 16.00 |
|
48 |
|
49 http://predef.sourceforge.net/precomp.html#sec35 |
|
50 |
|
51 * MFC versions. |
|
52 |
|
53 MFC version Visual C++ version |
|
54 |
|
55 1.0 Microsoft C/C++ 7.0 |
|
56 2.0 Visual C++ 1.0 |
|
57 2.5 Visual C++ 1.5 |
|
58 3.0 Visual C++ 2.0 |
|
59 3.1 Visual C++ 2.1 |
|
60 3.2 Visual C++ 2.2 |
|
61 4.0 Visual C++ 4.0 |
|
62 4.1 Visual C++ 4.1 |
|
63 4.2 Visual C++ 4.2 |
|
64 4.21 (mfc42.dll) Visual C++ 5.0 |
|
65 6.0 (mfc42.dll) Visual C++ 6.0 |
|
66 7.0 (mfc70.dll) Visual C++ .NET 2002 |
|
67 7.1 (mfc71.dll) Visual C++ .NET 2003 |
|
68 8.0 (mfc80.dll) Visual C++ 2005 |
|
69 |
|
70 http://msdn.microsoft.com/en-us/library/3z02ch3k.aspx |
|
71 ATL and MFC Version Numbers |
|
72 |
|
73 * ALT version. |
|
74 |
|
75 ATL version Visual C++ version |
|
76 |
|
77 1.0, 1.1, 2.0 None. Released to Web in Visual C++ 4.x time frame. |
|
78 3.0 Visual C++ 6.0 |
|
79 7.0 Visual C++ .NET 2002 |
|
80 7.1 Visual C++ .NET 2003 |
|
81 8.0 Visual C++ 2005 |
|
82 |
|
83 http://msdn.microsoft.com/en-us/library/3z02ch3k.aspx |
|
84 ATL and MFC Version Numbers |
|
85 |
|
86 * MS SDK version. |
|
87 |
|
88 VER |
|
89 |
|
90 Included in Visual Studio 2005 v5.0 |
|
91 Included in Visual Studio 2008 v6.0A |
|
92 SDK Update for Windows Vista |
|
93 SDK for Windows Server 2008 and .NET Framework 3.5 v6.1 |
|
94 Included in Visual Studio 2010 Express v7.0A |
|
95 SDK for Windows 7 and .NET Framework 3.5 SP 1 v7.0 |
|
96 SDK for Windows 7 and .NET Framework 4 v7.1 |
|
97 |
|
98 http://msdn.microsoft.com/en-us/windows/dd146047.aspx |
|
99 Which SDK do I install? |
|
100 http://en.wikipedia.org/wiki/Microsoft_Windows_SDK#Versions |
|
101 |
|
102 * MSVC and SDK compatibility. |
|
103 |
|
104 v6.1: MSVC 2005, 2008 + express |
|
105 v7.0: MSVC 2008 + express |
|
106 v7.1: MSVC 2005, 2008, 2010 + express |
|
107 |
|
108 * Build MSVC project from command line. |
|
109 |
|
110 cmd> cd %proj% |
|
111 cmd> %WINDIR%\Microsoft.NET\Framework\v2.0.50727\msbuild.exe file.sln |
|
112 |
|
113 'msbuild.exe' can not upgrade Visual Studio project files, so you better use 'vcbuild.exe' (which |
|
114 present in MSVC version 8.0/9.0): |
|
115 |
|
116 cmd> cd %proj% |
|
117 cmd> %MSVC_ROOT%\VC\vcpackages\vcbuild.exe file.sln |
|
118 cmd> %MSVC_ROOT%\VC\bin\amd64\vcbuild.exe file.vcproj |
|
119 |
|
120 cmd> cd %proj% |
|
121 cmd> %MSVC_ROOT%\Common7\IDE\devenv.exe /Clean file.sln |
|
122 cmd> %MSVC_ROOT%\Common7\IDE\devenv.exe /Build file.sln |
|
123 cmd> %MSVC_ROOT%\Common7\IDE\devenv.exe /Deploy file.sln |
|
124 |
|
125 http://msdn.microsoft.com/en-us/library/ms164311.aspx |
|
126 MSBuild Command Line Reference |
|
127 http://msdn.microsoft.com/en-us/library/kdxzbw9t.aspx |
|
128 VCBUILD Command Line |
|
129 http://msdn.microsoft.com/en-us/library/xee0c8y7.aspx |
|
130 Devenv Command Line Switches |
|
131 |
|
132 * Check linking problem. |
|
133 |
|
134 Use '/verbose:lib' to see list of libraries for linking and thier order. |
|
135 |
|
136 * Buy MSVC. |
|
137 |
|
138 http://msdn.microsoft.com/ru-ru/subscriptions/subscriptionschart.aspx |
|
139 Сравнение подписок MSDN |
|
140 |
|