Skip to content

Commit 89880a0

Browse files
committed
Added arm64 target architectures for testing
1 parent 619d216 commit 89880a0

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

CompileScore/Shared/Editor/EditorUtils.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -317,6 +317,7 @@ static public Project GetActiveProject()
317317
}
318318
static public Solution GetActiveSolution()
319319
{
320+
ThreadHelper.ThrowIfNotOnUIThread();
320321
DTE2 applicationObject = ServiceProvider.GetService(typeof(SDTE)) as DTE2;
321322
Assumes.Present(applicationObject);
322323
return applicationObject.Solution;

CompileScore/VSIX16/source.extension.vsixmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
33
<Metadata>
4-
<Identity Id="CompileScore.19699ea5-2ee6-44b6-9964-a19882b92403" Version="1.9.1.1" Language="en-US" Publisher="Ramon Viladomat" />
4+
<Identity Id="CompileScore.19699ea5-2ee6-44b6-9964-a19882b92403" Version="1.9.2" Language="en-US" Publisher="Ramon Viladomat" />
55
<DisplayName>Compile Score</DisplayName>
66
<Description xml:space="preserve">C/C++ compile times data viewer and text highlight for Clang and MSVC.</Description>
77
<MoreInfo>https://github.com/Viladoman/CompileScore</MoreInfo>

CompileScore/VSIX17/CompileScoreVS17.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
</ItemGroup>
7171
<ItemGroup>
7272
<PackageReference Include="Microsoft.VisualStudio.SDK" Version="17.0.31902.203" ExcludeAssets="runtime" />
73-
<PackageReference Include="Microsoft.VSSDK.BuildTools" Version="17.0.5232" />
73+
<PackageReference Include="Microsoft.VSSDK.BuildTools" Version="17.12.2069" />
7474
</ItemGroup>
7575
<ItemGroup>
7676
<Content Include="..\..\DataExtractor\bin\x64\Release\CppBuildInsights.dll">
@@ -85,7 +85,7 @@
8585
<Link>External\ScoreExtractor\ScoreDataExtractor.exe</Link>
8686
<IncludeInVSIX>true</IncludeInVSIX>
8787
</Content>
88-
<Content Include="..\..\Parser\bin\x64\Release\CompileScoreParser.exe">
88+
<Content Include="..\..\Parser\bin\x64\Release\CompileScoreParser.exe">
8989
<Link>External\Parser\CompileScoreParser.exe</Link>
9090
<IncludeInVSIX>true</IncludeInVSIX>
9191
</Content>

CompileScore/VSIX17/source.extension.vsixmanifest

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
33
<Metadata>
4-
<Identity Id="CompileScore.6e13b50f-06b4-40b3-8168-97c8ac3974d0" Version="1.9.1.1" Language="en-US" Publisher="Ramon Viladomat" />
4+
<Identity Id="CompileScore.6e13b50f-06b4-40b3-8168-97c8ac3974d0" Version="1.9.2" Language="en-US" Publisher="Ramon Viladomat" />
55
<DisplayName>Compile Score 2022</DisplayName>
66
<Description xml:space="preserve">C/C++ compile times data viewer and text highlight for Clang and MSVC.</Description>
77
<MoreInfo>https://github.com/Viladoman/CompileScore</MoreInfo>
@@ -19,6 +19,15 @@
1919
<InstallationTarget Id="Microsoft.VisualStudio.Enterprise" Version="[17.0,18.0)">
2020
<ProductArchitecture>amd64</ProductArchitecture>
2121
</InstallationTarget>
22+
<InstallationTarget Version="[17.0,18.0)" Id="Microsoft.VisualStudio.Community">
23+
<ProductArchitecture>arm64</ProductArchitecture>
24+
</InstallationTarget>
25+
<InstallationTarget Version="[17.0,18.0)" Id="Microsoft.VisualStudio.Pro">
26+
<ProductArchitecture>arm64</ProductArchitecture>
27+
</InstallationTarget>
28+
<InstallationTarget Version="[17.0,18.0)" Id="Microsoft.VisualStudio.Enterprise">
29+
<ProductArchitecture>arm64</ProductArchitecture>
30+
</InstallationTarget>
2231
</Installation>
2332
<Dependencies>
2433
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.5,)" />

0 commit comments

Comments
 (0)