Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
cyq1162 committed Oct 19, 2016
1 parent b0198f8 commit 7b983be
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
//
// 可以指定所有这些值,也可以使用“修订号”和“内部版本号”的默认值,
// 方法是按如下所示使用“*”:
[assembly: AssemblyVersion("5.6.6.9")]
[assembly: AssemblyFileVersion("5.6.6.9")]
[assembly: AssemblyVersion("5.6.7.0")]
[assembly: AssemblyFileVersion("5.6.7.0")]
4 changes: 4 additions & 0 deletions Tool/StaticTool.cs
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,10 @@ internal static SysType GetSystemType(ref Type t)
{
return SysType.Array;
}
if (t.FullName.Split('.').Length > 2)
{
return SysType.Custom;
}
return SysType.Base;
}
else
Expand Down

0 comments on commit 7b983be

Please sign in to comment.