This thread looks to be a little on the old side and therefore may no longer be relevant. Please see if there is a newer thread on the subject and ensure you're using the most recent build of any software if your question regards a particular product.
This thread has been locked and is no longer accepting new posts, if you have a question regarding this topic please email us at support@mindscape.co.nz
|
When you double-click or open a batch file the current directory is the directory Visual Studio was in. Unfortunately this breaks my batch files, they assume the current directory is the directory they reside in. Love the product this is the only thing wrong with it. Get a fix for this and Windows Explorer is a dead duck while I'm developing. |
|
|
Just found a quick around. Add the following to the top of each batch file. CD /D %~dp0 Where: /D = change current drive and directory. %~dp0 = location of the running batch file. The things you learn when you need something :-) |
|
|
What the...... I ask for this before lunch. Load Visual Studio after lunch, you have an addin update. Blew me away that the feature I wanted is there. Thank you so very much. |
|
|
That's how we like to roll ;-) Ivan wanted me to point out that it would likely have been up before lunch if it wasn't for me taking so long to upload it to the gallery! Happy coding, John-Daniel |
|
|
LOL. |
|