In a previous post, I showed you how you can deploy your application using ClickOnce. Looking at how to deploy extra files, like my first look at ClickOnce, was prompted by a post on vbCity.
Now I will admit that I wasn’t as sharp answering the original question as I could have been so be gentle with your opinion of me if you read through the thread. (In fact it took me two days to work out that when the person asking mentioned the "Publish" tab that they meant ClickOnce. I guess this is what I get for trying to answer questions a 3:30am.)
Once I was in synch with the problem a little research provided me with an answer.
You would have thought that once you added the files to your project in Visual Studio that they would be automatically included in the deployment package but this is not the case. I added the file to my project,

but if you were to then take a look at the files that are included in the deployment package by going to the Publish tab of your projects properties page and click the "Application Files" button you get a nasty little shock.

No additional file even though we have added it to the project.
The reason for this is that we have not told Visual Studio what we want to do with the file. What is needed is to make one change to the properties of the file. The property we want to change is the Build property.
By default, depending on the extension of the file, when you add a file to a Visual Studio project the Build property is set to "None".

(If you were using a deployment method like creating a Windows Installer file (.msi) then this would not be a problem because of the was you create the Installer file. With ClickOnce deployment unless you change the Build property it assumes that you don’t want to include the file in the deployment package.)
In the properties window of the file select “Content” from the choices for the files Build property.

Now ClickOnce will recognize that the file is to be deployed with your application and if you go back to the My Properties page of your app, click on the "Publish" tab and click on the "Application Files" button you will see that the file in the list of files to be included.

Publish your application, then you can do a test install and you will see by looking at the files that are installed on your computer now include the additional files.
