kayak
kayak

Reputation: 1845

Visual studio .SLN executing Exe file / .VBS script

How to launch .Exe file or .VBS script when visual studio solution(.sln) is opened ?

Upvotes: 0

Views: 1362

Answers (1)

Raj More
Raj More

Reputation: 48034

Associate a .SLN file with your own executable instead of devenv. In your executable, if the solution being opened matches then delete the necessary files. Then execute the devenv and pass the solution full path and name as a parameter.

Upvotes: 2

Related Questions