0

How can I load dll every time immediately after the SSMS 2017 finish to load itself

(I want to register to particular event)

If you think I need to do it with the attribute [ProvideAutoLoad] please, give me the parameters.

thank you

Ron

ron
  • 1
  • 6

1 Answers1

0

Take a look at this tutorial from CodeProject by Stefan Timovski to get your extension development ready is what I referenced and explains all of that step-by-step very well.

Short answer: Use the ProvideAutoLoad attribute below in the .pkgdef file

    ...
    [ProvideAutoLoad(UIContextGuids80.NoSolution)]
    public sealed class YourCommandNamePackage : Package
    {
      ...
    }
Drew
  • 1
  • 1