├── .gitattributes ├── .gitignore ├── Common ├── BaseSocket.cs ├── Common.csproj ├── Deflate.cs ├── Misc.cs ├── Model │ ├── BuildInfo.cs │ ├── ClientInfo.cs │ ├── ColumnInfo.cs │ ├── DataSort.cs │ ├── DatabaseInfo.cs │ ├── ForeignKeyInfo.cs │ └── TableInfo.cs └── Properties │ └── AssemblyInfo.cs ├── GenMs ├── ConsoleApp.cs ├── Deflate.cs ├── FastExcel │ ├── Cell.cs │ ├── FastExcel.Add.cs │ ├── FastExcel.Delete.cs │ ├── FastExcel.Read.cs │ ├── FastExcel.Update.cs │ ├── FastExcel.Worksheets.cs │ ├── FastExcel.Write.cs │ ├── FastExcel.cs │ ├── Row.cs │ ├── SharedStrings.cs │ ├── Worksheet.cs │ └── WorksheetAddSettings.cs ├── GenMs.csproj ├── Lib │ ├── IniHelper.cs │ ├── JSDecoder.cs │ └── Lib.cs ├── Model │ ├── BuildInfo.cs │ ├── ClientInfo.cs │ ├── ColumnInfo.cs │ ├── DataSort.cs │ ├── DatabaseInfo.cs │ ├── ForeignKeyInfo.cs │ └── TableInfo.cs ├── NPinyin │ ├── Pinyin.cs │ ├── PyCode.cs │ └── PyHash.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── WinFormClass │ ├── Robot.cs │ ├── Socket │ │ ├── BaseSocket.cs │ │ ├── ClientSocket.cs │ │ └── ServerSocket.cs │ └── WorkQueue.cs └── plist-cil │ ├── ASCIIPropertyListParser.cs │ ├── BinaryPropertyListParser.cs │ ├── BinaryPropertyListWriter.cs │ ├── NSArray.IList.cs │ ├── NSArray.cs │ ├── NSData.cs │ ├── NSDate.cs │ ├── NSDictionary.cs │ ├── NSNumber.cs │ ├── NSObject.cs │ ├── NSSet.cs │ ├── NSString.cs │ ├── PropertyListException.cs │ ├── PropertyListFormatException.cs │ ├── PropertyListParser.cs │ ├── UID.cs │ └── XmlPropertyListParser.cs ├── LICENSE ├── MakeCode ├── ClientSocket.cs ├── FrmMain.cs ├── FrmMain.designer.cs ├── FrmMain.resx ├── FrmView.cs ├── FrmView.designer.cs ├── FrmView.resx ├── Lib.cs ├── MakeCode.csproj ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Settings.Designer.cs ├── Settings.settings └── app.config ├── README.md ├── Server ├── CodeBuild(Code).cs ├── CodeBuild(Const).cs ├── CodeBuild(DB).cs ├── CodeBuild(Lib).cs ├── Logger.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Protocol.cs ├── Resources │ ├── .gitattributes │ ├── .gitignore │ ├── Infrastructure │ │ ├── Controllers │ │ │ ├── BaseController.cs │ │ │ └── CustomExceptionFilter.cs │ │ ├── Extensions │ │ │ └── GlobalExtensions.cs │ │ └── ModuleBasic │ │ │ ├── IModuleInitializer.cs │ │ │ ├── ModuleInfo.cs │ │ │ └── ModuleViewLocationExpander.cs │ ├── WebHost │ │ ├── .gitignore │ │ ├── gulpfile.js │ │ ├── package.json │ │ └── web.config │ ├── build.bat │ └── htm.zip ├── Server.csproj ├── ServerSocket.cs └── log4net.config ├── ServerWinForm ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── ServerWinForm.csproj ├── Settings.Designer.cs ├── Settings.settings └── app.config ├── ServerWinService ├── Install1.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── ServerWinService.csproj ├── Service1.Designer.cs ├── Service1.cs ├── Settings.Designer.cs ├── Settings.settings └── app.config ├── core+sqlserver.sln ├── log4net.dll └── 生成器mssql.zip /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/.gitignore -------------------------------------------------------------------------------- /Common/BaseSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/Common/BaseSocket.cs -------------------------------------------------------------------------------- /Common/Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/Common/Common.csproj -------------------------------------------------------------------------------- /Common/Deflate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/Common/Deflate.cs -------------------------------------------------------------------------------- /Common/Misc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/Common/Misc.cs -------------------------------------------------------------------------------- /Common/Model/BuildInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/Common/Model/BuildInfo.cs -------------------------------------------------------------------------------- /Common/Model/ClientInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/Common/Model/ClientInfo.cs -------------------------------------------------------------------------------- /Common/Model/ColumnInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/Common/Model/ColumnInfo.cs -------------------------------------------------------------------------------- /Common/Model/DataSort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/Common/Model/DataSort.cs -------------------------------------------------------------------------------- /Common/Model/DatabaseInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/Common/Model/DatabaseInfo.cs -------------------------------------------------------------------------------- /Common/Model/ForeignKeyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/Common/Model/ForeignKeyInfo.cs -------------------------------------------------------------------------------- /Common/Model/TableInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/Common/Model/TableInfo.cs -------------------------------------------------------------------------------- /Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/Common/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /GenMs/ConsoleApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/ConsoleApp.cs -------------------------------------------------------------------------------- /GenMs/Deflate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/Deflate.cs -------------------------------------------------------------------------------- /GenMs/FastExcel/Cell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/FastExcel/Cell.cs -------------------------------------------------------------------------------- /GenMs/FastExcel/FastExcel.Add.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/FastExcel/FastExcel.Add.cs -------------------------------------------------------------------------------- /GenMs/FastExcel/FastExcel.Delete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/FastExcel/FastExcel.Delete.cs -------------------------------------------------------------------------------- /GenMs/FastExcel/FastExcel.Read.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/FastExcel/FastExcel.Read.cs -------------------------------------------------------------------------------- /GenMs/FastExcel/FastExcel.Update.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/FastExcel/FastExcel.Update.cs -------------------------------------------------------------------------------- /GenMs/FastExcel/FastExcel.Worksheets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/FastExcel/FastExcel.Worksheets.cs -------------------------------------------------------------------------------- /GenMs/FastExcel/FastExcel.Write.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/FastExcel/FastExcel.Write.cs -------------------------------------------------------------------------------- /GenMs/FastExcel/FastExcel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/FastExcel/FastExcel.cs -------------------------------------------------------------------------------- /GenMs/FastExcel/Row.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/FastExcel/Row.cs -------------------------------------------------------------------------------- /GenMs/FastExcel/SharedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/FastExcel/SharedStrings.cs -------------------------------------------------------------------------------- /GenMs/FastExcel/Worksheet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/FastExcel/Worksheet.cs -------------------------------------------------------------------------------- /GenMs/FastExcel/WorksheetAddSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/FastExcel/WorksheetAddSettings.cs -------------------------------------------------------------------------------- /GenMs/GenMs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/GenMs.csproj -------------------------------------------------------------------------------- /GenMs/Lib/IniHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/Lib/IniHelper.cs -------------------------------------------------------------------------------- /GenMs/Lib/JSDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/Lib/JSDecoder.cs -------------------------------------------------------------------------------- /GenMs/Lib/Lib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/Lib/Lib.cs -------------------------------------------------------------------------------- /GenMs/Model/BuildInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/Model/BuildInfo.cs -------------------------------------------------------------------------------- /GenMs/Model/ClientInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/Model/ClientInfo.cs -------------------------------------------------------------------------------- /GenMs/Model/ColumnInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/Model/ColumnInfo.cs -------------------------------------------------------------------------------- /GenMs/Model/DataSort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/Model/DataSort.cs -------------------------------------------------------------------------------- /GenMs/Model/DatabaseInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/Model/DatabaseInfo.cs -------------------------------------------------------------------------------- /GenMs/Model/ForeignKeyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/Model/ForeignKeyInfo.cs -------------------------------------------------------------------------------- /GenMs/Model/TableInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/Model/TableInfo.cs -------------------------------------------------------------------------------- /GenMs/NPinyin/Pinyin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/NPinyin/Pinyin.cs -------------------------------------------------------------------------------- /GenMs/NPinyin/PyCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/NPinyin/PyCode.cs -------------------------------------------------------------------------------- /GenMs/NPinyin/PyHash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/NPinyin/PyHash.cs -------------------------------------------------------------------------------- /GenMs/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/Program.cs -------------------------------------------------------------------------------- /GenMs/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/Properties/launchSettings.json -------------------------------------------------------------------------------- /GenMs/WinFormClass/Robot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/WinFormClass/Robot.cs -------------------------------------------------------------------------------- /GenMs/WinFormClass/Socket/BaseSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/WinFormClass/Socket/BaseSocket.cs -------------------------------------------------------------------------------- /GenMs/WinFormClass/Socket/ClientSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/WinFormClass/Socket/ClientSocket.cs -------------------------------------------------------------------------------- /GenMs/WinFormClass/Socket/ServerSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/WinFormClass/Socket/ServerSocket.cs -------------------------------------------------------------------------------- /GenMs/WinFormClass/WorkQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/WinFormClass/WorkQueue.cs -------------------------------------------------------------------------------- /GenMs/plist-cil/ASCIIPropertyListParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/plist-cil/ASCIIPropertyListParser.cs -------------------------------------------------------------------------------- /GenMs/plist-cil/BinaryPropertyListParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/plist-cil/BinaryPropertyListParser.cs -------------------------------------------------------------------------------- /GenMs/plist-cil/BinaryPropertyListWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/plist-cil/BinaryPropertyListWriter.cs -------------------------------------------------------------------------------- /GenMs/plist-cil/NSArray.IList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/plist-cil/NSArray.IList.cs -------------------------------------------------------------------------------- /GenMs/plist-cil/NSArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/plist-cil/NSArray.cs -------------------------------------------------------------------------------- /GenMs/plist-cil/NSData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/plist-cil/NSData.cs -------------------------------------------------------------------------------- /GenMs/plist-cil/NSDate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/plist-cil/NSDate.cs -------------------------------------------------------------------------------- /GenMs/plist-cil/NSDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/plist-cil/NSDictionary.cs -------------------------------------------------------------------------------- /GenMs/plist-cil/NSNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/plist-cil/NSNumber.cs -------------------------------------------------------------------------------- /GenMs/plist-cil/NSObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/plist-cil/NSObject.cs -------------------------------------------------------------------------------- /GenMs/plist-cil/NSSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/plist-cil/NSSet.cs -------------------------------------------------------------------------------- /GenMs/plist-cil/NSString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/plist-cil/NSString.cs -------------------------------------------------------------------------------- /GenMs/plist-cil/PropertyListException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/plist-cil/PropertyListException.cs -------------------------------------------------------------------------------- /GenMs/plist-cil/PropertyListFormatException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/plist-cil/PropertyListFormatException.cs -------------------------------------------------------------------------------- /GenMs/plist-cil/PropertyListParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/plist-cil/PropertyListParser.cs -------------------------------------------------------------------------------- /GenMs/plist-cil/UID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/plist-cil/UID.cs -------------------------------------------------------------------------------- /GenMs/plist-cil/XmlPropertyListParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/GenMs/plist-cil/XmlPropertyListParser.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/LICENSE -------------------------------------------------------------------------------- /MakeCode/ClientSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/MakeCode/ClientSocket.cs -------------------------------------------------------------------------------- /MakeCode/FrmMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/MakeCode/FrmMain.cs -------------------------------------------------------------------------------- /MakeCode/FrmMain.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/MakeCode/FrmMain.designer.cs -------------------------------------------------------------------------------- /MakeCode/FrmMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/MakeCode/FrmMain.resx -------------------------------------------------------------------------------- /MakeCode/FrmView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/MakeCode/FrmView.cs -------------------------------------------------------------------------------- /MakeCode/FrmView.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/MakeCode/FrmView.designer.cs -------------------------------------------------------------------------------- /MakeCode/FrmView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/MakeCode/FrmView.resx -------------------------------------------------------------------------------- /MakeCode/Lib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/MakeCode/Lib.cs -------------------------------------------------------------------------------- /MakeCode/MakeCode.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/MakeCode/MakeCode.csproj -------------------------------------------------------------------------------- /MakeCode/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/MakeCode/Program.cs -------------------------------------------------------------------------------- /MakeCode/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/MakeCode/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MakeCode/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/MakeCode/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /MakeCode/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/MakeCode/Properties/Resources.resx -------------------------------------------------------------------------------- /MakeCode/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/MakeCode/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /MakeCode/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/MakeCode/Properties/Settings.settings -------------------------------------------------------------------------------- /MakeCode/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/MakeCode/Settings.Designer.cs -------------------------------------------------------------------------------- /MakeCode/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/MakeCode/Settings.settings -------------------------------------------------------------------------------- /MakeCode/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/MakeCode/app.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/README.md -------------------------------------------------------------------------------- /Server/CodeBuild(Code).cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/Server/CodeBuild(Code).cs -------------------------------------------------------------------------------- /Server/CodeBuild(Const).cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/Server/CodeBuild(Const).cs -------------------------------------------------------------------------------- /Server/CodeBuild(DB).cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/Server/CodeBuild(DB).cs -------------------------------------------------------------------------------- /Server/CodeBuild(Lib).cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/Server/CodeBuild(Lib).cs -------------------------------------------------------------------------------- /Server/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/Server/Logger.cs -------------------------------------------------------------------------------- /Server/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/Server/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Server/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/Server/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Server/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/Server/Properties/Resources.resx -------------------------------------------------------------------------------- /Server/Protocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/Server/Protocol.cs -------------------------------------------------------------------------------- /Server/Resources/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/Server/Resources/.gitattributes -------------------------------------------------------------------------------- /Server/Resources/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/Server/Resources/.gitignore -------------------------------------------------------------------------------- /Server/Resources/Infrastructure/Controllers/BaseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/Server/Resources/Infrastructure/Controllers/BaseController.cs -------------------------------------------------------------------------------- /Server/Resources/Infrastructure/Controllers/CustomExceptionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/Server/Resources/Infrastructure/Controllers/CustomExceptionFilter.cs -------------------------------------------------------------------------------- /Server/Resources/Infrastructure/Extensions/GlobalExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/Server/Resources/Infrastructure/Extensions/GlobalExtensions.cs -------------------------------------------------------------------------------- /Server/Resources/Infrastructure/ModuleBasic/IModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/Server/Resources/Infrastructure/ModuleBasic/IModuleInitializer.cs -------------------------------------------------------------------------------- /Server/Resources/Infrastructure/ModuleBasic/ModuleInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/Server/Resources/Infrastructure/ModuleBasic/ModuleInfo.cs -------------------------------------------------------------------------------- /Server/Resources/Infrastructure/ModuleBasic/ModuleViewLocationExpander.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/Server/Resources/Infrastructure/ModuleBasic/ModuleViewLocationExpander.cs -------------------------------------------------------------------------------- /Server/Resources/WebHost/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/Server/Resources/WebHost/.gitignore -------------------------------------------------------------------------------- /Server/Resources/WebHost/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/Server/Resources/WebHost/gulpfile.js -------------------------------------------------------------------------------- /Server/Resources/WebHost/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/Server/Resources/WebHost/package.json -------------------------------------------------------------------------------- /Server/Resources/WebHost/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/Server/Resources/WebHost/web.config -------------------------------------------------------------------------------- /Server/Resources/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/Server/Resources/build.bat -------------------------------------------------------------------------------- /Server/Resources/htm.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/Server/Resources/htm.zip -------------------------------------------------------------------------------- /Server/Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/Server/Server.csproj -------------------------------------------------------------------------------- /Server/ServerSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/Server/ServerSocket.cs -------------------------------------------------------------------------------- /Server/log4net.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/Server/log4net.config -------------------------------------------------------------------------------- /ServerWinForm/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/ServerWinForm/Form1.Designer.cs -------------------------------------------------------------------------------- /ServerWinForm/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/ServerWinForm/Form1.cs -------------------------------------------------------------------------------- /ServerWinForm/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/ServerWinForm/Form1.resx -------------------------------------------------------------------------------- /ServerWinForm/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/ServerWinForm/Program.cs -------------------------------------------------------------------------------- /ServerWinForm/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/ServerWinForm/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ServerWinForm/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/ServerWinForm/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ServerWinForm/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/ServerWinForm/Properties/Resources.resx -------------------------------------------------------------------------------- /ServerWinForm/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/ServerWinForm/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ServerWinForm/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/ServerWinForm/Properties/Settings.settings -------------------------------------------------------------------------------- /ServerWinForm/ServerWinForm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/ServerWinForm/ServerWinForm.csproj -------------------------------------------------------------------------------- /ServerWinForm/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/ServerWinForm/Settings.Designer.cs -------------------------------------------------------------------------------- /ServerWinForm/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/ServerWinForm/Settings.settings -------------------------------------------------------------------------------- /ServerWinForm/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/ServerWinForm/app.config -------------------------------------------------------------------------------- /ServerWinService/Install1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/ServerWinService/Install1.cs -------------------------------------------------------------------------------- /ServerWinService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/ServerWinService/Program.cs -------------------------------------------------------------------------------- /ServerWinService/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/ServerWinService/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ServerWinService/ServerWinService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/ServerWinService/ServerWinService.csproj -------------------------------------------------------------------------------- /ServerWinService/Service1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/ServerWinService/Service1.Designer.cs -------------------------------------------------------------------------------- /ServerWinService/Service1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/ServerWinService/Service1.cs -------------------------------------------------------------------------------- /ServerWinService/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/ServerWinService/Settings.Designer.cs -------------------------------------------------------------------------------- /ServerWinService/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/ServerWinService/Settings.settings -------------------------------------------------------------------------------- /ServerWinService/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/ServerWinService/app.config -------------------------------------------------------------------------------- /core+sqlserver.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/core+sqlserver.sln -------------------------------------------------------------------------------- /log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/log4net.dll -------------------------------------------------------------------------------- /生成器mssql.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2881099/dotnetGen_sqlserver/HEAD/生成器mssql.zip --------------------------------------------------------------------------------