Skip to content

Commit

Permalink
Qualify types
Browse files Browse the repository at this point in the history
  • Loading branch information
mrlacey committed Feb 15, 2025
1 parent eccf7a0 commit 40aff2d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions VSIX/RapidXamlToolkit/RapidXamlPackage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public sealed class RapidXamlPackage : AsyncPackage

public static EditorExtrasOptionsGrid EditorOptions { get; internal set; }

protected override async Task InitializeAsync(CancellationToken cancellationToken, IProgress<ServiceProgressData> progress)
protected override async System.Threading.Tasks.Task InitializeAsync(CancellationToken cancellationToken, IProgress<ServiceProgressData> progress)
{
Instance = this;

Expand Down Expand Up @@ -156,7 +156,7 @@ protected override async Task InitializeAsync(CancellationToken cancellationToke
}
}

private async Task InitializeLoggerAsync(CancellationToken cancellationToken)
private async System.Threading.Tasks.Task InitializeLoggerAsync(CancellationToken cancellationToken)
{
// 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.
Expand Down Expand Up @@ -198,7 +198,7 @@ private void HandleCloseSolution(object sender, EventArgs e)
TableDataSource.Instance.CleanAllErrors();
}

private async Task SetUpRunningDocumentTableEventsAsync(CancellationToken cancellationToken)
private async System.Threading.Tasks.Task SetUpRunningDocumentTableEventsAsync(CancellationToken cancellationToken)
{
await this.JoinableTaskFactory.SwitchToMainThreadAsync(cancellationToken);

Expand Down

0 comments on commit 40aff2d

Please sign in to comment.