pradeep
pradeep

Reputation: 3095

How to change the name of a VC++ project?

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

Upvotes: 0

Views: 2756

Answers (2)

Jason Williams
Jason Williams

Reputation: 57892

Right click on the project and choose Properties.

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

Upvotes: 1

pradeep
pradeep

Reputation: 3095

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

Upvotes: 1

Related Questions