Hi Friends,
I have resolved this issue. I got below hint from the link
http://weblogs.asp.net/leftslipper/archive/2010/05/27/creating-visual-studio-projects-that-only-contain-static-files.aspx. This link is about how to resolve the problem in a c# project .cxproj. I applied same solution to a vcxproj.
The first step in editing the csproj file is to remove the reference to the Microsoft.CSharp.targets file because the project doesn’t contain any C# code:
<import project="$(MSBuildToolsPath)\Microsoft.CSharp.targets">
The second step is to define the new Build, Clean, and Rebuild targets to delete and then copy the content files:
<target name="Build">
<copy>
SourceFiles="@(Content)"
DestinationFiles="@(Content->'$(OutputPath)%(RelativeDir)%(Filename)%(Extension)')" />
</copy></target>
<target name="Clean">
<exec command="rd /s /q $(OutputPath)" condition="Exists($(OutputPath))" />
</target>
<target name="Rebuild" dependsontargets="Clean;Build">
</target>
Thanks you all for the effort you spent for me.
Best Regards
Aseem Sharma