Hey all,
Does anyone know how to change the AssemblyInfo.vb file based on the selected configuration (Release, Debug etc.)?
We basically want to change this stuff depending on who the build targets.
thanks.
Edit
Turns out you can use compiler directives directly inside AssemblyInfo.vb file...
VB.Net Code:
#If OneWay Then <Assembly: AssemblyTitle("One Title")> #Else <Assembly: AssemblyTitle("Another Title")> #End If




Reply With Quote