I've created a script that I run as a post-build step that runs jslint and minifys my javascript and css files. I've formatted the output so it shows up in the "Error List" in visual studio, complete with the File, Line and Column fields populated correctly.
The problem is, if I double-click on an error, it takes me only to the correct file, not the correct line. It doesn't navigate within the file at all (so if I've already got the file open, and my cursor is on line 500, and I click on an error on line 200, it goes to that file, but leaves the cursor on line 500). If the file isn't open, it opens it, but puts the cursor on the first line.
The line numbers are correct (if I scroll to that line in visual studio, there is the offending code).
Any ideas?