Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cloning Visual Studio 2012 publishing profiles

How do I copy a visual studio publishing profile?

like image 861
Alex Avatar asked Oct 02 '12 18:10

Alex


People also ask

Where are Visual Studio Publish profiles stored?

Publish profile files are named <profilename>. pubxml and are located in the PublishProfiles folder. The PublishProfiles folder is under Properties in a C# web application project, under My Project in a VB web application project, or under App_Data in a web site project.

How do I change the target location in publishing Visual Studio?

From the Solution Explorer, I right-click the Project node and click "Publish..." In the Publish dialog, I select "Publish to File System". This will create a . WSP file in the folder listed in "Target Location".


1 Answers

The only solution I found is to copy/paste/rename the publish settings file (.pubxml) in the Properties\PublishProfiles directory.

When you create a new publish profile, two files are created : .pubxml and .pubxml.user. The .pubxml.user file contains only a few settings that apply to a specific user, such as an encrypted password.

like image 118
Cybermaxs Avatar answered Oct 21 '22 04:10

Cybermaxs