EDIT:
TL;DR: DLL generated. Don't know how to get the EXE to load the DLL that was dynamically compiled/build after EXE finishes compiling and starts executing in Visual Studio 2013. Would like a solution for this.
I'm probably making a mess in my solution directory in Visual Studio 2013.
The DLL has been generated, as shown here.
I have made my HandmadeHeroEXE project dependent on HandmadeHeroDLL project in the Solution Project Dependencies manager.
But the most confusing of all is LoadLibrary() not loading the handmade.dll, even when using an absolute file path. So, it isn't being used or loaded in correctly.
Here's a picture of my Project Properties configuration:
HandmadeHeroDLL Project Properties:
HandmadeHeroEXE Project Properties:
Is it because of the output directories/intermediate directories? Or is there something else I'm not doing right?