Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit b3591bd

Browse files
authored
Merge pull request #1490 from github/fixes/1489-assemblyresolver-asyncpackage
Make AssemblyResolverPackage an AsyncPackage.
2 parents e948cca + 4d0b6a5 commit b3591bd

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed
Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
11
using System;
22
using System.Runtime.InteropServices;
33
using Microsoft.VisualStudio.Shell;
4-
using GitHub.Logging;
5-
using Serilog;
64

75
namespace GitHub.VisualStudio
86
{
97
// Allow assemblies in the extension directory to be resolved by their full or partial name.
108
// This is required for GitHub.VisualStudio.imagemanifest, XAML and when using unsigned assemblies.
119
// See: https://github.com/github/VisualStudio/pull/1236/
1210
[ProvideBindingPath]
13-
1411
[Guid(Guids.guidAssemblyResolverPkgString)]
15-
public class AssemblyResolverPackage : Package
12+
public class AssemblyResolverPackage : AsyncPackage
1613
{
1714
}
1815
}

0 commit comments

Comments
 (0)