Skip to content

Commit cf4f96e

Browse files
authored
Add ARM64 support for VS2022/VS2026 VSIX (#921)
1 parent 8de6483 commit cf4f96e

3 files changed

Lines changed: 9 additions & 6 deletions

File tree

Tools.BuildTasks-2022/Tools.BuildTasks-2022.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
<OutputPath>bin\x64\Debug\</OutputPath>
4444
<DefineConstants>DEBUG;TRACE</DefineConstants>
4545
<DebugType>full</DebugType>
46-
<PlatformTarget>x64</PlatformTarget>
46+
<PlatformTarget>AnyCPU</PlatformTarget>
4747
<LangVersion>7.3</LangVersion>
4848
<ErrorReport>prompt</ErrorReport>
4949
</PropertyGroup>
@@ -52,7 +52,7 @@
5252
<DefineConstants>TRACE</DefineConstants>
5353
<Optimize>true</Optimize>
5454
<DebugType>pdbonly</DebugType>
55-
<PlatformTarget>x64</PlatformTarget>
55+
<PlatformTarget>AnyCPU</PlatformTarget>
5656
<LangVersion>7.3</LangVersion>
5757
<ErrorReport>prompt</ErrorReport>
5858
</PropertyGroup>

VisualStudio.Extension-2022/VisualStudio.Extension-vs2022.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
<DefineConstants>TRACE;DEBUG;DEV17;</DefineConstants>
4545
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
4646
<DebugType>full</DebugType>
47-
<PlatformTarget>x64</PlatformTarget>
47+
<PlatformTarget>AnyCPU</PlatformTarget>
4848
<ErrorReport>prompt</ErrorReport>
4949
<DeployExtension>True</DeployExtension>
5050
</PropertyGroup>
@@ -54,7 +54,7 @@
5454
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
5555
<Optimize>true</Optimize>
5656
<DebugType>pdbonly</DebugType>
57-
<PlatformTarget>x64</PlatformTarget>
57+
<PlatformTarget>AnyCPU</PlatformTarget>
5858
<ErrorReport>prompt</ErrorReport>
5959
<DeployExtension>False</DeployExtension>
6060
</PropertyGroup>
@@ -70,7 +70,7 @@
7070
<CodeAnalysisRuleSet>
7171
</CodeAnalysisRuleSet>
7272
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
73-
<PlatformTarget>x64</PlatformTarget>
73+
<PlatformTarget>AnyCPU</PlatformTarget>
7474
</PropertyGroup>
7575
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
7676
<DebugType>pdbonly</DebugType>
@@ -82,7 +82,7 @@
8282
<CodeAnalysisRuleSet>
8383
</CodeAnalysisRuleSet>
8484
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
85-
<PlatformTarget>x86</PlatformTarget>
85+
<PlatformTarget>AnyCPU</PlatformTarget>
8686
<DeployExtension>False</DeployExtension>
8787
<DeployExtension>False</DeployExtension>
8888
</PropertyGroup>

VisualStudio.Extension-2022/source.extension.vsixmanifest

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[17.14,19.0)">
1717
<ProductArchitecture>amd64</ProductArchitecture>
1818
</InstallationTarget>
19+
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[17.14,19.0)">
20+
<ProductArchitecture>arm64</ProductArchitecture>
21+
</InstallationTarget>
1922
</Installation>
2023
<Dependencies>
2124
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.7.2,)" />

0 commit comments

Comments
 (0)