So I have my Config set to
Project Type: GUI Application
My VS2015 created solution however sets the Target extension to .dll instead of .exe (Debug and Release)
In the updated vcxproj after I make the change:
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<TargetExt>.exe</TargetExt>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<TargetExt>.exe</TargetExt>
</PropertyGroup>
Cheers,
Rail
