You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[InstalledProductRegistration("#1110","#1112","1.0",IconResourceID=1400)]// Info on this package for Help/About
37
+
[ProvideAutoLoad(UIContextGuids.SolutionExists)]
38
+
[Guid(GuidList.guidAuditPkgString)]
39
+
[ProvideMenuResource("Menus.ctmenu",1)]
40
+
[SuppressMessage("StyleCop.CSharp.DocumentationRules","SA1650:ElementDocumentationMustBeSpelledCorrectly",Justification="pkgdef, VS and vsixmanifest are valid VS terms")]
/// Initializes a new instance of the <see cref="VSAsyncPackage"/> class.
50
+
/// </summary>
51
+
publicVSAsyncPackage()
52
+
{
53
+
// Inside this method you can place any initialization code that does not require
54
+
// any Visual Studio service because at this point the package object is created but
55
+
// not sited yet inside Visual Studio environment. The place to do all the other
56
+
// initialization is the Initialize method.
57
+
intj=0;
58
+
}
59
+
60
+
#region Package Members
61
+
62
+
/// <summary>
63
+
/// Initialization of the package; this method is called right after the package is sited, so this is the place
64
+
/// where you can put all the initialization code that rely on services provided by VisualStudio.
65
+
/// </summary>
66
+
/// <param name="cancellationToken">A cancellation token to monitor for initialization cancellation, which can occur when VS is shutting down.</param>
67
+
/// <param name="progress">A provider for progress updates.</param>
68
+
/// <returns>A task representing the async work of package initialization, or an already completed task if there is none. Do not return null from this method.</returns>
[SuppressMessage("StyleCop.CSharp.DocumentationRules","SA1650:ElementDocumentationMustBeSpelledCorrectly",Justification="pkgdef, VS and vsixmanifest are valid VS terms")]
0 commit comments