Skip to content

Commit 47a96c5

Browse files
committed
Update Visual Studio 2022 Preview DLLs
1 parent 4c83616 commit 47a96c5

7 files changed

+6
-5
lines changed

ExtensionManager.vsext

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"extensions": [
77
{
88
"name": "VSIX Synchronizer",
9-
"vsixId": "d7834c28-6a0f-4b5a-b3e0-735dc78cd439"
9+
"vsixId": "751759cc-53b5-45f6-8d75-43392a1dd89c"
1010
}
1111
]
1212
}
-2.49 KB
Binary file not shown.
Binary file not shown.
-496 Bytes
Binary file not shown.
-16 Bytes
Binary file not shown.

src/ExtensionManager2022.V17_Preview/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 List<string> PackedExtensionsVsixIDs { get; set; }
4646
public override List<string> Flags { get; set; }
4747
public override Func<CancellationToken, Task<string>> FetchMarkdownDescriptionAsync { get; set; }
48+
public override bool IsPublisherDomainVerified { get; set; }
4849

4950
public override string ToString()
5051
{

src/VS2022/VisualStudioServiceFactory.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ public static class VisualStudioServiceFactory
99
{
1010
public static async Task<IVisualStudioService> CreateAsync(AsyncPackage package, Version vsVersion)
1111
{
12-
if (vsVersion >= new Version(17, 7))
13-
return await V17.VisualStudioService.CreateAsync(package);
14-
15-
if (vsVersion >= new Version(17, 5))
12+
if (vsVersion >= new Version(17, 9))
1613
return await V17_Preview.VisualStudioService.CreateAsync(package);
1714

15+
if (vsVersion >= new Version(17, 8))
16+
return await V17.VisualStudioService.CreateAsync(package);
17+
1818
throw new InvalidOperationException("Not supported visual studio version: " + vsVersion);
1919
}
2020
}

0 commit comments

Comments
 (0)