Skip to content

Commit 4b7c18c

Browse files
Merge pull request #234 from icsharpcode/vs2019
Allow VS2019 installation
2 parents db5239c + 86246de commit 4b7c18c

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

Vsix/VisualStudioInteraction.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,7 @@ public class OutputWindow
180180

181181
public static async Task<OutputWindow> CreateAsync()
182182
{
183+
await ThreadHelper.JoinableTaskFactory.SwitchToMainThreadAsync();
183184
return new OutputWindow(await CreateOutputPaneAsync());
184185
}
185186

Vsix/source.extension.vsixmanifest

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
<PreviewImage>Images\refactoringessentials-preview.png</PreviewImage>
1212
</Metadata>
1313
<Installation>
14-
<InstallationTarget Version="[15.0,16.0)" Id="Microsoft.VisualStudio.Pro" />
15-
<InstallationTarget Version="[15.0,16.0)" Id="Microsoft.VisualStudio.Community" />
16-
<InstallationTarget Version="[15.0,16.0)" Id="Microsoft.VisualStudio.Enterprise" />
14+
<InstallationTarget Version="[15.0,17.0)" Id="Microsoft.VisualStudio.Pro" />
15+
<InstallationTarget Version="[15.0,17.0)" Id="Microsoft.VisualStudio.Community" />
16+
<InstallationTarget Version="[15.0,17.0)" Id="Microsoft.VisualStudio.Enterprise" />
1717
</Installation>
1818
<Dependencies>
1919
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.6,)" />
@@ -23,6 +23,6 @@
2323
<Asset Type="Microsoft.VisualStudio.VsPackage" d:Source="Project" d:ProjectName="%CurrentProject%" Path="|%CurrentProject%;PkgdefProjectOutputGroup|" />
2424
</Assets>
2525
<Prerequisites>
26-
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[15.0.26004.1,16.0)" DisplayName="Visual Studio core editor" />
26+
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[15.0.26004.1,)" DisplayName="Visual Studio core editor" />
2727
</Prerequisites>
2828
</PackageManifest>

0 commit comments

Comments
 (0)