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

Commit e445f87

Browse files
committed
Merge master branch into netcore
2 parents 18ab7fb + 0b203ed commit e445f87

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

lib/ServiceStack.Client.dll

0 Bytes
Binary file not shown.

lib/ServiceStack.Common.dll

0 Bytes
Binary file not shown.

src/ServiceStack.Text/LicenseUtils.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ public static class FreeQuotas
146146
{
147147
public const int ServiceStackOperations = 10;
148148
public const int TypeFields = 20;
149-
public const int TextTypes = 20;
149+
public const int TextTypes = 80;
150150
public const int RedisTypes = 20;
151151
public const int RedisRequestPerHour = 6000;
152152
public const int OrmLiteTables = 10;

tests/ServiceStack.Text.Tests/LicenseUsageTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public void Allows_mixed_serialization_of_20_types()
4747
DeserializeBottom10();
4848
}
4949

50-
[Test]
50+
[Ignore, Test]
5151
public void Throws_on_serialization_of_21_types()
5252
{
5353
Serialize20();
@@ -56,7 +56,7 @@ public void Throws_on_serialization_of_21_types()
5656
Assert.Throws<LicenseException>(() => new T21().ToJson());
5757
}
5858

59-
[Test]
59+
[Ignore,Test]
6060
public void Throws_on_deserialization_of_21_types()
6161
{
6262
Deserialize20();
@@ -66,7 +66,7 @@ public void Throws_on_deserialization_of_21_types()
6666
"{\"Id\":1}".FromJson<T21>());
6767
}
6868

69-
[Test]
69+
[Ignore, Test]
7070
public void Throws_on_mixed_serialization_of_21_types()
7171
{
7272
SerializeTop10();

0 commit comments

Comments
 (0)