How do I get the runCommand provider to work in the `Manifest.xml`
of a MS Deploy package when installed via the Web Platform Installer? See the Stack Overflow question (http://stackoverflow.com/questions/12485887/ms-webpi-package-runcommand-not-working-in-manifest-xml) for more details.
I'm building a simple test MS Web Deploy package installable by
the Web Platform Installer via a [custom feed][2]. I'm trying to use
the `runCommand` provider in the Manifest.xml (https://github.com/rpatterson/iiswsgi/blob/05d68464d8fdc360387b9976984b74dd4e0d6827/sample.msdeploy/Manifest.xml
) file, but it doesn't work for any number of different `path` values. When I install the package via the Web Platform Installer with any `path` attribute
I get the same error: "EXCEPTION: System.IO.FileNotFoundException: Could not find file '\\?\C:\Users\rpatterson\Documents\My Web Sites\IISWSGISampleApp'". It installs just fine if I remove the `` element from the `Manifest.xml`. I'm doing all this under Windows 7 Professional, Web Platform
Installer 4.0, and Web Matrix 2.0 RC. The code behind all this is in IISWSGI on GitHub, use this commit (https://github.com/rpatterson/iiswsgi/commit/05d68464d8fdc360387b9976984b74dd4e0d6827) to test.
↧