vote up 3 vote down star

Is there a way to set visual studio to publish all pdf files?

I know that you can set each indivdual pdf file in a project with the "Copy to Outpub Directory" property.

But that means doing the same thing 100's of times for my current project, is there a way to change a global setting to do the same thing?

flag

Publish PDF files? How about putting the PDF files outside your project and mapped them via virtual folder at your webserver? – o.k.w Oct 29 at 10:57
The web servers not really the issues, the problem is getting pdf fiels whicvh are used and manuals / documents / downloads are added to the project, but you need to set each one so that when you publish there are transfered to the server. once there its all fine. – TheAlbear Oct 29 at 11:02
How about using multi-selection? Just a few mouse clicks and you are done. Or, if you PDF documents are spread among the project tree, open the project file in a text editor and do a global search and replace. – divo Oct 29 at 11:31
Still menas clicking on each file, i was hopig there was a global setting for all projects that i could set and then forget about. – TheAlbear Oct 29 at 11:44

2 Answers

vote up 1 vote down check

Add a post build event with the following command:

xcopy "$(ProjectDir)myPdfs\*.pdf" "$(TargetDir)myPdfs\" /S /Y

Note in the above command myPdfs is just a subfolder of your project directory that contains all the PDF files. If you have more than one of these subfolders you need to run the command for each.

Hope this works!!

link|flag
Looks like this is the best option. – TheAlbear Nov 3 at 12:33
vote up 0 vote down

You could edit your project file directly to add the required <CopyToOutputDirectory>Always</CopyToOutputDirectory> elements to the PDF files. (If your project isn't under source control, test on a copy first and keep backups in case it all goes wrong)

link|flag

Your Answer

Get an OpenID
or

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