Skip to content

Commit

Permalink
Add arm target, update dependencies and remove VS 2017 and 2019 suppo…
Browse files Browse the repository at this point in the history
…rt (#40)
  • Loading branch information
marcelwgn authored Jan 16, 2024
1 parent fddeb6c commit 9a2b996
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 23 deletions.
21 changes: 5 additions & 16 deletions src/IndentRainbow.Extension/IndentRainbow.Extension.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,12 @@
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<CopyVsixExtensionFiles>False</CopyVsixExtensionFiles>
<CopyVsixExtensionFiles>True</CopyVsixExtensionFiles>
<CopyVsixExtensionLocation>D:\Projects\builds</CopyVsixExtensionLocation>
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
<GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies>
</PropertyGroup>
<ItemGroup>
<Compile Include="Drawing\BackgroundTextIndexDrawer.cs" />
Expand Down Expand Up @@ -125,23 +126,11 @@
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.VisualStudio.Shell.15.0">
<Version>15.0.26201</Version>
</PackageReference>
<PackageReference Include="Microsoft.VisualStudio.Shell.Interop.10.0">
<Version>16.7.30328.74</Version>
</PackageReference>
<PackageReference Include="Microsoft.VisualStudio.Text.Data">
<Version>15.0.26201</Version>
</PackageReference>
<PackageReference Include="Microsoft.VisualStudio.Text.UI">
<Version>15.0.26201</Version>
</PackageReference>
<PackageReference Include="Microsoft.VisualStudio.Text.UI.Wpf">
<Version>15.0.26201</Version>
<PackageReference Include="Microsoft.VisualStudio.SDK">
<Version>17.8.37222</Version>
</PackageReference>
<PackageReference Include="Microsoft.VSSDK.BuildTools">
<Version>17.0.1619-preview1</Version>
<Version>17.8.2365</Version>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down
14 changes: 7 additions & 7 deletions src/IndentRainbow.Extension/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -7,24 +7,24 @@
<Icon>Resources\IndentRainbowPackage.ico</Icon>
</Metadata>
<Installation>
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[15.0,17.0)">
<ProductArchitecture>x86</ProductArchitecture>
</InstallationTarget>
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[17.0,)">
<ProductArchitecture>amd64</ProductArchitecture>
</InstallationTarget>
<InstallationTarget Id="Microsoft.VisualStudio.Pro" Version="[15.0,17.0)">
<ProductArchitecture>x86</ProductArchitecture>
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[17.0,)" >
<ProductArchitecture>arm64</ProductArchitecture>
</InstallationTarget>
<InstallationTarget Id="Microsoft.VisualStudio.Pro" Version="[17.0,)">
<ProductArchitecture>amd64</ProductArchitecture>
</InstallationTarget>
<InstallationTarget Id="Microsoft.VisualStudio.Enterprise" Version="[15.0,17.0)">
<ProductArchitecture>x86</ProductArchitecture>
<InstallationTarget Id="Microsoft.VisualStudio.Pro" Version="[17.0,)">
<ProductArchitecture>arm64</ProductArchitecture>
</InstallationTarget>
<InstallationTarget Id="Microsoft.VisualStudio.Enterprise" Version="[17.0,)">
<ProductArchitecture>amd64</ProductArchitecture>
</InstallationTarget>
<InstallationTarget Id="Microsoft.VisualStudio.Enterprise" Version="[17.0,)">
<ProductArchitecture>arm64</ProductArchitecture>
</InstallationTarget>
</Installation>
<Dependencies>
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.7,)" />
Expand Down

0 comments on commit 9a2b996

Please sign in to comment.