I currently have a console project which creates an .exe file; I want it to also create a .lib file so other projects, compiled as DLLs, would be able to call functions from the
It is amazing how many contributors arrogantly insists on an answer that is wrong, when they simply don't know the answer.
To generate a .lib associated with your .exe place the following line in Pre-Link Event:
"$(VC_ExecutablePath_x86)\lib.exe" /out:"$(OutDir)$(ProjectName).lib" "$(IntermediateOutputPath)*.obj"