I installed the VS2010 SDK and created a VSPackage project, with an empty "Initialize" method.
[PackageRegistration(UseManagedResourcesOnly = true)]
[InstalledProductRegistration("#110", "#112", "1.0", IconResourceID = 400)]
[Guid(GuidList.guidGrowl_Extras_VSAddInPkgString)]
public sealed class Growl_Extras_VSAddInPackage : Package
{
public Growl_Extras_VSAddInPackage()
{
Trace.WriteLine(string.Format(CultureInfo.CurrentCulture, "Entering constructor for: {0}", this.ToString()));
}
protected override void Initialize()
{
Trace.WriteLine(string.Format(CultureInfo.CurrentCulture, "Entering Initialize() of: {0}", this.ToString()));
base.Initialize();
}
}
If I set a break point within the "Initialize" method and run the project in debug mode, it starts the experimental VS instance, but the breakpoint does not hit. It says no debug symbols loaded.
What am I doing wrong?
Thanks for help, Enyra