Visual Studio 2005 SP1 breaks Cassini from Tools menu
Posted: 12/18/2006 12:06:56 PM
By: Comfortably Anonymous
Times Read: 2,130
0 Dislikes: 0
Topic: Programming: .NET Framework
If you have set up Cassini to start with a custom port number which passes the current project directory to Cassini as a command argument from External Tools, it is now broken after installing SP1. Turns out SP1 breaks the way the project directory is passed, they apparently forgot to preface it with a double-quote (").

In your arguments, change it

From: /port:8080 /path:$(ProjectDir)

To: /port:8080 /path:"$(ProjectDir)

(Note the double-quote between "/path:" and "$(ProjectDir)")
Rating: (You must be logged in to vote)