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

Commit 3eb3847

Browse files
committedAug 19, 2016
Upgrade to .NET v4.5
1 parent 079537f commit 3eb3847

File tree

13 files changed

+36
-9
lines changed

13 files changed

+36
-9
lines changed
 

‎NuGet.Signed/ServiceStack.Redis.Signed/servicestack.redis.signed.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<iconUrl>https://servicestack.net/img/logo-32.png</iconUrl>
1818
<tags>Redis NoSQL Client Distributed Cache PubSub Messaging Transactions</tags>
1919
<language>en-US</language>
20-
<copyright>ServiceStack 2013 and contributors</copyright>
20+
<copyright>ServiceStack 2016 and contributors</copyright>
2121
<dependencies>
2222
<dependency id="ServiceStack.Common.Signed" version="4.5" />
2323
</dependencies>

‎NuGet/ServiceStack.Redis/servicestack.redis.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<iconUrl>https://servicestack.net/img/logo-32.png</iconUrl>
2020
<tags>Redis NoSQL Client Distributed Cache PubSub Messaging Transactions</tags>
2121
<language>en-US</language>
22-
<copyright>ServiceStack 2013 and contributors</copyright>
22+
<copyright>ServiceStack 2016 and contributors</copyright>
2323
<dependencies>
2424
<dependency id="ServiceStack.Common" version="4.5" />
2525
</dependencies>

‎lib/ServiceStack.Client.dll

512 Bytes
Binary file not shown.

‎lib/ServiceStack.Common.dll

0 Bytes
Binary file not shown.

‎lib/ServiceStack.Interfaces.dll

0 Bytes
Binary file not shown.

‎lib/ServiceStack.Text.dll

0 Bytes
Binary file not shown.

‎lib/signed/ServiceStack.Common.dll

1 KB
Binary file not shown.

‎lib/signed/ServiceStack.Text.dll

-1 KB
Binary file not shown.

‎src/ServiceStack.Redis/ServiceStack.Redis.csproj

+15-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<IsWebBootstrapper>false</IsWebBootstrapper>
3131
<UseApplicationTrust>false</UseApplicationTrust>
3232
<BootstrapperEnabled>true</BootstrapperEnabled>
33-
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
33+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
3434
<TargetFrameworkProfile />
3535
</PropertyGroup>
3636
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
@@ -42,6 +42,7 @@
4242
<ErrorReport>prompt</ErrorReport>
4343
<WarningLevel>4</WarningLevel>
4444
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
45+
<Prefer32Bit>false</Prefer32Bit>
4546
</PropertyGroup>
4647
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
4748
<DebugType>pdbonly</DebugType>
@@ -52,6 +53,7 @@
5253
<WarningLevel>4</WarningLevel>
5354
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
5455
<DocumentationFile>bin\Release\ServiceStack.Redis.XML</DocumentationFile>
56+
<Prefer32Bit>false</Prefer32Bit>
5557
</PropertyGroup>
5658
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'STATIC_ONLY NO_EXPRESSIONS|AnyCPU' ">
5759
<DebugSymbols>true</DebugSymbols>
@@ -63,6 +65,7 @@
6365
<WarningLevel>4</WarningLevel>
6466
<Optimize>false</Optimize>
6567
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
68+
<Prefer32Bit>false</Prefer32Bit>
6669
</PropertyGroup>
6770
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'MonoTouch|AnyCPU' ">
6871
<DebugSymbols>true</DebugSymbols>
@@ -74,6 +77,7 @@
7477
<WarningLevel>4</WarningLevel>
7578
<Optimize>false</Optimize>
7679
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
80+
<Prefer32Bit>false</Prefer32Bit>
7781
</PropertyGroup>
7882
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
7983
<DebugSymbols>true</DebugSymbols>
@@ -84,6 +88,7 @@
8488
<ErrorReport>prompt</ErrorReport>
8589
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
8690
<CodeAnalysisIgnoreBuiltInRuleSets>false</CodeAnalysisIgnoreBuiltInRuleSets>
91+
<Prefer32Bit>false</Prefer32Bit>
8792
</PropertyGroup>
8893
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
8994
<DefineConstants>TRACE</DefineConstants>
@@ -96,6 +101,7 @@
96101
<CodeAnalysisIgnoreBuiltInRuleSets>false</CodeAnalysisIgnoreBuiltInRuleSets>
97102
<CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules>
98103
<OutputPath>bin\x86\Release\</OutputPath>
104+
<Prefer32Bit>false</Prefer32Bit>
99105
</PropertyGroup>
100106
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Signed|AnyCPU'">
101107
<OutputPath>bin\Signed\</OutputPath>
@@ -106,6 +112,7 @@
106112
<PlatformTarget>AnyCPU</PlatformTarget>
107113
<ErrorReport>prompt</ErrorReport>
108114
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
115+
<Prefer32Bit>false</Prefer32Bit>
109116
</PropertyGroup>
110117
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Signed|x86'">
111118
<OutputPath>bin\x86\Signed\</OutputPath>
@@ -118,6 +125,13 @@
118125
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
119126
<CodeAnalysisIgnoreBuiltInRuleSets>false</CodeAnalysisIgnoreBuiltInRuleSets>
120127
<CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules>
128+
<Prefer32Bit>false</Prefer32Bit>
129+
</PropertyGroup>
130+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'MonoTouch|x86'">
131+
<Prefer32Bit>false</Prefer32Bit>
132+
</PropertyGroup>
133+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'STATIC_ONLY NO_EXPRESSIONS|x86'">
134+
<Prefer32Bit>false</Prefer32Bit>
121135
</PropertyGroup>
122136
<ItemGroup>
123137
<Reference Include="ServiceStack.Common">

‎tests/Console.Tests/App.config

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<?xml version="1.0" encoding="utf-8" ?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
33
<appSettings>
44
<add key="servicestack:license" value="1001-e1JlZjoxMDAxLE5hbWU6VGVzdCBCdXNpbmVzcyxUeXBlOkJ1c2luZXNzLEhhc2g6UHVNTVRPclhvT2ZIbjQ5MG5LZE1mUTd5RUMzQnBucTFEbTE3TDczVEF4QUNMT1FhNXJMOWkzVjFGL2ZkVTE3Q2pDNENqTkQyUktRWmhvUVBhYTBiekJGUUZ3ZE5aZHFDYm9hL3lydGlwUHI5K1JsaTBYbzNsUC85cjVJNHE5QVhldDN6QkE4aTlvdldrdTgyTk1relY2eis2dFFqTThYN2lmc0JveHgycFdjPSxFeHBpcnk6MjAxMy0wMS0wMX0="/>
55
</appSettings>
6-
</configuration>
6+
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/></startup></configuration>

‎tests/Console.Tests/Console.Tests.csproj

+4-1
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@
99
<AppDesignerFolder>Properties</AppDesignerFolder>
1010
<RootNamespace>ConsoleTests</RootNamespace>
1111
<AssemblyName>Console.Tests</AssemblyName>
12-
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
12+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
14+
<TargetFrameworkProfile />
1415
</PropertyGroup>
1516
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1617
<PlatformTarget>AnyCPU</PlatformTarget>
@@ -21,6 +22,7 @@
2122
<DefineConstants>DEBUG;TRACE</DefineConstants>
2223
<ErrorReport>prompt</ErrorReport>
2324
<WarningLevel>4</WarningLevel>
25+
<Prefer32Bit>false</Prefer32Bit>
2426
</PropertyGroup>
2527
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2628
<PlatformTarget>AnyCPU</PlatformTarget>
@@ -30,6 +32,7 @@
3032
<DefineConstants>TRACE</DefineConstants>
3133
<ErrorReport>prompt</ErrorReport>
3234
<WarningLevel>4</WarningLevel>
35+
<Prefer32Bit>false</Prefer32Bit>
3336
</PropertyGroup>
3437
<ItemGroup>
3538
<Reference Include="ServiceStack">
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<?xml version="1.0" encoding="utf-8" ?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
33
<appSettings>
44
<add key="servicestack:license" value="1001-e1JlZjoxMDAxLE5hbWU6VGVzdCBCdXNpbmVzcyxUeXBlOkJ1c2luZXNzLEhhc2g6UHVNTVRPclhvT2ZIbjQ5MG5LZE1mUTd5RUMzQnBucTFEbTE3TDczVEF4QUNMT1FhNXJMOWkzVjFGL2ZkVTE3Q2pDNENqTkQyUktRWmhvUVBhYTBiekJGUUZ3ZE5aZHFDYm9hL3lydGlwUHI5K1JsaTBYbzNsUC85cjVJNHE5QVhldDN6QkE4aTlvdldrdTgyTk1relY2eis2dFFqTThYN2lmc0JveHgycFdjPSxFeHBpcnk6MjAxMy0wMS0wMX0="/>
55
</appSettings>
6-
</configuration>
6+
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/></startup></configuration>

‎tests/ServiceStack.Redis.Tests/ServiceStack.Redis.Tests.csproj

+11-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<AppDesignerFolder>Properties</AppDesignerFolder>
1111
<RootNamespace>ServiceStack.Redis.Tests</RootNamespace>
1212
<AssemblyName>ServiceStack.Redis.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>x86</PlatformTarget>
58+
<Prefer32Bit>false</Prefer32Bit>
5759
</PropertyGroup>
5860
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'STATIC_ONLY NO_EXPRESSIONS|AnyCPU' ">
5961
<DebugSymbols>true</DebugSymbols>
@@ -65,6 +67,7 @@
6567
<WarningLevel>4</WarningLevel>
6668
<Optimize>false</Optimize>
6769
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
70+
<Prefer32Bit>false</Prefer32Bit>
6871
</PropertyGroup>
6972
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'MonoTouch|AnyCPU' ">
7073
<DebugSymbols>true</DebugSymbols>
@@ -76,6 +79,7 @@
7679
<WarningLevel>4</WarningLevel>
7780
<Optimize>false</Optimize>
7881
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
82+
<Prefer32Bit>false</Prefer32Bit>
7983
</PropertyGroup>
8084
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
8185
<DebugSymbols>true</DebugSymbols>
@@ -87,6 +91,7 @@
8791
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
8892
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
8993
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
94+
<Prefer32Bit>false</Prefer32Bit>
9095
</PropertyGroup>
9196
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
9297
<OutputPath>bin\x86\Release\</OutputPath>
@@ -98,6 +103,7 @@
98103
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
99104
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
100105
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
106+
<Prefer32Bit>false</Prefer32Bit>
101107
</PropertyGroup>
102108
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'STATIC_ONLY NO_EXPRESSIONS|x86'">
103109
<DebugSymbols>true</DebugSymbols>
@@ -109,6 +115,7 @@
109115
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
110116
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
111117
<CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules>
118+
<Prefer32Bit>false</Prefer32Bit>
112119
</PropertyGroup>
113120
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'MonoTouch|x86'">
114121
<DebugSymbols>true</DebugSymbols>
@@ -120,6 +127,7 @@
120127
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
121128
<CodeAnalysisIgnoreBuiltInRuleSets>false</CodeAnalysisIgnoreBuiltInRuleSets>
122129
<CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules>
130+
<Prefer32Bit>false</Prefer32Bit>
123131
</PropertyGroup>
124132
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Signed|AnyCPU'">
125133
<OutputPath>bin\Signed\</OutputPath>
@@ -129,6 +137,7 @@
129137
<PlatformTarget>x86</PlatformTarget>
130138
<ErrorReport>prompt</ErrorReport>
131139
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
140+
<Prefer32Bit>false</Prefer32Bit>
132141
</PropertyGroup>
133142
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Signed|x86'">
134143
<OutputPath>bin\x86\Signed\</OutputPath>
@@ -138,6 +147,7 @@
138147
<PlatformTarget>x86</PlatformTarget>
139148
<ErrorReport>prompt</ErrorReport>
140149
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
150+
<Prefer32Bit>false</Prefer32Bit>
141151
</PropertyGroup>
142152
<ItemGroup>
143153
<Reference Include="Moq, Version=2.6.1014.1, Culture=neutral, PublicKeyToken=69f491c39445e920, processorArchitecture=MSIL">

0 commit comments

Comments
 (0)
This repository has been archived.