I user <GenerateBootstrapper> msbuild task to build setup.exe. I set "ComponentsLocation" to "Relative" & "CopyComponents" to "False". After I launch the compiled setup.exe, it loads all components only from its same location. How can I make it load the components from it parentfolder. for example:

--root

|--folder-a

|--setup.exe

|--folder-b

|--dotnetfx

the restriction is: I don't want use any http site or share unc path to host those prerequisites.

thanks.