Skip to content

Commit c2d2594

Browse files
author
Jake Ginnivan
committed
Merge pull request #122 from JakeGinnivan/x64Support
Added x64 support, can now leave test projects as AnyCPU
2 parents c4dc66a + a81c286 commit c2d2594

File tree

24 files changed

+252
-284
lines changed

24 files changed

+252
-284
lines changed

TestStack.White.proj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project DefaultTargets="Test;Publish" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
44
<Root>$(MSBuildProjectDirectory)\</Root>
5-
<Platform Condition="$(Platform) == ''">x86</Platform>
5+
<BuildPlatform Condition="$(BuildPlatform) == ''">Any CPU</BuildPlatform>
66
<Configuration Condition="$(Configuration) == ''">Release</Configuration>
77
<MSBuildCommunityTasksPath>$(Root)tools\MSBuildCommunityTasks</MSBuildCommunityTasksPath>
88
<xUnit>$(Root)tools\xUnit\xunit.console.exe</xUnit>
@@ -27,7 +27,7 @@
2727
</Target>
2828

2929
<Target Name="Build" DependsOnTargets="Cleanup">
30-
<MSBuild Projects="$(Root)src\TestStack.White.sln" Properties="Configuration=$(Configuration);Platform=$(Platform)" />
30+
<MSBuild Projects="$(Root)src\TestStack.White.sln" Properties="Configuration=$(Configuration);Platform=$(BuildPlatform)" />
3131
</Target>
3232

3333
<Target Name="Test" DependsOnTargets="Build">

src/Sample App/Todo.Core/Todo.Core.csproj

Lines changed: 7 additions & 7 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>{F5604A48-3BD0-4418-83F1-3ECC03DD2FF0}</ProjectGuid>
88
<OutputType>Library</OutputType>
99
<AppDesignerFolder>Properties</AppDesignerFolder>
@@ -15,21 +15,21 @@
1515
<RestorePackages>true</RestorePackages>
1616
<FodyPath>..\..\packages\Fody.1.13.12</FodyPath>
1717
</PropertyGroup>
18-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
18+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
1919
<DebugSymbols>true</DebugSymbols>
20-
<OutputPath>bin\x86\Debug\</OutputPath>
20+
<OutputPath>bin\Debug\</OutputPath>
2121
<DefineConstants>DEBUG;TRACE</DefineConstants>
2222
<DebugType>full</DebugType>
23-
<PlatformTarget>x86</PlatformTarget>
23+
<PlatformTarget>AnyCPU</PlatformTarget>
2424
<ErrorReport>prompt</ErrorReport>
2525
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
2626
</PropertyGroup>
27-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
28-
<OutputPath>bin\x86\Release\</OutputPath>
27+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
28+
<OutputPath>bin\Release\</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
</PropertyGroup>

src/Sample App/WinForms/WinformsTodo/WinformsTodo.csproj

Lines changed: 7 additions & 7 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>{D0ED95E7-584A-45B9-B8E2-1A7ADD78C366}</ProjectGuid>
88
<OutputType>WinExe</OutputType>
99
<AppDesignerFolder>Properties</AppDesignerFolder>
@@ -12,21 +12,21 @@
1212
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
1414
</PropertyGroup>
15-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
15+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
1616
<DebugSymbols>true</DebugSymbols>
17-
<OutputPath>bin\x86\Debug\</OutputPath>
17+
<OutputPath>bin\Debug\</OutputPath>
1818
<DefineConstants>DEBUG;TRACE</DefineConstants>
1919
<DebugType>full</DebugType>
20-
<PlatformTarget>x86</PlatformTarget>
20+
<PlatformTarget>AnyCPU</PlatformTarget>
2121
<ErrorReport>prompt</ErrorReport>
2222
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
2323
</PropertyGroup>
24-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
25-
<OutputPath>bin\x86\Release\</OutputPath>
24+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
25+
<OutputPath>bin\Release\</OutputPath>
2626
<DefineConstants>TRACE</DefineConstants>
2727
<Optimize>true</Optimize>
2828
<DebugType>pdbonly</DebugType>
29-
<PlatformTarget>x86</PlatformTarget>
29+
<PlatformTarget>AnyCPU</PlatformTarget>
3030
<ErrorReport>prompt</ErrorReport>
3131
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
3232
</PropertyGroup>

src/Sample App/Wpf/WpfTodo.UITests/WpfTodo.UITests.csproj

Lines changed: 7 additions & 7 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>{3CC2654B-2108-4A38-AFFF-82718703EBE3}</ProjectGuid>
88
<OutputType>Library</OutputType>
99
<AppDesignerFolder>Properties</AppDesignerFolder>
@@ -14,21 +14,21 @@
1414
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\..\</SolutionDir>
1515
<RestorePackages>true</RestorePackages>
1616
</PropertyGroup>
17-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
17+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
1818
<DebugSymbols>true</DebugSymbols>
19-
<OutputPath>bin\x86\Debug\</OutputPath>
19+
<OutputPath>bin\Debug\</OutputPath>
2020
<DefineConstants>DEBUG;TRACE</DefineConstants>
2121
<DebugType>full</DebugType>
22-
<PlatformTarget>x86</PlatformTarget>
22+
<PlatformTarget>AnyCPU</PlatformTarget>
2323
<ErrorReport>prompt</ErrorReport>
2424
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
2525
</PropertyGroup>
26-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
27-
<OutputPath>bin\x86\Release\</OutputPath>
26+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
27+
<OutputPath>bin\Release\</OutputPath>
2828
<DefineConstants>TRACE</DefineConstants>
2929
<Optimize>true</Optimize>
3030
<DebugType>pdbonly</DebugType>
31-
<PlatformTarget>x86</PlatformTarget>
31+
<PlatformTarget>AnyCPU</PlatformTarget>
3232
<ErrorReport>prompt</ErrorReport>
3333
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
3434
</PropertyGroup>

src/Sample App/Wpf/WpfTodo/WpfTodo.csproj

Lines changed: 7 additions & 7 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>{51509F9D-12C4-4043-A68F-16A300F38FDB}</ProjectGuid>
88
<OutputType>WinExe</OutputType>
99
<AppDesignerFolder>Properties</AppDesignerFolder>
@@ -17,21 +17,21 @@
1717
<RestorePackages>true</RestorePackages>
1818
<FodyPath>..\..\..\packages\Fody.1.13.12</FodyPath>
1919
</PropertyGroup>
20-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
20+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
2121
<DebugSymbols>true</DebugSymbols>
22-
<OutputPath>bin\x86\Debug\</OutputPath>
22+
<OutputPath>bin\Debug\</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
</PropertyGroup>
29-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
30-
<OutputPath>bin\x86\Release\</OutputPath>
29+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
30+
<OutputPath>bin\Release\</OutputPath>
3131
<DefineConstants>TRACE</DefineConstants>
3232
<Optimize>true</Optimize>
3333
<DebugType>pdbonly</DebugType>
34-
<PlatformTarget>x86</PlatformTarget>
34+
<PlatformTarget>AnyCPU</PlatformTarget>
3535
<ErrorReport>prompt</ErrorReport>
3636
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
3737
</PropertyGroup>

src/TestApplications/WPFTestApp/WPFTestApp.Old.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
33
<PropertyGroup>
44
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5-
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
5+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
66
<ProjectGuid>{EAC2EAA3-9C17-4F59-BC5B-89C2601D38AC}</ProjectGuid>
77
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
88
<RootNamespace>WindowsPresentationFramework</RootNamespace>
@@ -36,20 +36,20 @@
3636
<BootstrapperEnabled>true</BootstrapperEnabled>
3737
<TargetFrameworkProfile />
3838
</PropertyGroup>
39-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
39+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
4040
<DebugSymbols>true</DebugSymbols>
4141
<OutputPath>bin\Debug\</OutputPath>
4242
<DefineConstants>DEBUG;TRACE</DefineConstants>
4343
<DebugType>full</DebugType>
44-
<PlatformTarget>x86</PlatformTarget>
44+
<PlatformTarget>AnyCPU</PlatformTarget>
4545
<UseVSHostingProcess>false</UseVSHostingProcess>
4646
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
4747
</PropertyGroup>
48-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
48+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
4949
<OutputPath>bin\Release\</OutputPath>
5050
<DefineConstants>TRACE</DefineConstants>
5151
<Optimize>true</Optimize>
52-
<PlatformTarget>x86</PlatformTarget>
52+
<PlatformTarget>AnyCPU</PlatformTarget>
5353
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
5454
</PropertyGroup>
5555
<ItemGroup>

src/TestApplications/WinFormsTestApp/WinFormsTestApp.Old.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
33
<PropertyGroup>
44
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5-
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
5+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
66
<ProductVersion>9.0.21022</ProductVersion>
77
<SchemaVersion>2.0</SchemaVersion>
88
<ProjectGuid>{BDD325EF-D400-4A37-B4C6-D7BF150587C7}</ProjectGuid>
@@ -36,23 +36,23 @@
3636
<BootstrapperEnabled>true</BootstrapperEnabled>
3737
<TargetFrameworkProfile />
3838
</PropertyGroup>
39-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
39+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
4040
<DebugSymbols>true</DebugSymbols>
4141
<OutputPath>bin\Debug\</OutputPath>
4242
<DefineConstants>DEBUG;TRACE</DefineConstants>
4343
<NoWarn>1591</NoWarn>
4444
<DebugType>full</DebugType>
45-
<PlatformTarget>x86</PlatformTarget>
45+
<PlatformTarget>AnyCPU</PlatformTarget>
4646
<UseVSHostingProcess>false</UseVSHostingProcess>
4747
<ErrorReport>prompt</ErrorReport>
4848
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
4949
</PropertyGroup>
50-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
50+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
5151
<OutputPath>bin\Release\</OutputPath>
5252
<DefineConstants>TRACE</DefineConstants>
5353
<Optimize>true</Optimize>
5454
<DebugType>pdbonly</DebugType>
55-
<PlatformTarget>x86</PlatformTarget>
55+
<PlatformTarget>AnyCPU</PlatformTarget>
5656
<ErrorReport>prompt</ErrorReport>
5757
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
5858
</PropertyGroup>

src/TestApplications/WindowsFormsTestApplication/WindowsFormsTestApplication.csproj

Lines changed: 7 additions & 7 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>{24929CE3-4000-4600-8830-503BE6A2BA42}</ProjectGuid>
88
<OutputType>WinExe</OutputType>
99
<AppDesignerFolder>Properties</AppDesignerFolder>
@@ -12,21 +12,21 @@
1212
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
1414
</PropertyGroup>
15-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
15+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
1616
<DebugSymbols>true</DebugSymbols>
17-
<OutputPath>bin\x86\Debug\</OutputPath>
17+
<OutputPath>bin\Debug\</OutputPath>
1818
<DefineConstants>DEBUG;TRACE</DefineConstants>
1919
<DebugType>full</DebugType>
20-
<PlatformTarget>x86</PlatformTarget>
20+
<PlatformTarget>AnyCPU</PlatformTarget>
2121
<ErrorReport>prompt</ErrorReport>
2222
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
2323
</PropertyGroup>
24-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
25-
<OutputPath>bin\x86\Release\</OutputPath>
24+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
25+
<OutputPath>bin\Release\</OutputPath>
2626
<DefineConstants>TRACE</DefineConstants>
2727
<Optimize>true</Optimize>
2828
<DebugType>pdbonly</DebugType>
29-
<PlatformTarget>x86</PlatformTarget>
29+
<PlatformTarget>AnyCPU</PlatformTarget>
3030
<ErrorReport>prompt</ErrorReport>
3131
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
3232
</PropertyGroup>

src/TestApplications/WpfTestApplication/WpfTestApplication.csproj

Lines changed: 7 additions & 7 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>{492E6340-32CC-4D03-A9C4-36FB4C40CF5C}</ProjectGuid>
88
<OutputType>WinExe</OutputType>
99
<AppDesignerFolder>Properties</AppDesignerFolder>
@@ -14,21 +14,21 @@
1414
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
1515
<WarningLevel>4</WarningLevel>
1616
</PropertyGroup>
17-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
17+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
1818
<DebugSymbols>true</DebugSymbols>
19-
<OutputPath>bin\x86\Debug\</OutputPath>
19+
<OutputPath>bin\Debug\</OutputPath>
2020
<DefineConstants>DEBUG;TRACE</DefineConstants>
2121
<DebugType>full</DebugType>
22-
<PlatformTarget>x86</PlatformTarget>
22+
<PlatformTarget>AnyCPU</PlatformTarget>
2323
<ErrorReport>prompt</ErrorReport>
2424
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
2525
</PropertyGroup>
26-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
27-
<OutputPath>bin\x86\Release\</OutputPath>
26+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
27+
<OutputPath>bin\Release\</OutputPath>
2828
<DefineConstants>TRACE</DefineConstants>
2929
<Optimize>true</Optimize>
3030
<DebugType>pdbonly</DebugType>
31-
<PlatformTarget>x86</PlatformTarget>
31+
<PlatformTarget>AnyCPU</PlatformTarget>
3232
<ErrorReport>prompt</ErrorReport>
3333
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
3434
</PropertyGroup>

src/TestStack.White.Reporting/TestStack.White.Reporting.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
33
<PropertyGroup>
44
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5-
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
5+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
66
<ProductVersion>9.0.30729</ProductVersion>
77
<SchemaVersion>2.0</SchemaVersion>
88
<ProjectGuid>{19FC2A6E-1C39-4DB8-AABF-A234FD6BC3FE}</ProjectGuid>
@@ -39,23 +39,23 @@
3939
<RestorePackages>true</RestorePackages>
4040
<TargetFrameworkProfile />
4141
</PropertyGroup>
42-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
42+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
4343
<DebugSymbols>true</DebugSymbols>
4444
<OutputPath>bin\Debug\</OutputPath>
4545
<DefineConstants>DEBUG;TRACE</DefineConstants>
4646
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
4747
<NoWarn>1591</NoWarn>
4848
<DebugType>full</DebugType>
49-
<PlatformTarget>x86</PlatformTarget>
49+
<PlatformTarget>AnyCPU</PlatformTarget>
5050
<ErrorReport>prompt</ErrorReport>
5151
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
5252
</PropertyGroup>
53-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
53+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
5454
<OutputPath>bin\Release\</OutputPath>
5555
<DefineConstants>TRACE</DefineConstants>
5656
<Optimize>true</Optimize>
5757
<DebugType>pdbonly</DebugType>
58-
<PlatformTarget>x86</PlatformTarget>
58+
<PlatformTarget>AnyCPU</PlatformTarget>
5959
<ErrorReport>prompt</ErrorReport>
6060
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
6161
</PropertyGroup>

0 commit comments

Comments
 (0)