vote up 1 vote down star
1

By default ClickOnce will include all .xml files as data files. This results in the xml files are deployed in a data directory and not in the application directory.

Is there a way to generate the manifest from MSBuild/Mage that will include xml files as application files viz., not add the writeable="applicationData" attribute.

flag

2 Answers

vote up 1 vote down

You could try adding the XML files to the project and within their properties change:

[DELETED]

EDIT: Here's the information on changing the publish status of the file (with some modifications):

  • With a project selected in Solution Explorer, on the Project menu, click Properties.

  • Click the Publish tab.

  • Click the Application Files button to open the Application Files dialog box.

  • In the Application Files dialog box, select the XML file.

  • In the Publish Status field, select Include from the drop-down list.

link|flag
The property is set to Copy always. The question is more about the deployment manifest and the attribute. – sduplooy Aug 28 at 18:18
I believe I've found how to do it. I've modified my answer to reflect the changes required. – CAbbott Aug 28 at 18:57
Thanks, CAbbot. I found this question by searching and you solved my problem. – frou Aug 31 at 12:56
vote up 0 vote down

Can you just embed them as a resource in an assembly?

link|flag
Unfortunately not, it's two configuration files. – sduplooy Aug 28 at 18:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.