File tree Expand file tree Collapse file tree 6 files changed +306
-275
lines changed
SystemCommonLibrary.AspNetCore Expand file tree Collapse file tree 6 files changed +306
-275
lines changed Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments