Skip to content

Commit

Permalink
Merge pull request #35 from deadlydog/ReenableAsyncBackgroundLoading
Browse files Browse the repository at this point in the history
Reenable async background loading
  • Loading branch information
deadlydog authored May 26, 2019
2 parents 8693787 + b18b0a8 commit ad7086a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VS.DiffAllFiles.VS2019/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="B4202C10-5715-1294-9DBA-15A319FF9EBF" Version="1.0.3" Language="en-US" Publisher="deadlydog" />
<Identity Id="B4202C10-5715-1294-9DBA-15A319FF9EBF" Version="1.0.4" Language="en-US" Publisher="deadlydog" />
<DisplayName>Diff All Files for VS2019</DisplayName>
<Description xml:space="preserve">Quickly compare changes to all files in Git (staged/unstaged files or a commit) or TFS (shelveset, changeset, or with pending changes).</Description>
<MoreInfo>https://github.com/deadlydog/VS.DiffAllFiles</MoreInfo>
Expand Down
2 changes: 1 addition & 1 deletion VS.DiffAllFiles/VS.DiffAllFilesPackage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public abstract class VS_DiffAllFilesPackage : Package
#else
// Async Package info: https://docs.microsoft.com/en-us/visualstudio/extensibility/how-to-use-asyncpackage-to-load-vspackages-in-the-background?view=vs-2019
[PackageRegistration(UseManagedResourcesOnly = true, AllowsBackgroundLoading = true)]
[ProvideAutoLoad(Microsoft.VisualStudio.Shell.Interop.UIContextGuids.NoSolution, PackageAutoLoadFlags.None)]
[ProvideAutoLoad(Microsoft.VisualStudio.Shell.Interop.UIContextGuids.NoSolution, PackageAutoLoadFlags.BackgroundLoad)]
public abstract class VS_DiffAllFilesPackage : AsyncPackage
#endif
{
Expand Down

0 comments on commit ad7086a

Please sign in to comment.