Skip to content

Commit 00ea37a

Browse files
author
Chris Jakeman
committed
Replaced x86 with AnyCPU on *.csproj
1 parent 25656ed commit 00ea37a

File tree

23 files changed

+107
-111
lines changed

23 files changed

+107
-111
lines changed

Source/ContentChecker/ContentChecker.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,23 +13,23 @@
1313
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
1414
<TargetFrameworkProfile />
1515
</PropertyGroup>
16-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
16+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
1717
<DebugSymbols>true</DebugSymbols>
1818
<OutputPath>..\..\Program\</OutputPath>
1919
<DefineConstants>DEBUG;TRACE</DefineConstants>
2020
<DebugType>full</DebugType>
21-
<PlatformTarget>x86</PlatformTarget>
21+
<PlatformTarget>AnyCPU</PlatformTarget>
2222
<ErrorReport>prompt</ErrorReport>
2323
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
2424
<Prefer32Bit>false</Prefer32Bit>
2525
<LangVersion>7.3</LangVersion>
2626
</PropertyGroup>
27-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
27+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
2828
<OutputPath>..\..\Program\</OutputPath>
2929
<DefineConstants>TRACE</DefineConstants>
3030
<Optimize>true</Optimize>
3131
<DebugType>pdbonly</DebugType>
32-
<PlatformTarget>x86</PlatformTarget>
32+
<PlatformTarget>AnyCPU</PlatformTarget>
3333
<ErrorReport>prompt</ErrorReport>
3434
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
3535
<Prefer32Bit>false</Prefer32Bit>

Source/Contrib/ActivityEditor/AEWizard/AEWizard.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
44
<PropertyGroup>
55
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6-
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
77
<ProjectGuid>{79EFFB38-252C-4B06-BD4E-7C7FDE0A20DC}</ProjectGuid>
88
<OutputType>Library</OutputType>
99
<AppDesignerFolder>Properties</AppDesignerFolder>
@@ -13,7 +13,7 @@
1313
<FileAlignment>512</FileAlignment>
1414
<TargetFrameworkProfile />
1515
</PropertyGroup>
16-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
16+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
1717
<DebugSymbols>true</DebugSymbols>
1818
<DebugType>full</DebugType>
1919
<Optimize>false</Optimize>
@@ -25,14 +25,14 @@
2525
<Prefer32Bit>false</Prefer32Bit>
2626
<LangVersion>7.3</LangVersion>
2727
</PropertyGroup>
28-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
28+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
2929
<DebugType>pdbonly</DebugType>
3030
<Optimize>true</Optimize>
3131
<OutputPath>..\..\..\..\Program\</OutputPath>
3232
<DefineConstants>TRACE</DefineConstants>
3333
<ErrorReport>prompt</ErrorReport>
3434
<WarningLevel>4</WarningLevel>
35-
<PlatformTarget>x86</PlatformTarget>
35+
<PlatformTarget>AnyCPU</PlatformTarget>
3636
<Prefer32Bit>false</Prefer32Bit>
3737
<LangVersion>7.3</LangVersion>
3838
</PropertyGroup>

Source/Contrib/ActivityEditor/ActivityEditor/ActivityEditor.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
44
<PropertyGroup>
55
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6-
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
77
<ProjectGuid>{306C904F-BE41-4B39-A0C4-51068B7F205E}</ProjectGuid>
88
<OutputType>WinExe</OutputType>
99
<AppDesignerFolder>Properties</AppDesignerFolder>
@@ -14,7 +14,7 @@
1414
<ApplicationIcon>..\..\..\ORTS.ico</ApplicationIcon>
1515
<TargetFrameworkProfile />
1616
</PropertyGroup>
17-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
17+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
1818
<DebugSymbols>true</DebugSymbols>
1919
<DebugType>full</DebugType>
2020
<Optimize>false</Optimize>
@@ -26,14 +26,14 @@
2626
<Prefer32Bit>false</Prefer32Bit>
2727
<LangVersion>7.3</LangVersion>
2828
</PropertyGroup>
29-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
29+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
3030
<DebugType>pdbonly</DebugType>
3131
<Optimize>true</Optimize>
3232
<OutputPath>..\..\..\..\Program\</OutputPath>
3333
<DefineConstants>TRACE;WINDOWS;ACTIVITY_EDITOR</DefineConstants>
3434
<ErrorReport>prompt</ErrorReport>
3535
<WarningLevel>4</WarningLevel>
36-
<PlatformTarget>x86</PlatformTarget>
36+
<PlatformTarget>AnyCPU</PlatformTarget>
3737
<Prefer32Bit>false</Prefer32Bit>
3838
<LangVersion>7.3</LangVersion>
3939
</PropertyGroup>

Source/Contrib/ActivityEditor/LibAE/LibAE.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
44
<PropertyGroup>
55
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6-
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
77
<ProjectGuid>{B79691A7-BF8C-40B4-ADE0-5F30F2730414}</ProjectGuid>
88
<OutputType>Library</OutputType>
99
<AppDesignerFolder>Properties</AppDesignerFolder>
@@ -13,28 +13,28 @@
1313
<FileAlignment>512</FileAlignment>
1414
<TargetFrameworkProfile />
1515
</PropertyGroup>
16-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
16+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
1717
<DebugSymbols>true</DebugSymbols>
1818
<DebugType>full</DebugType>
1919
<Optimize>false</Optimize>
2020
<OutputPath>..\..\..\..\Program\</OutputPath>
2121
<DefineConstants>TRACE;DEBUG;WINDOWS;ACTIVITY_EDITOR;JSON_OR_XML</DefineConstants>
2222
<ErrorReport>prompt</ErrorReport>
2323
<WarningLevel>4</WarningLevel>
24-
<PlatformTarget>x86</PlatformTarget>
24+
<PlatformTarget>AnyCPU</PlatformTarget>
2525
<PlatformTarget>AnyCPU</PlatformTarget>
2626
<PlatformTarget>AnyCPU</PlatformTarget>
2727
<Prefer32Bit>false</Prefer32Bit>
2828
<LangVersion>7.3</LangVersion>
2929
</PropertyGroup>
30-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
30+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
3131
<DebugType>pdbonly</DebugType>
3232
<Optimize>true</Optimize>
3333
<OutputPath>..\..\..\..\Program\</OutputPath>
3434
<DefineConstants>TRACE;WINDOWS;ACTIVITY_EDITOR</DefineConstants>
3535
<ErrorReport>prompt</ErrorReport>
3636
<WarningLevel>4</WarningLevel>
37-
<PlatformTarget>x86</PlatformTarget>
37+
<PlatformTarget>AnyCPU</PlatformTarget>
3838
<Prefer32Bit>false</Prefer32Bit>
3939
<LangVersion>7.3</LangVersion>
4040
</PropertyGroup>

Source/Contrib/ContentManager/ContentManager.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
44
<PropertyGroup>
55
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6-
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
77
<ProjectGuid>{E3E04859-2734-46EA-99B6-8A9721E85D3F}</ProjectGuid>
88
<OutputType>WinExe</OutputType>
99
<AppDesignerFolder>Properties</AppDesignerFolder>
@@ -14,28 +14,28 @@
1414
<ApplicationIcon>..\..\ORTS.ico</ApplicationIcon>
1515
<TargetFrameworkProfile />
1616
</PropertyGroup>
17-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
17+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
1818
<DebugSymbols>true</DebugSymbols>
1919
<DebugType>full</DebugType>
2020
<Optimize>false</Optimize>
2121
<OutputPath>..\..\..\Program\</OutputPath>
2222
<DefineConstants>DEBUG;TRACE</DefineConstants>
2323
<ErrorReport>prompt</ErrorReport>
2424
<WarningLevel>4</WarningLevel>
25-
<PlatformTarget>x86</PlatformTarget>
25+
<PlatformTarget>AnyCPU</PlatformTarget>
2626
<PlatformTarget>AnyCPU</PlatformTarget>
2727
<PlatformTarget>AnyCPU</PlatformTarget>
2828
<Prefer32Bit>false</Prefer32Bit>
2929
<LangVersion>7.3</LangVersion>
3030
</PropertyGroup>
31-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
31+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
3232
<DebugType>pdbonly</DebugType>
3333
<Optimize>true</Optimize>
3434
<OutputPath>..\..\..\Program\</OutputPath>
3535
<DefineConstants>TRACE</DefineConstants>
3636
<ErrorReport>prompt</ErrorReport>
3737
<WarningLevel>4</WarningLevel>
38-
<PlatformTarget>x86</PlatformTarget>
38+
<PlatformTarget>AnyCPU</PlatformTarget>
3939
<Prefer32Bit>false</Prefer32Bit>
4040
<LangVersion>7.3</LangVersion>
4141
</PropertyGroup>

Source/Contrib/DataCollector/DataCollector.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
44
<PropertyGroup>
55
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6-
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
77
<ProjectGuid>{22CC0DE5-5E0C-4CA4-9CC0-FF1FE6C6B2BA}</ProjectGuid>
88
<OutputType>Exe</OutputType>
99
<AppDesignerFolder>Properties</AppDesignerFolder>
@@ -13,28 +13,28 @@
1313
<FileAlignment>512</FileAlignment>
1414
<TargetFrameworkProfile />
1515
</PropertyGroup>
16-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
16+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
1717
<DebugSymbols>true</DebugSymbols>
1818
<DebugType>full</DebugType>
1919
<Optimize>false</Optimize>
2020
<OutputPath>..\..\..\Program\</OutputPath>
2121
<DefineConstants>DEBUG;TRACE</DefineConstants>
2222
<ErrorReport>prompt</ErrorReport>
2323
<WarningLevel>4</WarningLevel>
24-
<PlatformTarget>x86</PlatformTarget>
24+
<PlatformTarget>AnyCPU</PlatformTarget>
2525
<PlatformTarget>AnyCPU</PlatformTarget>
2626
<PlatformTarget>AnyCPU</PlatformTarget>
2727
<Prefer32Bit>false</Prefer32Bit>
2828
<LangVersion>7.3</LangVersion>
2929
</PropertyGroup>
30-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
30+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
3131
<DebugType>pdbonly</DebugType>
3232
<Optimize>true</Optimize>
3333
<OutputPath>..\..\..\Program\</OutputPath>
3434
<DefineConstants>TRACE</DefineConstants>
3535
<ErrorReport>prompt</ErrorReport>
3636
<WarningLevel>4</WarningLevel>
37-
<PlatformTarget>x86</PlatformTarget>
37+
<PlatformTarget>AnyCPU</PlatformTarget>
3838
<Prefer32Bit>false</Prefer32Bit>
3939
<LangVersion>7.3</LangVersion>
4040
</PropertyGroup>

Source/Contrib/DataConverter/DataConverter.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,23 +17,23 @@
1717
<PropertyGroup>
1818
<ApplicationIcon>..\..\ORTS.ico</ApplicationIcon>
1919
</PropertyGroup>
20-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
20+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
2121
<DebugSymbols>true</DebugSymbols>
2222
<OutputPath>..\..\..\Program\</OutputPath>
2323
<DefineConstants>DEBUG;TRACE</DefineConstants>
2424
<DebugType>full</DebugType>
25-
<PlatformTarget>x86</PlatformTarget>
25+
<PlatformTarget>AnyCPU</PlatformTarget>
2626
<ErrorReport>prompt</ErrorReport>
2727
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
2828
<Prefer32Bit>false</Prefer32Bit>
2929
<LangVersion>7.3</LangVersion>
3030
</PropertyGroup>
31-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
31+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
3232
<OutputPath>..\..\..\Program\</OutputPath>
3333
<DefineConstants>TRACE</DefineConstants>
3434
<Optimize>true</Optimize>
3535
<DebugType>pdbonly</DebugType>
36-
<PlatformTarget>x86</PlatformTarget>
36+
<PlatformTarget>AnyCPU</PlatformTarget>
3737
<ErrorReport>prompt</ErrorReport>
3838
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
3939
<Prefer32Bit>false</Prefer32Bit>

Source/Contrib/DataValidator/DataValidator.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,23 +13,23 @@
1313
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
1414
<TargetFrameworkProfile />
1515
</PropertyGroup>
16-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
16+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
1717
<DebugSymbols>true</DebugSymbols>
1818
<OutputPath>..\..\..\Program\</OutputPath>
1919
<DefineConstants>DEBUG;TRACE</DefineConstants>
2020
<DebugType>full</DebugType>
21-
<PlatformTarget>x86</PlatformTarget>
21+
<PlatformTarget>AnyCPU</PlatformTarget>
2222
<ErrorReport>prompt</ErrorReport>
2323
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
2424
<Prefer32Bit>false</Prefer32Bit>
2525
<LangVersion>7.3</LangVersion>
2626
</PropertyGroup>
27-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
27+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
2828
<OutputPath>..\..\..\Program\</OutputPath>
2929
<DefineConstants>TRACE</DefineConstants>
3030
<Optimize>true</Optimize>
3131
<DebugType>pdbonly</DebugType>
32-
<PlatformTarget>x86</PlatformTarget>
32+
<PlatformTarget>AnyCPU</PlatformTarget>
3333
<ErrorReport>prompt</ErrorReport>
3434
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
3535
<Prefer32Bit>false</Prefer32Bit>

Source/Contrib/TrackViewer/TrackViewer.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
44
<PropertyGroup>
55
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6-
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
77
<ProjectGuid>{79C3A70B-7535-40CB-8448-91AB87CBAE44}</ProjectGuid>
88
<OutputType>WinExe</OutputType>
99
<AppDesignerFolder>Properties</AppDesignerFolder>
@@ -14,28 +14,28 @@
1414
<ApplicationIcon>..\..\ORTS.ico</ApplicationIcon>
1515
<TargetFrameworkProfile />
1616
</PropertyGroup>
17-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
17+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
1818
<DebugSymbols>true</DebugSymbols>
1919
<DebugType>full</DebugType>
2020
<Optimize>false</Optimize>
2121
<OutputPath>..\..\..\Program\</OutputPath>
2222
<DefineConstants>TRACE;DEBUG;WINDOWS</DefineConstants>
2323
<ErrorReport>prompt</ErrorReport>
2424
<WarningLevel>4</WarningLevel>
25-
<PlatformTarget>x86</PlatformTarget>
25+
<PlatformTarget>AnyCPU</PlatformTarget>
2626
<PlatformTarget>AnyCPU</PlatformTarget>
2727
<PlatformTarget>AnyCPU</PlatformTarget>
2828
<Prefer32Bit>false</Prefer32Bit>
2929
<LangVersion>7.3</LangVersion>
3030
</PropertyGroup>
31-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
31+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
3232
<DebugType>pdbonly</DebugType>
3333
<Optimize>true</Optimize>
3434
<OutputPath>..\..\..\Program\</OutputPath>
3535
<DefineConstants>TRACE;WINDOWS</DefineConstants>
3636
<ErrorReport>prompt</ErrorReport>
3737
<WarningLevel>4</WarningLevel>
38-
<PlatformTarget>x86</PlatformTarget>
38+
<PlatformTarget>AnyCPU</PlatformTarget>
3939
<Prefer32Bit>false</Prefer32Bit>
4040
<LangVersion>7.3</LangVersion>
4141
</PropertyGroup>

Source/Menu/Menu.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
44
<PropertyGroup>
55
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6-
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
77
<ProjectGuid>{5EA53243-5C52-4F9C-A730-C35F6C68FB74}</ProjectGuid>
88
<OutputType>WinExe</OutputType>
99
<AppDesignerFolder>Properties</AppDesignerFolder>
@@ -14,29 +14,29 @@
1414
<ApplicationIcon>..\ORTS.ico</ApplicationIcon>
1515
<TargetFrameworkProfile />
1616
</PropertyGroup>
17-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
17+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
1818
<DebugSymbols>true</DebugSymbols>
1919
<DebugType>full</DebugType>
2020
<Optimize>false</Optimize>
2121
<OutputPath>..\..\Program\</OutputPath>
2222
<DefineConstants>DEBUG;TRACE</DefineConstants>
2323
<ErrorReport>prompt</ErrorReport>
2424
<WarningLevel>4</WarningLevel>
25-
<PlatformTarget>x86</PlatformTarget>
25+
<PlatformTarget>AnyCPU</PlatformTarget>
2626
<PlatformTarget>AnyCPU</PlatformTarget>
2727
<PlatformTarget>AnyCPU</PlatformTarget>
2828
<Prefer32Bit>false</Prefer32Bit>
2929
<LangVersion>7.3</LangVersion>
3030
</PropertyGroup>
31-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
31+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
3232
<DebugType>pdbonly</DebugType>
3333
<Optimize>true</Optimize>
3434
<OutputPath>..\..\Program\</OutputPath>
3535
<DefineConstants>TRACE</DefineConstants>
3636
<ErrorReport>prompt</ErrorReport>
3737
<WarningLevel>4</WarningLevel>
3838
<DocumentationFile>..\..\Program\Menu.xml</DocumentationFile>
39-
<PlatformTarget>x86</PlatformTarget>
39+
<PlatformTarget>AnyCPU</PlatformTarget>
4040
<NoWarn>1591</NoWarn>
4141
<Prefer32Bit>false</Prefer32Bit>
4242
<LangVersion>7.3</LangVersion>

0 commit comments

Comments
 (0)