Skip to content

Commit 71dccfa

Browse files
committed
BitSerializer support abstract class
1 parent e426ce1 commit 71dccfa

File tree

6 files changed

+306
-275
lines changed

6 files changed

+306
-275
lines changed

src/SystemCommonLibrary.AspNetCore/SystemCommonLibrary.AspNetCore.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
<PropertyGroup>
44
<TargetFramework>net7.0</TargetFramework>
55
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
6-
<Version>0.7.0.2</Version>
6+
<Version>0.7.0.3</Version>
77
<Copyright>clawit.com</Copyright>
88
<PackageLicenseUrl></PackageLicenseUrl>
99
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
10-
<AssemblyVersion>0.7.0.2</AssemblyVersion>
11-
<FileVersion>0.7.0.2</FileVersion>
10+
<AssemblyVersion>0.7.0.3</AssemblyVersion>
11+
<FileVersion>0.7.0.3</FileVersion>
1212
<Authors>clawit.com</Authors>
1313
<Company>clawit.com</Company>
1414
</PropertyGroup>

src/SystemCommonLibrary.Data/SystemCommonLibrary.Data.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
66
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
77
<Copyright>clawit.com</Copyright>
8-
<Version>0.7.0.2</Version>
9-
<AssemblyVersion>0.7.0.2</AssemblyVersion>
8+
<Version>0.7.0.3</Version>
9+
<AssemblyVersion>0.7.0.3</AssemblyVersion>
1010
<Authors>clawit.com</Authors>
1111
<Company>clawit.com</Company>
12-
<FileVersion>0.7.0.2</FileVersion>
12+
<FileVersion>0.7.0.3</FileVersion>
1313
</PropertyGroup>
1414

1515
<ItemGroup>
Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Linq;
4-
using System.Text;
5-
using System.Threading.Tasks;
6-
7-
namespace SystemCommonLibrary.Reflect
8-
{
9-
public static class TypeExtension
10-
{
11-
public static bool IsObject(this Type type)
12-
{
13-
return type != null && type == typeof(object);
14-
}
15-
}
16-
}
1+
using System;
2+
3+
namespace SystemCommonLibrary.Reflect
4+
{
5+
public static class TypeExtension
6+
{
7+
public static bool IsObject(this Type type)
8+
{
9+
return type != null && type == typeof(object);
10+
}
11+
12+
public static bool IsRuntimeType(this Type type)
13+
{
14+
return type.FullName == "System.RuntimeType";
15+
}
16+
}
17+
}

0 commit comments

Comments
 (0)