Skip to content

Commit 3e4c7f6

Browse files
committed
Test.Board now compiles as AnyCPU
1 parent 6dbf2e9 commit 3e4c7f6

File tree

2 files changed

+18
-16
lines changed

2 files changed

+18
-16
lines changed

RaspberrySharp.System.sln

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 2012
3+
# Visual Studio 2013
4+
VisualStudioVersion = 12.0.31101.0
5+
MinimumVisualStudioVersion = 10.0.40219.1
46
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{DE3AA526-5A9D-465A-B9B0-7A07AE6824B5}"
57
ProjectSection(SolutionItems) = preProject
68
Icon.png = Icon.png
@@ -41,16 +43,16 @@ Global
4143
{2C0C9AAF-4EDD-4C79-961B-E7BC4FC4EB0C}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
4244
{2C0C9AAF-4EDD-4C79-961B-E7BC4FC4EB0C}.Release|Mixed Platforms.Build.0 = Release|Any CPU
4345
{2C0C9AAF-4EDD-4C79-961B-E7BC4FC4EB0C}.Release|x86.ActiveCfg = Release|Any CPU
44-
{51780F8A-E5F5-4DC8-84B4-B282800A3396}.Debug|Any CPU.ActiveCfg = Debug|x86
45-
{51780F8A-E5F5-4DC8-84B4-B282800A3396}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
46-
{51780F8A-E5F5-4DC8-84B4-B282800A3396}.Debug|Mixed Platforms.Build.0 = Debug|x86
47-
{51780F8A-E5F5-4DC8-84B4-B282800A3396}.Debug|x86.ActiveCfg = Debug|x86
48-
{51780F8A-E5F5-4DC8-84B4-B282800A3396}.Debug|x86.Build.0 = Debug|x86
49-
{51780F8A-E5F5-4DC8-84B4-B282800A3396}.Release|Any CPU.ActiveCfg = Release|x86
50-
{51780F8A-E5F5-4DC8-84B4-B282800A3396}.Release|Mixed Platforms.ActiveCfg = Release|x86
51-
{51780F8A-E5F5-4DC8-84B4-B282800A3396}.Release|Mixed Platforms.Build.0 = Release|x86
52-
{51780F8A-E5F5-4DC8-84B4-B282800A3396}.Release|x86.ActiveCfg = Release|x86
53-
{51780F8A-E5F5-4DC8-84B4-B282800A3396}.Release|x86.Build.0 = Release|x86
46+
{51780F8A-E5F5-4DC8-84B4-B282800A3396}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
47+
{51780F8A-E5F5-4DC8-84B4-B282800A3396}.Debug|Any CPU.Build.0 = Debug|Any CPU
48+
{51780F8A-E5F5-4DC8-84B4-B282800A3396}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
49+
{51780F8A-E5F5-4DC8-84B4-B282800A3396}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
50+
{51780F8A-E5F5-4DC8-84B4-B282800A3396}.Debug|x86.ActiveCfg = Debug|Any CPU
51+
{51780F8A-E5F5-4DC8-84B4-B282800A3396}.Release|Any CPU.ActiveCfg = Release|Any CPU
52+
{51780F8A-E5F5-4DC8-84B4-B282800A3396}.Release|Any CPU.Build.0 = Release|Any CPU
53+
{51780F8A-E5F5-4DC8-84B4-B282800A3396}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
54+
{51780F8A-E5F5-4DC8-84B4-B282800A3396}.Release|Mixed Platforms.Build.0 = Release|Any CPU
55+
{51780F8A-E5F5-4DC8-84B4-B282800A3396}.Release|x86.ActiveCfg = Release|Any CPU
5456
EndGlobalSection
5557
GlobalSection(SolutionProperties) = preSolution
5658
HideSolutionNode = FALSE

Test.Board/Test.Board.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
44
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5-
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
5+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
66
<ProductVersion>8.0.30703</ProductVersion>
77
<SchemaVersion>2.0</SchemaVersion>
88
<ProjectGuid>{51780F8A-E5F5-4DC8-84B4-B282800A3396}</ProjectGuid>
@@ -14,8 +14,8 @@
1414
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
1515
<FileAlignment>512</FileAlignment>
1616
</PropertyGroup>
17-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
18-
<PlatformTarget>x86</PlatformTarget>
17+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
18+
<PlatformTarget>AnyCPU</PlatformTarget>
1919
<DebugSymbols>true</DebugSymbols>
2020
<DebugType>full</DebugType>
2121
<Optimize>false</Optimize>
@@ -24,8 +24,8 @@
2424
<ErrorReport>prompt</ErrorReport>
2525
<WarningLevel>4</WarningLevel>
2626
</PropertyGroup>
27-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
28-
<PlatformTarget>x86</PlatformTarget>
27+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
28+
<PlatformTarget>AnyCPU</PlatformTarget>
2929
<DebugType>pdbonly</DebugType>
3030
<Optimize>true</Optimize>
3131
<OutputPath>bin\Release\</OutputPath>

0 commit comments

Comments
 (0)