VS2008 - Outputting a different file name for Debug/Release configurations

后端 未结 3 1069
迷失自我
迷失自我 2020-12-15 17:25

When building a C# application with Visual Studio 2008, is it possible to set a different output filename per configuration?

e.g.

MyApp_Debug.exe
MyApp_Rele         


        
3条回答
  •  甜味超标
    2020-12-15 18:09

    I'm sure there is, however in my experience having different filenames for debug / release configurations is a bad idea as it can cause all sorts of problems (very much like the issue VS has when it tries to execute the renamed app)

    Why not simply indicate whether or not its debug / release in the Assembly attributes (for example in the comments)

提交回复
热议问题