I have installed visual studio 2012 xpress for desktop application. To use mfc framework also installed wdk 7.1 and include files and libraries. after that i executed the code:

"
#include<afxwin.h>

//#pragma comment(lib, "uafxcwd")

struct CSimpleApp : public CWinApp
{
BOOL InitInstance() { return TRUE; }
};
CSimpleApp theApp; "

But it is showing error:
Error 1 error LNK1104: cannot open file 'uafxcwd.lib'

I tried with both shared and static mfc library with both character set i.e. unicode and multi byte.

Please help me