Skip to content

Commit 06824ce

Browse files
committed
Update Visual Studio 2022 Preview DLLs
1 parent 34f5919 commit 06824ce

File tree

6 files changed

+4
-3
lines changed

6 files changed

+4
-3
lines changed

src/ExtensionManager.VisualStudio.V17_Preview/Models/GalleryExtension.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ internal class GalleryExtension : OnlineExtensionBase, IRepositoryEntry, IVSExte
4343
public override List<string>? PackedExtensionsVsixIDs { get; set; }
4444
public override List<string>? Flags { get; set; }
4545
public override Func<CancellationToken, Task<string>>? FetchMarkdownDescriptionAsync { get; set; }
46+
public override bool IsPublisherDomainVerified { get; set; }
4647
public override string? ToString() => Name;
4748

4849
string IVSExtension.Id => VsixID;
Binary file not shown.
Binary file not shown.
Binary file not shown.

src/ExtensionManager.Vsix.Shared/ExtensionManagerPackage.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,11 @@ private static async Task<IVSServiceFactory> CreateVSServiceFactoryAsync()
6060
{
6161
var vsVersion = await VS.Shell.GetVsVersionAsync();
6262

63-
#if V17
64-
if (vsVersion >= new Version(17, 7))
63+
#if V17
64+
if (vsVersion >= new Version(17, 9))
6565
return new VisualStudio.V17_Preview.VSServiceFactory();
6666

67-
if (vsVersion >= new Version(17, 5))
67+
if (vsVersion >= new Version(17, 8))
6868
return new VisualStudio.V17.VSServiceFactory();
6969
#elif V16
7070
if (vsVersion >= new Version(16, 0))

0 commit comments

Comments
 (0)