Skip to content

Commit d37097c

Browse files
committed
Update Visual Studio 2022 DLLs
1 parent 47a96c5 commit d37097c

10 files changed

+3
-2
lines changed
27.4 KB
Binary file not shown.
8.39 KB
Binary file not shown.
-7.02 KB
Binary file not shown.
-104 Bytes
Binary file not shown.
3.4 KB
Binary file not shown.
416 Bytes
Binary file not shown.
-8.11 KB
Binary file not shown.
112 Bytes
Binary file not shown.

src/ExtensionManager2022.V17/GalleryEntry.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ public class GalleryEntry : OnlineExtensionBase, IRepositoryEntry, IGalleryEntry
4545
public override string MarkdownUrl { get; set; }
4646
public override List<string> PackedExtensionsVsixIDs { get; set; }
4747
public override List<string> Flags { get; set; }
48+
public override bool IsPublisherDomainVerified { get; set; }
4849

4950
public override string ToString()
5051
{

src/VS2022/VisualStudioServiceFactory.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ public static class VisualStudioServiceFactory
99
{
1010
public static async Task<IVisualStudioService> CreateAsync(AsyncPackage package, Version vsVersion)
1111
{
12-
if (vsVersion >= new Version(17, 9))
12+
if (vsVersion >= new Version(17, 10))
1313
return await V17_Preview.VisualStudioService.CreateAsync(package);
1414

15-
if (vsVersion >= new Version(17, 8))
15+
if (vsVersion >= new Version(17, 9))
1616
return await V17.VisualStudioService.CreateAsync(package);
1717

1818
throw new InvalidOperationException("Not supported visual studio version: " + vsVersion);

0 commit comments

Comments
 (0)