JWP
JWP

Reputation: 6963

Visual Studio VSIX project starts up wrong project

I've been working on two VSIX projects, the first one has been around for a year, and was working fine. The other one was just started a week ago. I have debugged both of them in the experimental instance of VS.

Today; however, whenever I start the first project, I get an exception from the 2nd project stating that at XAML load time it can't find a directory.

First, I don't understand why that project is even showing up because I'm not debugging that one. It shouldn't even be trying to start the 2nd project up..

Please advise.

Upvotes: 0

Views: 110

Answers (1)

Sergey Vlasov
Sergey Vlasov

Reputation: 27910

When you debug a VSIX project it is installed in the experimental instance of VS and then loaded each time you start the experimental instance.

You can temporarily disable or uninstall the second project in the extension manager to get around this error.

Upvotes: 1

Related Questions