Visual Studio Installer (MSI) warning: WARNING: Could not find prerequisite ‘.NET Framework 2.0 (x86)’ in path ‘C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bootstrapper\’ or WARNING: Could not find prerequisite ‘.NET Framework 2.0 (x86)’ in path ‘C:\Program Files\Microsoft SDKs\Windows\v7.0A\Bootstrapper\’ The result is that automatic downloading of prerequisites does not work any more. This is caused by fact, that Visual …
Category Archives: Programming
It seems that _SECURE_SCL_THROWS is deprecated in Visual Studio C++ 2010
It seems that _SECURE_SCL_THROWS is deprecated in Visual Studio C++ 2010. Because include file ‘Microsoft Visual Studio 10.0\VC\include\yvals.h’ has the following code block: #if _SECURE_SCL_THROWS #ifndef _SILENCE_DEPRECATION_OF_SECURE_SCL_THROWS … #undef _SECURE_SCL_THROWS #pragma _CRT_WARNING( _DEPRECATE_SECURE_SCL_THROWS ) … It gets undefined, and if you search c++ header files, there are no references to _SECURE_SCL_THROWS anymore. The strange part …
Continue reading “It seems that _SECURE_SCL_THROWS is deprecated in Visual Studio C++ 2010”
Free (Open Source) C++ Profiler for Visual Studio 2008
Visual Studio 2008 Pro does not ship with native profiler. Only Team edition does. Sleepy is a C/C++ CPU profiler for Windows systems. Very Sleepy is improved version with Threading support and much more. Thanks to codersnotes.com, Richard Mitton, Nicholas Chapman, Dan Engelbrecht.