Hmm... you shouldn't have problems if it isn't there. corewin_express.vsprops is just a default setting that adds "kernel32.lib" to the "Additional Dependencies"-field in the linker options of your project. But if you want it here is the content:
Quote:
<?xml version="1.0"?>
<VisualStudioPropertySheet
ProjectType="Visual C++"
Version="8.00"
Name="Core Windows Libraries">
<Tool
Name="VCLinkerTool"
AdditionalDependencies="kernel32.lib" />
</VisualStudioPropertySheet>
|
Just create the file and copy&paste the quoted text into it.
Have fun