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>
        protected override async System.Threading.Tasks.Task InitializeAsync(System.Threading.CancellationToken cancellationToken, IProgress <ServiceProgressData> progress)
        {
            await base.InitializeAsync(cancellationToken, progress);

            // When initialized asynchronously, we *may* be on a background thread at this point.
            // Do any initialization that requires the UI thread after switching to the UI thread.
            // Otherwise, remove the switch to the UI thread if you don't need it.
            await this.JoinableTaskFactory.SwitchToMainThreadAsync(cancellationToken);

            await DoubleQuotesCommand.InitializeAsync(this);

            await SingleQuotesCommand.InitializeAsync(this);

            await BracesCommand.InitializeAsync(this);

            await ParenthesisCommand.InitializeAsync(this);

            await AngularBracketsCommand.InitializeAsync(this);

            await AsteriskCommand.InitializeAsync(this);

            await SquareBracketsCommand.InitializeAsync(this);

            await MultilineCommentCommand.InitializeAsync(this);

            await HashCommand.InitializeAsync(this);
        }
Example #2
0
    /// <summary>
    /// Makes this Builder a HashCommand-Builder.
    /// </summary>
    /// <returns><see cref="HashCommandBuilder"/>.</returns>
    public HashCommandBuilder InHashMode()
    {
        var command = new HashCommand();

        Command = command;
        return(new HashCommandBuilder(ref command));
    }
Example #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="HashCommandBuilder"/> class.
 /// </summary>
 /// <param name="command">The command.</param>
 internal HashCommandBuilder(ref HashCommand command)
 {
     this.command = command;
 }