Conditional AssemblyNames

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi all,
I have a simple .NET(C#) project and I want to make different names of my
output assemblies depending from Current Configuration.
I mean Assembly named "NameDebug.exe", if i'm in Debug mode and
"NameRelease.exe" if I'm in Release mode :).
Is it possible to do that and if it is not, how can I workaround this problem?

Regards:
KalliMan
 
Hello KalliMan,

Nope, you cant using VS IDE.
but you can build your app using different configs for the MSBUID

---
WBR, Michael Nemtsev [.NET/C# MVP].
My blog: http://spaces.live.com/laflour
Team blog: http://devkids.blogspot.com/

"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo

K> Hi all,
K> I have a simple .NET(C#) project and I want to make different names
K> of my
K> output assemblies depending from Current Configuration.
K> I mean Assembly named "NameDebug.exe", if i'm in Debug mode and
K> "NameRelease.exe" if I'm in Release mode :).
K> Is it possible to do that and if it is not, how can I workaround this
K> problem?
K> Regards:
K> KalliMan
 
Hi Michael,
Thank you for your response.

Can you be more specific? Do you mean that I have to have several csproj
files for different Assembly names?

Regards:
KalliMan
 
Back
Top