Reputation: 1845
How to launch .Exe file or .VBS script when visual studio solution(.sln) is opened ?
Upvotes: 0
Views: 1362
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