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

Commit f47f201

Browse files
committed
Update .NET 4.5 dlls
1 parent 3eb3847 commit f47f201

20 files changed

+2143
-784
lines changed

lib/ServiceStack.Client.dll

0 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

512 Bytes
Binary file not shown.

lib/signed/ServiceStack.Text.dll

1 KB
Binary file not shown.

lib/tests/ServiceStack.Client.dll

512 Bytes
Binary file not shown.
-512 Bytes
Binary file not shown.

lib/tests/ServiceStack.Common.Tests.dll.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@
2222
<add name="ServiceStack.Common.Tests.Properties.Settings.authConnectionString" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\auth.mdf;Integrated Security=True;Connect Timeout=30;User Instance=True" providerName="System.Data.SqlClient"/>
2323
</connectionStrings>
2424
<startup>
25-
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/>
25+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.1"/>
2626
</startup>
2727
</configuration>
0 Bytes
Binary file not shown.

lib/tests/ServiceStack.Common.dll

0 Bytes
Binary file not shown.

lib/tests/ServiceStack.Interfaces.dll

0 Bytes
Binary file not shown.

lib/tests/ServiceStack.OrmLite.dll

146 KB
Binary file not shown.

lib/tests/ServiceStack.OrmLite.xml

+2,122-782
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/tests/ServiceStack.Redis.dll

512 Bytes
Binary file not shown.

lib/tests/ServiceStack.Server.dll

0 Bytes
Binary file not shown.

lib/tests/ServiceStack.Text.dll

1 KB
Binary file not shown.

lib/tests/ServiceStack.XML

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/tests/ServiceStack.dll

1.5 KB
Binary file not shown.

src/ServiceStack.Redis/ServiceStack.Redis.Signed.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
<PropertyGroup>
123137
<SignAssembly>true</SignAssembly>

0 commit comments

Comments
 (0)