I have created a ClickOnce application in which I need a prerequisite to be installed, which I have also created. The prerequisite needs to download two2 files-- an executable and an additional file. When I run the prerequisite installation, the additional file could not be found and hence fails. Here are the steps I've followed trying to diagnose of fix this problem.
- I've looked in the tmp folder and only the executable is present.
- The products.xml holds two entries for both files in the attribute.
- The additional file is deployed correctly to the web server.
- The additional file is an .xpi file for which a MIME type was added to IIS.
- I tried to set
CopyAllPackageFiles = "true"
but that hasn't helped.
Please advice.