Browse Source

Modifications for testing for VS2022

release/7.1
Christoph Wille 4 years ago committed by Siegfried Pammer
parent
commit
ac15e35fb8
  1. 7
      ILSpy.AddIn/ILSpy.AddIn.csproj
  2. 3
      ILSpy.AddIn/source.extension.vsixmanifest.template

7
ILSpy.AddIn/ILSpy.AddIn.csproj

@ -43,12 +43,15 @@
<Import Project="..\packages.props" /> <Import Project="..\packages.props" />
<ItemGroup> <ItemGroup>
<PackageReference Include="Microsoft.VisualStudio.SDK" Version="15.9.3" /> <PackageReference Include="Microsoft.VisualStudio.SDK" Version="15.0.1" />
<!-- Intentionally using an old Roslyn version in the AddIn, so that we stay compatible with old VS versions. --> <!-- Intentionally using an old Roslyn version in the AddIn, so that we stay compatible with old VS versions. -->
<PackageReference Include="Microsoft.CodeAnalysis" Version="2.4.0" /> <PackageReference Include="Microsoft.CodeAnalysis" Version="2.4.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="2.4.0" /> <PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="2.4.0" />
<PackageReference Include="Microsoft.VisualStudio.LanguageServices" Version="2.4.0" /> <PackageReference Include="Microsoft.VisualStudio.LanguageServices" Version="2.4.0" />
<PackageReference Include="Microsoft.VSSDK.BuildTools" Version="16.8.3038" /> <PackageReference Include="Microsoft.VSSDK.BuildTools" Version="17.0.1619-preview1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Mono.Cecil" Version="$(MonoCecilVersion)" /> <PackageReference Include="Mono.Cecil" Version="$(MonoCecilVersion)" />
</ItemGroup> </ItemGroup>

3
ILSpy.AddIn/source.extension.vsixmanifest.template

@ -10,6 +10,9 @@
</Metadata> </Metadata>
<Installation> <Installation>
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[15.0,17.0)" /> <InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[15.0,17.0)" />
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version ="[17.0, 18.0)">
<ProductArchitecture>amd64</ProductArchitecture>
</InstallationTarget>
</Installation> </Installation>
<Dependencies> <Dependencies>
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.5,)" /> <Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.5,)" />

Loading…
Cancel
Save