A
Anil Gupte
Is there any way to define a variable that recognizes Debug versus Release
versions? Basically, in the two versions, I want to use different
directiories for certain tasks. For example
If (Version is Release)
ContentFilesDir = "C:\Content"
Else
ContentFilesDir =
System.Reflection.Assembly.GetExecutingAssembly().Location()
End If
I know C++ has something like this (IFDEF?), but how do I do it in VB.Net
2003?
TIA,
versions? Basically, in the two versions, I want to use different
directiories for certain tasks. For example
If (Version is Release)
ContentFilesDir = "C:\Content"
Else
ContentFilesDir =
System.Reflection.Assembly.GetExecutingAssembly().Location()
End If
I know C++ has something like this (IFDEF?), but how do I do it in VB.Net
2003?
TIA,