c++

10/07/2007 21:08 yente#1
hey , ich hab ein probleem , ich lerne fur c++ aber ist ertwas fucked up
kan iemand mit c++ diese file uploaden bitte? :

corewin_express.vsprops

path :

c:/program files/Microsoft Visual Studio8/VC/VCProjectDefaults

danke
10/08/2007 17:09 ingam0r#2
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 :)