Set EXE name based on preprocessor directive condition?

Aug 16 2005 5:51 AM
Hi,

I have a project that needs to output different EXEs based on a value stored in a 
preprocessor directive "constant":

#If ExeType = "LITE" Then
  // Make "abcLITE.exe"
#
Else
  // Make "abcFULL.exe"
#End
If

Is there a way to implement this in VS.NET?

Thanks,
John.


Answers (1)