1 Attachment(s)
[RESOLVED] Change assembly info based on configuration?
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.
Attachment 175515
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