I'm running a batch file from Visual Studio during the AfterPublish event. I'm doing a file system publish, and having trouble with the second parameter as in:
<Exec Command="$(SolutionDir)\PostBuildEventPublish.bat "$(ProjectDir)" "$(ProjectDir)"" />
I really need the second parameter to point to the output path where I specified to publish to. The above line works now since I wanted to test if the batch file was working in the first place but now I need the batch file to work against where I'm publishing to.
Thanks much for any help