tags:

views:

17

answers:

2

Hi, i am building a VC++ project named FileOut , when i build the application i get an exe named FileOut.exe. Is there any way that i get an exe with different name like File.exe

+1  A: 

I got this , Go to Project Properties -> Linker -> General -> output file , change the name from $(OutDir)\$(ProjectName).exe to your name like $(OutDir)\YourName.exe

rajivpradeep
+1  A: 

Right click on the project and choose Properties.

Find the Linker section, and edit the Output File setting as you wish.

Jason Williams