I\'ve seen a few posts related to this topic but none with any conclusive answers...
When debugging my VS.NET 2010 app, I\'m trying to start an external program whos
You can change the .user in notepad while solution is closed to even include relative paths. It is ,however, horrific. Example:
<StartProgram>$([System.IO.Path]::GetDirectoryName($([System.IO.Path]::GetDirectoryName($(SolutionDir))))\MyCustomBindir\MyCustomProgram.exe</StartProgram>
This is without scroll
<StartProgram>
$([System.IO.Path]::GetDirectoryName($([System.IO.Path]::GetDirectoryName( $(SolutionDir))
))\MyCustomBindir\MyCustomProgram.exe
</StartProgram>
The windows predefined folders can be used too.
<StartProgram>$(AppData)\MyCustomBindir\MyCustomProgram.exe</StartProgram>
Remeber the xml conifg .user file is parsed when loading the solution not when pressing the Start debug button so any changes to the .user file must happen while the solution is closed.