Skip to content

Commit bdff439

Browse files
committed
Add ARM64 target
1 parent 34d5cc4 commit bdff439

2 files changed

Lines changed: 10 additions & 2 deletions

File tree

ThermoRawFileParser.csproj

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
<ImplicitUsings>disable</ImplicitUsings>
77
<Nullable>annotations</Nullable>
88
<StartupObject>ThermoRawFileParser.MainClass</StartupObject>
9-
<PlatformTarget>x64</PlatformTarget>
10-
<Platforms>x64</Platforms>
9+
<Platforms>x64;arm64</Platforms>
1110
<Version>2.0.0-dev</Version>
1211
<Title>$(AssemblyName)</Title>
1312
<Company>Compomics</Company>
@@ -22,9 +21,15 @@
2221
</PropertyGroup>
2322

2423
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
24+
<PlatformTarget>x64</PlatformTarget>
2525
</PropertyGroup>
2626

2727
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
28+
<PlatformTarget>x64</PlatformTarget>
29+
</PropertyGroup>
30+
31+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|arm64'">
32+
<PlatformTarget>ARM64</PlatformTarget>
2833
</PropertyGroup>
2934

3035
<ItemGroup>

ThermoRawFileParser.sln

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,15 @@ Global
1111
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1212
Debug|x64 = Debug|x64
1313
Release|x64 = Release|x64
14+
Release|arm64 = Release|arm64
1415
EndGlobalSection
1516
GlobalSection(ProjectConfigurationPlatforms) = postSolution
1617
{A1AB1BD8-180D-49FD-AFBB-9515EE1E862B}.Debug|x64.ActiveCfg = Debug|x64
1718
{A1AB1BD8-180D-49FD-AFBB-9515EE1E862B}.Debug|x64.Build.0 = Debug|x64
1819
{A1AB1BD8-180D-49FD-AFBB-9515EE1E862B}.Release|x64.ActiveCfg = Release|x64
1920
{A1AB1BD8-180D-49FD-AFBB-9515EE1E862B}.Release|x64.Build.0 = Release|x64
21+
{A1AB1BD8-180D-49FD-AFBB-9515EE1E862B}.Release|arm64.ActiveCfg = Release|arm64
22+
{A1AB1BD8-180D-49FD-AFBB-9515EE1E862B}.Release|arm64.Build.0 = Release|arm64
2023
{5D42807F-E856-42D7-9D3E-0A17584A9D55}.Debug|x64.ActiveCfg = Debug|x64
2124
{5D42807F-E856-42D7-9D3E-0A17584A9D55}.Debug|x64.Build.0 = Debug|x64
2225
{5D42807F-E856-42D7-9D3E-0A17584A9D55}.Release|x64.ActiveCfg = Release|x64

0 commit comments

Comments
 (0)