Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to change the output name of an executable built by Visual Studio

I want to change name of executable file. Like suppose my project name is "SampleDemo" It will create executable file Like 'SampleDemo.exe' but I want to rename it to 'Demo.exe'

like image 662
Kiran Desai Avatar asked Feb 03 '15 14:02

Kiran Desai


People also ask

How do I change my Csproj name?

Right-click on the project name & click reload the project. Then rename the project name as highlighted below & save. It will automatically rename the . csproj file.

What is the executable file for Visual Studio?

Other files include the "object" files created by the compiler when you code is compiled, the "executable" file (*.exe) that Visual Studio creates by linking your compiled code with other code, libraries, etc.


1 Answers

  1. Open the Project Properties in Visual Studio (right click on project in Solution Explorer and select "Properties" from popup menu)
  2. On the "Application" tab of the properties window, change the "Assembly name"
like image 59
Ross McNab Avatar answered Sep 22 '22 00:09

Ross McNab