Resolved Adding files for deployment?

jcardana

Old to VB6, New to VB.NET
Joined
Oct 26, 2015
Messages
72
Location
Rio Rancho, NM
Programming Experience
Beginner
I have a PDF manual for my little app. Is there a way to have it added to the list of files to copy when the app is installed?

I'm looking at the Manifest but nothing is grabbing my attention.
 
Add the file to project and in Properties set Build Action to Content.
In publish settings Application Files make sure the file is set as Include.
 
Solution
Thank you.
Follow up question. If I make changes to the PDF, will VS update the file in the project, or do I do this all over again?
 
Yes, if you update the file that is included in your project. Files outside project folder can be included (Add existing item), but generally you should keep the files there, "outside" files have a tendency to get lost over time.
 
Back
Top