Renaming C++ executables in .NET

C

cgparis

I am new to .NET and have this task to research. We are currently
building an applicacion with C++ and C code under Visual Studio .NET
2003. We are interested in naming the executables created with a
different name than the project (.vcproj) it gets generated from.

For example, given project

compile_vxmlgram.vcproj

we'd like to generate an executable from it called:

vxmlgram_compiler.exe

Can this be done and, if so, what are the options to do the namespace
renaming? Can this be specified in the .vcproj fiel itself? Any tips
in this regard will be greatly appreciated. Thanks!

--Carolina
 
W

William DePalo [MVP VC++]

cgparis said:
I am new to .NET and have this task to research. We are currently
building an applicacion with C++ and C code under Visual Studio .NET
2003. We are interested in naming the executables created with a
different name than the project (.vcproj) it gets generated from.

From the IDE's menu:

Project->Properties->Linker->Output File

Regards,
Will
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top