diff --git a/pykd/pydbgeng.cpp b/pykd/pydbgeng.cpp
index d711906..40358b8 100644
--- a/pykd/pydbgeng.cpp
+++ b/pykd/pydbgeng.cpp
@@ -57,7 +57,8 @@ std::wstring printSystemVersion( kdlib::SystemInfo& sysInfo )
std::wstringstream sstr;
sstr << L"Major Version: " << sysInfo.majorVersion << std::endl;
- sstr << L"Minor Version: " << sysInfo.minorVersion << std::endl;;
+ sstr << L"Minor Version: " << sysInfo.minorVersion << std::endl;
+ sstr << L"Build: " << sysInfo.buildNumber << std::endl;
sstr << L"Description: " << sysInfo.buildDescription << std::endl;
return sstr.str();
diff --git a/pykd/pykd.rc b/pykd/pykd.rc
index 8cdd8af..b6d6e40 100644
Binary files a/pykd/pykd.rc and b/pykd/pykd.rc differ
diff --git a/pykd/pykd_vc120.vcxproj b/pykd/pykd_vc120.vcxproj
index 75d2284..77432d8 100644
--- a/pykd/pykd_vc120.vcxproj
+++ b/pykd/pykd_vc120.vcxproj
@@ -146,6 +146,7 @@
true
WIN32;NDEBUG;_WINDOWS;_USRDLL;PYKD_EXPORTS;%(PreprocessorDefinitions)
$(ProjectDir)..\kdlibcpp\include
+ MultiThreaded
Windows
@@ -165,6 +166,7 @@
true
WIN32;NDEBUG;_WINDOWS;_USRDLL;PYKD_EXPORTS;%(PreprocessorDefinitions)
$(ProjectDir)..\kdlibcpp\include;
+ MultiThreaded
Windows
diff --git a/pykd/pykdver.h b/pykd/pykdver.h
index 114dc7a..1865eee 100644
--- a/pykd/pykdver.h
+++ b/pykd/pykdver.h
@@ -2,7 +2,7 @@
#define PYKD_VERSION_MAJOR 0
#define PYKD_VERSION_MINOR 3
#define PYKD_VERSION_SUBVERSION 0
-#define PYKD_VERSION_BUILDNO 20
+#define PYKD_VERSION_BUILDNO 21
#define __VER_STR2__(x) #x
#define __VER_STR1__(x) __VER_STR2__(x)
diff --git a/pykd_bootstrapper/pykd_bootstrapper_vc120.vcxproj b/pykd_bootstrapper/pykd_bootstrapper_vc120.vcxproj
index 49e44c1..842b659 100644
--- a/pykd_bootstrapper/pykd_bootstrapper_vc120.vcxproj
+++ b/pykd_bootstrapper/pykd_bootstrapper_vc120.vcxproj
@@ -73,19 +73,19 @@
true
- pykd
+ $(ProjectName)
true
- pykd
+ $(ProjectName)
false
- pykd
+ $(ProjectName)
false
- pykd
+ $(ProjectName)
@@ -100,7 +100,7 @@
Windows
true
export.def
- $(OutDir)$(TargetName)$(TargetExt)
+ $(OutDir)pykd$(TargetExt)
@@ -116,7 +116,7 @@
Windows
true
export.def
- $(OutDir)$(TargetName)$(TargetExt)
+ $(OutDir)pykd$(TargetExt)
@@ -137,7 +137,7 @@
true
true
export.def
- $(OutDir)$(TargetName)$(TargetExt)
+ $(OutDir)pykd$(TargetExt)
@@ -158,7 +158,7 @@
true
true
export.def
- $(OutDir)$(TargetName)$(TargetExt)
+ $(OutDir)pykd$(TargetExt)
diff --git a/pykd_bootstrapper/stdafx.h b/pykd_bootstrapper/stdafx.h
index 677e68a..a8b112f 100644
--- a/pykd_bootstrapper/stdafx.h
+++ b/pykd_bootstrapper/stdafx.h
@@ -12,5 +12,6 @@
#include
+#define BOOST_PYTHON_STATIC_LIB
// TODO: reference additional headers your program requires here