Reputation: 3095
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
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
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