If you do not want to delete your .dproj and lose your settings, you can first check that the following line "DCC_UnitAlias" is missing:
<PropertyGroup Condition="'$(Base)'!=''">
<DCC_DependencyCheckOutputName>aida.exe</DCC_DependencyCheckOutputName>
<DCC_UnitAlias>WinTypes=Windows;WinProcs=Windows;$(DCC_UnitAlias)</DCC_UnitAlias>
</PropertyGroup>
If you do not see it, backup dproj and just add the missing line to the desired location ( <PropertyGroup Condition="'$(Base)'!=''">)
source
share