Example #1
0
        /// <summary>
        /// Initialization of the package; this method is called right after the package is sited, so this is the place
        /// where you can put all the initialization code that rely on services provided by VisualStudio.
        /// </summary>
        /// <param name="cancellationToken">A cancellation token to monitor for initialization cancellation, which can occur when VS is shutting down.</param>
        /// <param name="progress">A provider for progress updates.</param>
        /// <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>
        protected override async System.Threading.Tasks.Task InitializeAsync(CancellationToken cancellationToken, IProgress <ServiceProgressData> progress)
        {
            await base.InitializeAsync(cancellationToken, progress);

            VSColorTheme.ThemeChanged += _ => {
                System.Diagnostics.Debug.WriteLine("Theme changed.");
                ThemeHelper.RefreshThemeCache();
            };
            SolutionEvents.OnAfterOpenSolution += (s, args) => {
                Classifiers.SymbolMarkManager.Clear();
            };
            // When initialized asynchronously, the current thread may be a background thread at this point.
            // Do any initialization that requires the UI thread after switching to the UI thread.
            await JoinableTaskFactory.SwitchToMainThreadAsync(cancellationToken);

            if ((Config.Instance.DisplayOptimizations & DisplayOptimizations.MainWindow) != 0)
            {
                WpfHelper.SetUITextRenderOptions(Application.Current.MainWindow, true);
            }
            _dteEvents   = DTE2.Events;
            _buildEvents = _dteEvents.BuildEvents;
            _buildEvents.OnBuildBegin          += BuildEvents_OnBuildBegin;
            _buildEvents.OnBuildDone           += BuildEvents_OnBuildEnd;
            _buildEvents.OnBuildProjConfigDone += BuildEvents_OnBuildProjConfigDone;
            //_extenderCookie = DTE.ObjectExtenders.RegisterExtenderProvider(VSConstants.CATID.CSharpFileProperties_string, BuildBots.AutoReplaceExtenderProvider.Name, new BuildBots.AutoReplaceExtenderProvider());
            //await Commands.SymbolFinderWindowCommand.InitializeAsync(this);
            Commands.ScreenshotCommand.Initialize(this);
            Commands.IncrementVsixVersionCommand.Initialize(this);
            Commands.NaviBarSearchDeclarationCommand.Initialize(this);
        }
Example #2
0
        /// <summary>
        /// Initialization of the package; this method is called right after the package is sited, so this is the place
        /// where you can put all the initialization code that rely on services provided by VisualStudio.
        /// </summary>
        /// <param name="cancellationToken">A cancellation token to monitor for initialization cancellation, which can occur when VS is shutting down.</param>
        /// <param name="progress">A provider for progress updates.</param>
        /// <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>
        protected override async System.Threading.Tasks.Task InitializeAsync(CancellationToken cancellationToken, IProgress <ServiceProgressData> progress)
        {
            await base.InitializeAsync(cancellationToken, progress);

            VSColorTheme.ThemeChanged += (args) => {
                System.Diagnostics.Debug.WriteLine("Theme changed.");
                ThemeHelper.RefreshThemeCache();
            };
            SolutionEvents.OnAfterOpenSolution += (s, args) => {
                Classifiers.SymbolMarkManager.Clear();
            };

            Instance = this;
            // When initialized asynchronously, the current thread may be a background thread at this point.
            // Do any initialization that requires the UI thread after switching to the UI thread.
            await JoinableTaskFactory.SwitchToMainThreadAsync(cancellationToken);

            if ((Config.Instance.DisplayOptimizations & DisplayOptimizations.MainWindow) != 0)
            {
                WpfHelper.SetUITextRenderOptions(Application.Current.MainWindow, true);
            }
            await Commands.SymbolFinderWindowCommand.InitializeAsync(this);

            Commands.ScreenshotCommand.Initialize(this);
            Commands.IncrementVsixVersionCommand.Initialize(this);
            Commands.NaviBarSearchDeclarationCommand.Initialize(this);
        }
Example #3
0
        /// <summary>
        /// Initialization of the package; this method is called right after the package is sited, so this is the place
        /// where you can put all the initialization code that rely on services provided by VisualStudio.
        /// </summary>
        /// <param name="cancellationToken">A cancellation token to monitor for initialization cancellation, which can occur when VS is shutting down.</param>
        /// <param name="progress">A provider for progress updates.</param>
        /// <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>
        protected override async System.Threading.Tasks.Task InitializeAsync(CancellationToken cancellationToken, IProgress <ServiceProgressData> progress)
        {
            await base.InitializeAsync(cancellationToken, progress);

            // When initialized asynchronously, the current thread may be a background thread at this point.
            // Do any initialization that requires the UI thread after switching to the UI thread.
            await JoinableTaskFactory.SwitchToMainThreadAsync(cancellationToken);

            await Commands.SymbolFinderWindowCommand.InitializeAsync(this);

            await Commands.ScreenshotCommand.InitializeAsync(this);

            ThemeHelper.RefreshThemeCache();
            VSColorTheme.ThemeChanged += (args) => {
                ThemeHelper.RefreshThemeCache();
            };
            SolutionEvents.OnAfterOpenSolution += (s, args) => {
                Classifiers.SymbolMarkManager.Clear();
            };
        }