How do I change the name of an existing project in Visual Studio 2008?
How to change the name of a project in VS 2008 to somethin开发者_运维百科g else? I have already created a project and now I want to change its name.
Several ways:
- Right click the project and select
Rename
- Select and press F2
- Click-wait-click
To change the name of the output assembly you need to right click and select Properties
. Change Assembly Name
in the Application
tab.
To rename your project:
- Right-click on the project in the Solution Explorer.
- Click "Rename".
- Type in your new name, and then press Enter.
To rename the assembly it generates:
- Double-click on the "Properties" node for your project in the Solution Explorer.
- Change the text in the "Assembly name" textbox.
Right mouse click the project and choose rename.
精彩评论