Click here to Skip to main content
15,881,173 members
Articles / All Topics

Tips & Tricks: How to change the output location of the Silverlight XAP?

Rate me:
Please Sign up or sign in to vote.
5.00/5 (3 votes)
10 Aug 2010CPOL2 min read 20.4K   2   2
Description about changing the location of the output of your Silverlight application

In this Tips&Tricks, I will describe about changing the location of the output of your Silverlight application, i.e., the .XAP file from its original “ClientBin” location to a different place. Developers sometimes need to put the XAP file in a specific directory based on their requirement. This trick will help them to relocate the XAP file.

Read the full post and if you have any queries or suggestions, please let me know. I appreciate your feedbacks.

To change the location of the output XAP file, just follow the steps below:

  • Right click on the Web Application project.
  • Click on the "Properties" from the context menu.
  • Click on "Silverlight Applications" from the left panel as shown in the below snapshot.

image

  • Click the project name from the right panel.
  • Click Remove. This step is required. Else, the next step will generate a duplicate copy in both the locations while building the project.
  • Click on “Yes” in the dialog that pops up in the screen.

    image

  • Click on "Add" to add a new configuration setting.

    image

  • Now, you can choose the new output location for your Silverlight Application.
  • Clear the "Destination folder" textbox ("ClientBin" will be there by default). Now type your new location. It can be absolute or relative path. Here, I put relative location “MyNewClientBin”.

    image

  • Click "Add" in the popup dialog box to confirm your new location of the .XAP file.
  • Click "Yes" in the dialog that pops up in the screen. This replaces the existing HTML page with a new one referring to the new location of the .XAP file.

    image

  • Click “Yes” once again in the popup dialog box. This now ensures the aspx page will be replaced with a new one referring to the new location of your .XAP file.

    image

  • Now build your solution. You will get the output XAP in the mentioned location.

    image

  • You will see that the new folder has been created automatically in your project directory and the new XAP is hosted inside that. In our case, it is “MyNewClientBin”. If you mentioned an absolute path, you will see the XAP created there.

So, what next? Go and put your publish anywhere you want. Don't forget to provide your feedback.


This article was originally posted at http://www.kunal-chowdhury.com/feeds/posts/default

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead
India India

Kunal Chowdhury is a former Microsoft "Windows Platform Development" MVP (Most Valuable Professional, 2010 - 2018), a Codeproject Mentor, Speaker in various Microsoft events, Author, passionate Blogger and a Senior Technical Lead by profession.

He is currently working in an MNC located in India. He has a very good skill over XAML, C#, Silverlight, Windows Phone, WPF and Windows app development. He posts his findings, articles, tutorials in his technical blog (www.kunal-chowdhury.com) and CodeProject.


Books authored:


Connect with Kunal on:





Comments and Discussions

 
GeneralMy vote of 5 Pin
venugopalm11-Aug-10 9:11
venugopalm11-Aug-10 9:11 
GeneralRe: My vote of 5 Pin
Kunal Chowdhury «IN»11-Aug-10 16:43
professionalKunal Chowdhury «IN»11-Aug-10 16:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.