Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit a1e38b8

Browse files
committed
Upgrade Tests proj to .NET 4.5
1 parent 7e9160b commit a1e38b8

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

src/ServiceStack.Text/Pcl.Dynamic.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ private static int VerifyAndGetStartIndex(string value, Type createMapType)
8787
}
8888
}
8989

90-
//TODO: Workout how to fix broken CoreCLR SL5 build that uses dynamic
90+
//TODO: Workout how to fix broken CoreCLR SL5 build that uses dynamic
9191
#if !(SL5 && CORECLR)
9292

9393
public class DynamicJson : DynamicObject

tests/ServiceStack.Text.Tests/ServiceStack.Text.Tests.csproj

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<AppDesignerFolder>Properties</AppDesignerFolder>
1111
<RootNamespace>ServiceStack.Text.Tests</RootNamespace>
1212
<AssemblyName>ServiceStack.Text.Tests</AssemblyName>
13-
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
13+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
1414
<FileAlignment>512</FileAlignment>
1515
<FileUpgradeFlags>
1616
</FileUpgradeFlags>
@@ -44,6 +44,7 @@
4444
<ErrorReport>prompt</ErrorReport>
4545
<WarningLevel>4</WarningLevel>
4646
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
47+
<Prefer32Bit>false</Prefer32Bit>
4748
</PropertyGroup>
4849
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
4950
<DebugType>pdbonly</DebugType>
@@ -54,6 +55,7 @@
5455
<WarningLevel>4</WarningLevel>
5556
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
5657
<PlatformTarget>AnyCPU</PlatformTarget>
58+
<Prefer32Bit>false</Prefer32Bit>
5759
</PropertyGroup>
5860
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'MonoTouch|AnyCPU' ">
5961
<DebugType>pdbonly</DebugType>
@@ -64,6 +66,7 @@
6466
<WarningLevel>4</WarningLevel>
6567
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
6668
<PlatformTarget>x86</PlatformTarget>
69+
<Prefer32Bit>false</Prefer32Bit>
6770
</PropertyGroup>
6871
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
6972
<DebugSymbols>true</DebugSymbols>
@@ -76,6 +79,7 @@
7679
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
7780
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
7881
<CodeAnalysisFailOnMissingRules>false</CodeAnalysisFailOnMissingRules>
82+
<Prefer32Bit>false</Prefer32Bit>
7983
</PropertyGroup>
8084
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
8185
<OutputPath>bin\x86\Release\</OutputPath>
@@ -88,6 +92,7 @@
8892
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
8993
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
9094
<CodeAnalysisFailOnMissingRules>false</CodeAnalysisFailOnMissingRules>
95+
<Prefer32Bit>false</Prefer32Bit>
9196
</PropertyGroup>
9297
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'MonoTouch|x86'">
9398
<OutputPath>bin\x86\MonoTouch\</OutputPath>
@@ -100,6 +105,7 @@
100105
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
101106
<CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules>
102107
<CodeAnalysisFailOnMissingRules>false</CodeAnalysisFailOnMissingRules>
108+
<Prefer32Bit>false</Prefer32Bit>
103109
</PropertyGroup>
104110
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Signed|AnyCPU'">
105111
<OutputPath>bin\Signed\</OutputPath>
@@ -109,6 +115,7 @@
109115
<PlatformTarget>AnyCPU</PlatformTarget>
110116
<ErrorReport>prompt</ErrorReport>
111117
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
118+
<Prefer32Bit>false</Prefer32Bit>
112119
</PropertyGroup>
113120
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Signed|x86'">
114121
<OutputPath>bin\x86\Signed\</OutputPath>
@@ -118,6 +125,7 @@
118125
<PlatformTarget>x86</PlatformTarget>
119126
<ErrorReport>prompt</ErrorReport>
120127
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
128+
<Prefer32Bit>false</Prefer32Bit>
121129
</PropertyGroup>
122130
<ItemGroup>
123131
<Reference Include="Microsoft.CSharp" />
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
33
<package id="NUnit" version="2.6.3" targetFramework="net40" />
44
</packages>

0 commit comments

Comments
 (0)