From 1e06e06259e25d4eece1f61dc6b0eaaf845075e4 Mon Sep 17 00:00:00 2001 From: smartwyy <645583145@qq.com> Date: Tue, 14 May 2024 22:28:03 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A1=B9=E7=9B=AE=E7=BB=93=E6=9E=84=E8=B0=83?= =?UTF-8?q?=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ConsoleStarter/ConsoleStarter.csproj | 2 +- .../Common/IPageList.cs | 2 +- .../Common/PageList.cs | 2 +- .../DbModel/sysBatteryReplaceLog.cs | 2 +- .../DbModel/sysDataSource.cs | 2 +- .../DbModel/sysDicData.cs | 2 +- .../DbModel/sysDicType.cs | 2 +- .../DbModel/sysMenu.cs | 2 +- .../DbModel/sysMessage.cs | 2 +- .../DbModel/sysRole.cs | 2 +- .../DbModel/sysRoleMenu.cs | 2 +- .../DbModel/sysUser.cs | 2 +- .../DbModel/sysUserRole.cs | 2 +- .../Entity.csproj | 0 .../Autofac/AutofacModuleRegister.cs | 4 +- .../net6.0/HybirdFrameworkEntity.deps.json | 1121 ------------ ...CoreApp,Version=v6.0.AssemblyAttributes.cs | 4 - .../HybirdFrameworkEntity.GlobalUsings.g.cs | 8 - ...meworkEntity.csproj.BuildWithSkipAnalyzers | 0 ...birdFrameworkEntity.csproj.nuget.g.targets | 6 - .../HybirdFrameworkRepository.deps.json | 1503 ----------------- ...CoreApp,Version=v6.0.AssemblyAttributes.cs | 4 - .../Debug/net6.0/HybirdFr.65D83B66.Up2Date | 0 ...ybirdFrameworkRepository.GlobalUsings.g.cs | 8 - ...rkRepository.csproj.BuildWithSkipAnalyzers | 0 .../net6.0/ref/HybirdFrameworkRepository.dll | Bin 26112 -> 0 bytes .../refint/HybirdFrameworkRepository.dll | Bin 26112 -> 0 bytes ...FrameworkRepository.csproj.nuget.g.targets | 7 - ...CoreApp,Version=v6.0.AssemblyAttributes.cs | 4 - .../Debug/net6.0/HybirdFr.0BD36F9B.Up2Date | 0 .../HybirdFrameworkServices.GlobalUsings.g.cs | 8 - ...workServices.csproj.BuildWithSkipAnalyzers | 0 ...rdFrameworkServices.csproj.nuget.g.targets | 7 - .../BaseRepository.cs | 6 +- .../Repository.csproj | 2 +- .../SqlSugarExtensions.cs | 2 +- .../System/Class1.cs | 2 +- .../System/SysBatteryReplaceLogRepository.cs | 4 +- .../System/SysDataSourceRepository.cs | 4 +- .../System/SysDicDataRepository.cs | 4 +- .../System/SysDicTypeRepository.cs | 4 +- .../System/SysMenuRepository.cs | 4 +- .../System/SysMessageRepository.cs | 4 +- .../System/SysRoleMenuRepository.cs | 4 +- .../System/SysRoleRepository.cs | 4 +- .../System/SysUserRepository.cs | 4 +- .../System/SysUserRoleRepository.cs | 4 +- .../UnitOfWork/Class1.cs | 2 +- .../UnitOfWork/UnitOfWork.cs | 2 +- .../BaseServices.cs | 6 +- .../Charger/Client/ChargerClient.cs | 6 +- .../Charger/Client/ChargerServer.cs | 6 +- .../Charger/Client/ClientMgr.cs | 4 +- .../Charger/Codec/Decoder.cs | 4 +- .../Charger/Codec/Encoder.cs | 2 +- .../Charger/Common/ChargerConst.cs | 2 +- .../Charger/Handler/AuthResHandler.cs | 4 +- .../Charger/Handler/IBaseHandler.cs | 2 +- .../Charger/Handler/LoginHandler.cs | 6 +- .../Charger/Msg/APCI.cs | 4 +- .../Charger/Msg/ASDU.cs | 4 +- .../Charger/Msg/Charger/Req/Login.cs | 2 +- .../Charger/Msg/Charger/Resp/AuthRes.cs | 2 +- .../Charger/Msg/Host/Req/Auth.cs | 2 +- .../Charger/Msg/Host/Resp/LogSignMessage.cs | 2 +- .../Service.csproj | 4 +- .../System/SysBatteryReplaceLogServices.cs | 8 +- .../System/SysDataSourceServices.cs | 8 +- .../System/SysDicDataServices.cs | 8 +- .../System/SysDicTypeServices.cs | 8 +- .../System/SysMenuServices.cs | 8 +- .../System/SysMessageServices.cs | 8 +- .../System/SysRoleMenuServices.cs | 8 +- .../System/SysRoleServices.cs | 8 +- .../System/SysUserRoleServices.cs | 8 +- .../System/SysUserServices.cs | 8 +- .../Controllers/WeatherForecastController.cs | 4 +- WebStarter/WebStarter.csproj | 4 +- WinFormStarter/WinFormStarter.csproj | 6 +- WpfStarter/MainWindow.xaml.cs | 4 +- WpfStarter/WpfStarter.csproj | 6 +- hybirdMyFrame.sln | 30 +- 82 files changed, 138 insertions(+), 2824 deletions(-) rename {HybirdFrameworkEntity => Entity}/Common/IPageList.cs (90%) rename {HybirdFrameworkEntity => Entity}/Common/PageList.cs (98%) rename {HybirdFrameworkEntity => Entity}/DbModel/sysBatteryReplaceLog.cs (93%) rename {HybirdFrameworkEntity => Entity}/DbModel/sysDataSource.cs (93%) rename {HybirdFrameworkEntity => Entity}/DbModel/sysDicData.cs (96%) rename {HybirdFrameworkEntity => Entity}/DbModel/sysDicType.cs (96%) rename {HybirdFrameworkEntity => Entity}/DbModel/sysMenu.cs (98%) rename {HybirdFrameworkEntity => Entity}/DbModel/sysMessage.cs (97%) rename {HybirdFrameworkEntity => Entity}/DbModel/sysRole.cs (97%) rename {HybirdFrameworkEntity => Entity}/DbModel/sysRoleMenu.cs (93%) rename {HybirdFrameworkEntity => Entity}/DbModel/sysUser.cs (98%) rename {HybirdFrameworkEntity => Entity}/DbModel/sysUserRole.cs (93%) rename HybirdFrameworkEntity/HybirdFrameworkEntity.csproj => Entity/Entity.csproj (100%) delete mode 100644 HybirdFrameworkEntity/bin/Debug/net6.0/HybirdFrameworkEntity.deps.json delete mode 100644 HybirdFrameworkEntity/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs delete mode 100644 HybirdFrameworkEntity/obj/Debug/net6.0/HybirdFrameworkEntity.GlobalUsings.g.cs delete mode 100644 HybirdFrameworkEntity/obj/Debug/net6.0/HybirdFrameworkEntity.csproj.BuildWithSkipAnalyzers delete mode 100644 HybirdFrameworkEntity/obj/HybirdFrameworkEntity.csproj.nuget.g.targets delete mode 100644 HybirdFrameworkRepository/bin/Debug/net6.0/HybirdFrameworkRepository.deps.json delete mode 100644 HybirdFrameworkRepository/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs delete mode 100644 HybirdFrameworkRepository/obj/Debug/net6.0/HybirdFr.65D83B66.Up2Date delete mode 100644 HybirdFrameworkRepository/obj/Debug/net6.0/HybirdFrameworkRepository.GlobalUsings.g.cs delete mode 100644 HybirdFrameworkRepository/obj/Debug/net6.0/HybirdFrameworkRepository.csproj.BuildWithSkipAnalyzers delete mode 100644 HybirdFrameworkRepository/obj/Debug/net6.0/ref/HybirdFrameworkRepository.dll delete mode 100644 HybirdFrameworkRepository/obj/Debug/net6.0/refint/HybirdFrameworkRepository.dll delete mode 100644 HybirdFrameworkRepository/obj/HybirdFrameworkRepository.csproj.nuget.g.targets delete mode 100644 HybirdFrameworkServices/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs delete mode 100644 HybirdFrameworkServices/obj/Debug/net6.0/HybirdFr.0BD36F9B.Up2Date delete mode 100644 HybirdFrameworkServices/obj/Debug/net6.0/HybirdFrameworkServices.GlobalUsings.g.cs delete mode 100644 HybirdFrameworkServices/obj/Debug/net6.0/HybirdFrameworkServices.csproj.BuildWithSkipAnalyzers delete mode 100644 HybirdFrameworkServices/obj/HybirdFrameworkServices.csproj.nuget.g.targets rename {HybirdFrameworkRepository => Repository}/BaseRepository.cs (99%) rename HybirdFrameworkRepository/HybirdFrameworkRepository.csproj => Repository/Repository.csproj (84%) rename {HybirdFrameworkRepository => Repository}/SqlSugarExtensions.cs (92%) rename {HybirdFrameworkRepository => Repository}/System/Class1.cs (79%) rename {HybirdFrameworkRepository => Repository}/System/SysBatteryReplaceLogRepository.cs (80%) rename {HybirdFrameworkRepository => Repository}/System/SysDataSourceRepository.cs (71%) rename {HybirdFrameworkRepository => Repository}/System/SysDicDataRepository.cs (70%) rename {HybirdFrameworkRepository => Repository}/System/SysDicTypeRepository.cs (70%) rename {HybirdFrameworkRepository => Repository}/System/SysMenuRepository.cs (69%) rename {HybirdFrameworkRepository => Repository}/System/SysMessageRepository.cs (70%) rename {HybirdFrameworkRepository => Repository}/System/SysRoleMenuRepository.cs (71%) rename {HybirdFrameworkRepository => Repository}/System/SysRoleRepository.cs (69%) rename {HybirdFrameworkRepository => Repository}/System/SysUserRepository.cs (76%) rename {HybirdFrameworkRepository => Repository}/System/SysUserRoleRepository.cs (71%) rename {HybirdFrameworkRepository => Repository}/UnitOfWork/Class1.cs (77%) rename {HybirdFrameworkRepository => Repository}/UnitOfWork/UnitOfWork.cs (95%) rename {HybirdFrameworkServices => Service}/BaseServices.cs (99%) rename {HybirdFrameworkServices => Service}/Charger/Client/ChargerClient.cs (85%) rename {HybirdFrameworkServices => Service}/Charger/Client/ChargerServer.cs (62%) rename {HybirdFrameworkServices => Service}/Charger/Client/ClientMgr.cs (88%) rename {HybirdFrameworkServices => Service}/Charger/Codec/Decoder.cs (73%) rename {HybirdFrameworkServices => Service}/Charger/Codec/Encoder.cs (86%) rename {HybirdFrameworkServices => Service}/Charger/Common/ChargerConst.cs (64%) rename {HybirdFrameworkServices => Service}/Charger/Handler/AuthResHandler.cs (89%) rename {HybirdFrameworkServices => Service}/Charger/Handler/IBaseHandler.cs (63%) rename {HybirdFrameworkServices => Service}/Charger/Handler/LoginHandler.cs (91%) rename {HybirdFrameworkServices => Service}/Charger/Msg/APCI.cs (92%) rename {HybirdFrameworkServices => Service}/Charger/Msg/ASDU.cs (96%) rename {HybirdFrameworkServices => Service}/Charger/Msg/Charger/Req/Login.cs (97%) rename {HybirdFrameworkServices => Service}/Charger/Msg/Charger/Resp/AuthRes.cs (92%) rename {HybirdFrameworkServices => Service}/Charger/Msg/Host/Req/Auth.cs (96%) rename {HybirdFrameworkServices => Service}/Charger/Msg/Host/Resp/LogSignMessage.cs (97%) rename HybirdFrameworkServices/HybirdFrameworkServices.csproj => Service/Service.csproj (84%) rename {HybirdFrameworkServices => Service}/System/SysBatteryReplaceLogServices.cs (82%) rename {HybirdFrameworkServices => Service}/System/SysDataSourceServices.cs (74%) rename {HybirdFrameworkServices => Service}/System/SysDicDataServices.cs (70%) rename {HybirdFrameworkServices => Service}/System/SysDicTypeServices.cs (70%) rename {HybirdFrameworkServices => Service}/System/SysMenuServices.cs (68%) rename {HybirdFrameworkServices => Service}/System/SysMessageServices.cs (70%) rename {HybirdFrameworkServices => Service}/System/SysRoleMenuServices.cs (70%) rename {HybirdFrameworkServices => Service}/System/SysRoleServices.cs (69%) rename {HybirdFrameworkServices => Service}/System/SysUserRoleServices.cs (70%) rename {HybirdFrameworkServices => Service}/System/SysUserServices.cs (73%) diff --git a/ConsoleStarter/ConsoleStarter.csproj b/ConsoleStarter/ConsoleStarter.csproj index 8ac72a1..eb4b6ff 100644 --- a/ConsoleStarter/ConsoleStarter.csproj +++ b/ConsoleStarter/ConsoleStarter.csproj @@ -10,7 +10,7 @@ - + diff --git a/HybirdFrameworkEntity/Common/IPageList.cs b/Entity/Common/IPageList.cs similarity index 90% rename from HybirdFrameworkEntity/Common/IPageList.cs rename to Entity/Common/IPageList.cs index 11762bc..0a2be73 100644 --- a/HybirdFrameworkEntity/Common/IPageList.cs +++ b/Entity/Common/IPageList.cs @@ -4,7 +4,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace HybirdFrameworkEntity.Common +namespace Entity.Common { public interface IPageList : IList { diff --git a/HybirdFrameworkEntity/Common/PageList.cs b/Entity/Common/PageList.cs similarity index 98% rename from HybirdFrameworkEntity/Common/PageList.cs rename to Entity/Common/PageList.cs index bc9e2eb..54cfb7d 100644 --- a/HybirdFrameworkEntity/Common/PageList.cs +++ b/Entity/Common/PageList.cs @@ -4,7 +4,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace HybirdFrameworkEntity.Common +namespace Entity.Common { /// /// 分页组件实体类 diff --git a/HybirdFrameworkEntity/DbModel/sysBatteryReplaceLog.cs b/Entity/DbModel/sysBatteryReplaceLog.cs similarity index 93% rename from HybirdFrameworkEntity/DbModel/sysBatteryReplaceLog.cs rename to Entity/DbModel/sysBatteryReplaceLog.cs index e791bc3..ff954d8 100644 --- a/HybirdFrameworkEntity/DbModel/sysBatteryReplaceLog.cs +++ b/Entity/DbModel/sysBatteryReplaceLog.cs @@ -5,7 +5,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace HybirdFrameworkEntity.DbModel +namespace Entity.DbModel { [SugarTable("sys_battery_replace_log")] public class sysBatteryReplaceLog diff --git a/HybirdFrameworkEntity/DbModel/sysDataSource.cs b/Entity/DbModel/sysDataSource.cs similarity index 93% rename from HybirdFrameworkEntity/DbModel/sysDataSource.cs rename to Entity/DbModel/sysDataSource.cs index ea3079b..5c2cc4a 100644 --- a/HybirdFrameworkEntity/DbModel/sysDataSource.cs +++ b/Entity/DbModel/sysDataSource.cs @@ -6,7 +6,7 @@ using System.Security.Principal; using System.Text; using System.Threading.Tasks; -namespace HybirdFrameworkEntity.DbModel +namespace Entity.DbModel { public partial class sysDataSource { diff --git a/HybirdFrameworkEntity/DbModel/sysDicData.cs b/Entity/DbModel/sysDicData.cs similarity index 96% rename from HybirdFrameworkEntity/DbModel/sysDicData.cs rename to Entity/DbModel/sysDicData.cs index cd3a131..360e2cd 100644 --- a/HybirdFrameworkEntity/DbModel/sysDicData.cs +++ b/Entity/DbModel/sysDicData.cs @@ -3,7 +3,7 @@ using System.Linq; using System.Text; using SqlSugar; -namespace HybirdFrameworkEntity.DbModel +namespace Entity.DbModel { /// /// diff --git a/HybirdFrameworkEntity/DbModel/sysDicType.cs b/Entity/DbModel/sysDicType.cs similarity index 96% rename from HybirdFrameworkEntity/DbModel/sysDicType.cs rename to Entity/DbModel/sysDicType.cs index 16366e3..4fb195a 100644 --- a/HybirdFrameworkEntity/DbModel/sysDicType.cs +++ b/Entity/DbModel/sysDicType.cs @@ -3,7 +3,7 @@ using System.Linq; using System.Text; using SqlSugar; -namespace HybirdFrameworkEntity.DbModel +namespace Entity.DbModel { /// /// diff --git a/HybirdFrameworkEntity/DbModel/sysMenu.cs b/Entity/DbModel/sysMenu.cs similarity index 98% rename from HybirdFrameworkEntity/DbModel/sysMenu.cs rename to Entity/DbModel/sysMenu.cs index 7891df9..2e22782 100644 --- a/HybirdFrameworkEntity/DbModel/sysMenu.cs +++ b/Entity/DbModel/sysMenu.cs @@ -4,7 +4,7 @@ using System.Linq; using System.Security.Principal; using System.Text; -namespace HybirdFrameworkEntity.DbModel +namespace Entity.DbModel { /// /// diff --git a/HybirdFrameworkEntity/DbModel/sysMessage.cs b/Entity/DbModel/sysMessage.cs similarity index 97% rename from HybirdFrameworkEntity/DbModel/sysMessage.cs rename to Entity/DbModel/sysMessage.cs index 3c017ce..688fbb9 100644 --- a/HybirdFrameworkEntity/DbModel/sysMessage.cs +++ b/Entity/DbModel/sysMessage.cs @@ -3,7 +3,7 @@ using System.Linq; using System.Text; using SqlSugar; -namespace HybirdFrameworkEntity.DbModel +namespace Entity.DbModel { /// /// diff --git a/HybirdFrameworkEntity/DbModel/sysRole.cs b/Entity/DbModel/sysRole.cs similarity index 97% rename from HybirdFrameworkEntity/DbModel/sysRole.cs rename to Entity/DbModel/sysRole.cs index 2e0a0d8..f4d1d12 100644 --- a/HybirdFrameworkEntity/DbModel/sysRole.cs +++ b/Entity/DbModel/sysRole.cs @@ -3,7 +3,7 @@ using System.Linq; using System.Text; using SqlSugar; -namespace HybirdFrameworkEntity.DbModel +namespace Entity.DbModel { /// /// diff --git a/HybirdFrameworkEntity/DbModel/sysRoleMenu.cs b/Entity/DbModel/sysRoleMenu.cs similarity index 93% rename from HybirdFrameworkEntity/DbModel/sysRoleMenu.cs rename to Entity/DbModel/sysRoleMenu.cs index d7bd0cc..3743ff2 100644 --- a/HybirdFrameworkEntity/DbModel/sysRoleMenu.cs +++ b/Entity/DbModel/sysRoleMenu.cs @@ -3,7 +3,7 @@ using System.Linq; using System.Text; using SqlSugar; -namespace HybirdFrameworkEntity.DbModel +namespace Entity.DbModel { /// /// diff --git a/HybirdFrameworkEntity/DbModel/sysUser.cs b/Entity/DbModel/sysUser.cs similarity index 98% rename from HybirdFrameworkEntity/DbModel/sysUser.cs rename to Entity/DbModel/sysUser.cs index faac188..9e0e077 100644 --- a/HybirdFrameworkEntity/DbModel/sysUser.cs +++ b/Entity/DbModel/sysUser.cs @@ -4,7 +4,7 @@ using System.Linq; using System.Security.Principal; using System.Text; -namespace HybirdFrameworkEntity.DbModel +namespace Entity.DbModel { /// /// diff --git a/HybirdFrameworkEntity/DbModel/sysUserRole.cs b/Entity/DbModel/sysUserRole.cs similarity index 93% rename from HybirdFrameworkEntity/DbModel/sysUserRole.cs rename to Entity/DbModel/sysUserRole.cs index 136bcd0..2037460 100644 --- a/HybirdFrameworkEntity/DbModel/sysUserRole.cs +++ b/Entity/DbModel/sysUserRole.cs @@ -3,7 +3,7 @@ using System.Linq; using System.Text; using SqlSugar; -namespace HybirdFrameworkEntity.DbModel +namespace Entity.DbModel { /// /// diff --git a/HybirdFrameworkEntity/HybirdFrameworkEntity.csproj b/Entity/Entity.csproj similarity index 100% rename from HybirdFrameworkEntity/HybirdFrameworkEntity.csproj rename to Entity/Entity.csproj diff --git a/HybirdFrameworkCore/Autofac/AutofacModuleRegister.cs b/HybirdFrameworkCore/Autofac/AutofacModuleRegister.cs index 60a7306..c46610c 100644 --- a/HybirdFrameworkCore/Autofac/AutofacModuleRegister.cs +++ b/HybirdFrameworkCore/Autofac/AutofacModuleRegister.cs @@ -16,9 +16,9 @@ namespace HybirdFrameworkCore.Autofac #region 带有接口层的服务注入 - var repositoryDllFile = Path.Combine(basePath, "HybirdFrameworkRepository.dll"); + var repositoryDllFile = Path.Combine(basePath, "Repository.dll"); var driverDllFile = Path.Combine(basePath, "HybirdFrameworkDriver.dll"); - var servicesDllFile = Path.Combine(basePath, "HybirdFrameworkServices.dll"); + var servicesDllFile = Path.Combine(basePath, "Service.dll"); if (!(File.Exists(servicesDllFile) && File.Exists(repositoryDllFile))) { diff --git a/HybirdFrameworkEntity/bin/Debug/net6.0/HybirdFrameworkEntity.deps.json b/HybirdFrameworkEntity/bin/Debug/net6.0/HybirdFrameworkEntity.deps.json deleted file mode 100644 index cf34854..0000000 --- a/HybirdFrameworkEntity/bin/Debug/net6.0/HybirdFrameworkEntity.deps.json +++ /dev/null @@ -1,1121 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v6.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v6.0": { - "HybirdFrameworkEntity/1.0.0": { - "dependencies": { - "SqlSugarCore": "5.1.4.95" - }, - "runtime": { - "HybirdFrameworkEntity.dll": {} - } - }, - "Microsoft.CSharp/4.5.0": {}, - "Microsoft.Data.SqlClient/2.1.4": { - "dependencies": { - "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1", - "Microsoft.Identity.Client": "4.21.1", - "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", - "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0", - "Microsoft.Win32.Registry": "4.7.0", - "System.Configuration.ConfigurationManager": "6.0.0", - "System.Diagnostics.DiagnosticSource": "4.7.0", - "System.Runtime.Caching": "4.7.0", - "System.Security.Principal.Windows": "4.7.0", - "System.Text.Encoding.CodePages": "5.0.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { - "assemblyVersion": "2.0.20168.4", - "fileVersion": "2.0.20168.4" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "2.0.20168.4", - "fileVersion": "2.0.20168.4" - }, - "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "2.0.20168.4", - "fileVersion": "2.0.20168.4" - } - } - }, - "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { - "runtimeTargets": { - "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "2.1.1.0" - }, - "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "2.1.1.0" - }, - "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "2.1.1.0" - }, - "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "2.1.1.0" - } - } - }, - "Microsoft.Data.Sqlite/7.0.5": { - "dependencies": { - "Microsoft.Data.Sqlite.Core": "7.0.5", - "SQLitePCLRaw.bundle_e_sqlite3": "2.1.4" - } - }, - "Microsoft.Data.Sqlite.Core/7.0.5": { - "dependencies": { - "SQLitePCLRaw.core": "2.1.4" - }, - "runtime": { - "lib/net6.0/Microsoft.Data.Sqlite.dll": { - "assemblyVersion": "7.0.5.0", - "fileVersion": "7.0.523.16503" - } - } - }, - "Microsoft.Identity.Client/4.21.1": { - "runtime": { - "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": { - "assemblyVersion": "4.21.1.0", - "fileVersion": "4.21.1.0" - } - } - }, - "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { - "dependencies": { - "Microsoft.IdentityModel.Tokens": "6.8.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "assemblyVersion": "6.8.0.0", - "fileVersion": "6.8.0.11012" - } - } - }, - "Microsoft.IdentityModel.Logging/6.8.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { - "assemblyVersion": "6.8.0.0", - "fileVersion": "6.8.0.11012" - } - } - }, - "Microsoft.IdentityModel.Protocols/6.8.0": { - "dependencies": { - "Microsoft.IdentityModel.Logging": "6.8.0", - "Microsoft.IdentityModel.Tokens": "6.8.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { - "assemblyVersion": "6.8.0.0", - "fileVersion": "6.8.0.11012" - } - } - }, - "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { - "dependencies": { - "Microsoft.IdentityModel.Protocols": "6.8.0", - "System.IdentityModel.Tokens.Jwt": "6.8.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { - "assemblyVersion": "6.8.0.0", - "fileVersion": "6.8.0.11012" - } - } - }, - "Microsoft.IdentityModel.Tokens/6.8.0": { - "dependencies": { - "Microsoft.CSharp": "4.5.0", - "Microsoft.IdentityModel.Logging": "6.8.0", - "System.Security.Cryptography.Cng": "4.5.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { - "assemblyVersion": "6.8.0.0", - "fileVersion": "6.8.0.11012" - } - } - }, - "Microsoft.NETCore.Platforms/5.0.0": {}, - "Microsoft.NETCore.Targets/1.1.0": {}, - "Microsoft.Win32.Registry/4.7.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Security.Principal.Windows": "4.7.0" - } - }, - "Microsoft.Win32.SystemEvents/6.0.0": { - "runtime": { - "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "MySqlConnector/2.2.5": { - "runtime": { - "lib/net6.0/MySqlConnector.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.2.5.0" - } - } - }, - "Newtonsoft.Json/13.0.2": { - "runtime": { - "lib/net6.0/Newtonsoft.Json.dll": { - "assemblyVersion": "13.0.0.0", - "fileVersion": "13.0.2.27524" - } - } - }, - "Npgsql/5.0.7": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "4.6.0" - }, - "runtime": { - "lib/net5.0/Npgsql.dll": { - "assemblyVersion": "5.0.7.0", - "fileVersion": "5.0.7.0" - } - } - }, - "Oracle.ManagedDataAccess.Core/3.21.100": { - "dependencies": { - "System.Diagnostics.PerformanceCounter": "6.0.1", - "System.DirectoryServices": "6.0.1", - "System.DirectoryServices.Protocols": "6.0.1" - }, - "runtime": { - "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": { - "assemblyVersion": "3.1.21.1", - "fileVersion": "3.1.21.1" - } - } - }, - "SQLitePCLRaw.bundle_e_sqlite3/2.1.4": { - "dependencies": { - "SQLitePCLRaw.lib.e_sqlite3": "2.1.4", - "SQLitePCLRaw.provider.e_sqlite3": "2.1.4" - }, - "runtime": { - "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": { - "assemblyVersion": "2.1.4.1835", - "fileVersion": "2.1.4.1835" - } - } - }, - "SQLitePCLRaw.core/2.1.4": { - "dependencies": { - "System.Memory": "4.5.3" - }, - "runtime": { - "lib/netstandard2.0/SQLitePCLRaw.core.dll": { - "assemblyVersion": "2.1.4.1835", - "fileVersion": "2.1.4.1835" - } - } - }, - "SQLitePCLRaw.lib.e_sqlite3/2.1.4": { - "runtimeTargets": { - "runtimes/alpine-arm/native/libe_sqlite3.so": { - "rid": "alpine-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/alpine-arm64/native/libe_sqlite3.so": { - "rid": "alpine-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/alpine-x64/native/libe_sqlite3.so": { - "rid": "alpine-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/browser-wasm/nativeassets/net6.0/e_sqlite3.a": { - "rid": "browser-wasm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm/native/libe_sqlite3.so": { - "rid": "linux-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm64/native/libe_sqlite3.so": { - "rid": "linux-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-armel/native/libe_sqlite3.so": { - "rid": "linux-armel", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-mips64/native/libe_sqlite3.so": { - "rid": "linux-mips64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-arm/native/libe_sqlite3.so": { - "rid": "linux-musl-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-arm64/native/libe_sqlite3.so": { - "rid": "linux-musl-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-x64/native/libe_sqlite3.so": { - "rid": "linux-musl-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-ppc64le/native/libe_sqlite3.so": { - "rid": "linux-ppc64le", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-s390x/native/libe_sqlite3.so": { - "rid": "linux-s390x", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libe_sqlite3.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x86/native/libe_sqlite3.so": { - "rid": "linux-x86", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib": { - "rid": "maccatalyst-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib": { - "rid": "maccatalyst-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-arm64/native/libe_sqlite3.dylib": { - "rid": "osx-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libe_sqlite3.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-arm/native/e_sqlite3.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-arm64/native/e_sqlite3.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-x64/native/e_sqlite3.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-x86/native/e_sqlite3.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "SQLitePCLRaw.provider.e_sqlite3/2.1.4": { - "dependencies": { - "SQLitePCLRaw.core": "2.1.4" - }, - "runtime": { - "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": { - "assemblyVersion": "2.1.4.1835", - "fileVersion": "2.1.4.1835" - } - } - }, - "SqlSugarCore/5.1.4.95": { - "dependencies": { - "Microsoft.Data.SqlClient": "2.1.4", - "Microsoft.Data.Sqlite": "7.0.5", - "MySqlConnector": "2.2.5", - "Newtonsoft.Json": "13.0.2", - "Npgsql": "5.0.7", - "Oracle.ManagedDataAccess.Core": "3.21.100", - "SqlSugarCore.Dm": "1.2.0", - "SqlSugarCore.Kdbndp": "7.4.0", - "System.Data.Common": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0" - }, - "runtime": { - "lib/netstandard2.1/SqlSugar.dll": { - "assemblyVersion": "5.1.4.94", - "fileVersion": "5.1.4.94" - } - } - }, - "SqlSugarCore.Dm/1.2.0": { - "dependencies": { - "System.Text.Encoding.CodePages": "5.0.0" - }, - "runtime": { - "lib/netstandard2.0/DmProvider.dll": { - "assemblyVersion": "1.1.0.0", - "fileVersion": "1.1.0.16649" - } - } - }, - "SqlSugarCore.Kdbndp/7.4.0": { - "runtime": { - "lib/netstandard2.1/Kdbndp.dll": { - "assemblyVersion": "8.3.712.0", - "fileVersion": "8.3.712.0" - } - } - }, - "System.Collections/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Configuration.ConfigurationManager/6.0.0": { - "dependencies": { - "System.Security.Cryptography.ProtectedData": "6.0.0", - "System.Security.Permissions": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Configuration.ConfigurationManager.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Data.Common/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Diagnostics.DiagnosticSource/4.7.0": {}, - "System.Diagnostics.PerformanceCounter/6.0.1": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.422.16404" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.422.16404" - } - } - }, - "System.DirectoryServices/6.0.1": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Security.Permissions": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.DirectoryServices.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1423.7309" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.DirectoryServices.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1423.7309" - } - } - }, - "System.DirectoryServices.Protocols/6.0.1": { - "runtime": { - "lib/net6.0/System.DirectoryServices.Protocols.dll": { - "assemblyVersion": "6.0.0.1", - "fileVersion": "6.0.222.6406" - } - }, - "runtimeTargets": { - "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll": { - "rid": "linux", - "assetType": "runtime", - "assemblyVersion": "6.0.0.1", - "fileVersion": "6.0.222.6406" - }, - "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll": { - "rid": "osx", - "assetType": "runtime", - "assemblyVersion": "6.0.0.1", - "fileVersion": "6.0.222.6406" - }, - "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.1", - "fileVersion": "6.0.222.6406" - } - } - }, - "System.Drawing.Common/6.0.0": { - "dependencies": { - "Microsoft.Win32.SystemEvents": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Drawing.Common.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Globalization/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.IdentityModel.Tokens.Jwt/6.8.0": { - "dependencies": { - "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", - "Microsoft.IdentityModel.Tokens": "6.8.0" - }, - "runtime": { - "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { - "assemblyVersion": "6.8.0.0", - "fileVersion": "6.8.0.11012" - } - } - }, - "System.IO/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Memory/4.5.3": {}, - "System.Reflection/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Resources.ResourceManager/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.Runtime.Caching/4.7.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Runtime.Caching.dll": { - "assemblyVersion": "4.0.1.0", - "fileVersion": "4.700.19.56404" - } - }, - "runtimeTargets": { - "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.1.0", - "fileVersion": "4.700.19.56404" - } - } - }, - "System.Runtime.CompilerServices.Unsafe/4.6.0": {}, - "System.Runtime.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Security.AccessControl/6.0.0": {}, - "System.Security.Cryptography.Cng/4.5.0": {}, - "System.Security.Cryptography.ProtectedData/6.0.0": { - "runtime": { - "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Permissions/6.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Windows.Extensions": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Security.Permissions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Principal.Windows/4.7.0": {}, - "System.Text.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Text.Encoding.CodePages/5.0.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0" - } - }, - "System.Text.RegularExpressions/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Threading.Tasks/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Windows.Extensions/6.0.0": { - "dependencies": { - "System.Drawing.Common": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Windows.Extensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - } - } - }, - "libraries": { - "HybirdFrameworkEntity/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Microsoft.CSharp/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==", - "path": "microsoft.csharp/4.5.0", - "hashPath": "microsoft.csharp.4.5.0.nupkg.sha512" - }, - "Microsoft.Data.SqlClient/2.1.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cDcKBTKILdRuAzJjbgXwGcUQXzMue+SG02kD4tZTXXfoz4ALrGLpCnA5k9khw3fnAMlMnRzLIGuvRdJurqmESA==", - "path": "microsoft.data.sqlclient/2.1.4", - "hashPath": "microsoft.data.sqlclient.2.1.4.nupkg.sha512" - }, - "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==", - "path": "microsoft.data.sqlclient.sni.runtime/2.1.1", - "hashPath": "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512" - }, - "Microsoft.Data.Sqlite/7.0.5": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KGxbPeWsQMnmQy43DSBxAFtHz3l2JX8EWBSGUCvT3CuZ8KsuzbkqMIJMDOxWtG8eZSoCDI04aiVQjWuuV8HmSw==", - "path": "microsoft.data.sqlite/7.0.5", - "hashPath": "microsoft.data.sqlite.7.0.5.nupkg.sha512" - }, - "Microsoft.Data.Sqlite.Core/7.0.5": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FTerRmQPqHrCrnoUzhBu+E+1DNGwyrAMLqHkAqOOOu5pGfyMOj8qQUBxI/gDtWtG11p49UxSfWmBzRNlwZqfUg==", - "path": "microsoft.data.sqlite.core/7.0.5", - "hashPath": "microsoft.data.sqlite.core.7.0.5.nupkg.sha512" - }, - "Microsoft.Identity.Client/4.21.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==", - "path": "microsoft.identity.client/4.21.1", - "hashPath": "microsoft.identity.client.4.21.1.nupkg.sha512" - }, - "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+7JIww64PkMt7NWFxoe4Y/joeF7TAtA/fQ0b2GFGcagzB59sKkTt/sMZWR6aSZht5YC7SdHi3W6yM1yylRGJCQ==", - "path": "microsoft.identitymodel.jsonwebtokens/6.8.0", - "hashPath": "microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Logging/6.8.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==", - "path": "microsoft.identitymodel.logging/6.8.0", - "hashPath": "microsoft.identitymodel.logging.6.8.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Protocols/6.8.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OJZx5nPdiH+MEkwCkbJrTAUiO/YzLe0VSswNlDxJsJD9bhOIdXHufh650pfm59YH1DNevp3/bXzukKrG57gA1w==", - "path": "microsoft.identitymodel.protocols/6.8.0", - "hashPath": "microsoft.identitymodel.protocols.6.8.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-X/PiV5l3nYYsodtrNMrNQIVlDmHpjQQ5w48E+o/D5H4es2+4niEyQf3l03chvZGWNzBRhfSstaXr25/Ye4AeYw==", - "path": "microsoft.identitymodel.protocols.openidconnect/6.8.0", - "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Tokens/6.8.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==", - "path": "microsoft.identitymodel.tokens/6.8.0", - "hashPath": "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512" - }, - "Microsoft.NETCore.Platforms/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", - "path": "microsoft.netcore.platforms/5.0.0", - "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512" - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", - "path": "microsoft.netcore.targets/1.1.0", - "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" - }, - "Microsoft.Win32.Registry/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", - "path": "microsoft.win32.registry/4.7.0", - "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" - }, - "Microsoft.Win32.SystemEvents/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", - "path": "microsoft.win32.systemevents/6.0.0", - "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512" - }, - "MySqlConnector/2.2.5": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6sinY78RvryhHwpup3awdjYO7d5hhWahb5p/1VDODJhSxJggV/sBbYuKK5IQF9TuzXABiddqUbmRfM884tqA3Q==", - "path": "mysqlconnector/2.2.5", - "hashPath": "mysqlconnector.2.2.5.nupkg.sha512" - }, - "Newtonsoft.Json/13.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-R2pZ3B0UjeyHShm9vG+Tu0EBb2lC8b0dFzV9gVn50ofHXh9Smjk6kTn7A/FdAsC8B5cKib1OnGYOXxRBz5XQDg==", - "path": "newtonsoft.json/13.0.2", - "hashPath": "newtonsoft.json.13.0.2.nupkg.sha512" - }, - "Npgsql/5.0.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==", - "path": "npgsql/5.0.7", - "hashPath": "npgsql.5.0.7.nupkg.sha512" - }, - "Oracle.ManagedDataAccess.Core/3.21.100": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nsqyUE+v246WB0SOnR1u9lfZxYoNcdj1fRjTt7TOhCN0JurEc6+qu+mMe+dl1sySB2UpyWdfqHG1iSQJYaXEfA==", - "path": "oracle.manageddataaccess.core/3.21.100", - "hashPath": "oracle.manageddataaccess.core.3.21.100.nupkg.sha512" - }, - "SQLitePCLRaw.bundle_e_sqlite3/2.1.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-EWI1olKDjFEBMJu0+3wuxwziIAdWDVMYLhuZ3Qs84rrz+DHwD00RzWPZCa+bLnHCf3oJwuFZIRsHT5p236QXww==", - "path": "sqlitepclraw.bundle_e_sqlite3/2.1.4", - "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.1.4.nupkg.sha512" - }, - "SQLitePCLRaw.core/2.1.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-inBjvSHo9UDKneGNzfUfDjK08JzlcIhn1+SP5Y3m6cgXpCxXKCJDy6Mka7LpgSV+UZmKSnC8rTwB0SQ0xKu5pA==", - "path": "sqlitepclraw.core/2.1.4", - "hashPath": "sqlitepclraw.core.2.1.4.nupkg.sha512" - }, - "SQLitePCLRaw.lib.e_sqlite3/2.1.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2C9Q9eX7CPLveJA0rIhf9RXAvu+7nWZu1A2MdG6SD/NOu26TakGgL1nsbc0JAspGijFOo3HoN79xrx8a368fBg==", - "path": "sqlitepclraw.lib.e_sqlite3/2.1.4", - "hashPath": "sqlitepclraw.lib.e_sqlite3.2.1.4.nupkg.sha512" - }, - "SQLitePCLRaw.provider.e_sqlite3/2.1.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CSlb5dUp1FMIkez9Iv5EXzpeq7rHryVNqwJMWnpq87j9zWZexaEMdisDktMsnnrzKM6ahNrsTkjqNodTBPBxtQ==", - "path": "sqlitepclraw.provider.e_sqlite3/2.1.4", - "hashPath": "sqlitepclraw.provider.e_sqlite3.2.1.4.nupkg.sha512" - }, - "SqlSugarCore/5.1.4.95": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7+xQXOZhe0dHplO6AJC3V9VAcO7XPhprrgpjMsrj+LUUJ/k1yVrbag8vHVFZyPyC3PfvHTcpJsepuTJMruUPEw==", - "path": "sqlsugarcore/5.1.4.95", - "hashPath": "sqlsugarcore.5.1.4.95.nupkg.sha512" - }, - "SqlSugarCore.Dm/1.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JFhgCGfCMvI0/u7WdsSzK4D7ptZl1RXP8Q7KwSGpBndgUXlfnnmCfwJaz4f89XxalRLLk1h/x0RAuUei98/CmA==", - "path": "sqlsugarcore.dm/1.2.0", - "hashPath": "sqlsugarcore.dm.1.2.0.nupkg.sha512" - }, - "SqlSugarCore.Kdbndp/7.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cHqgzvPz65v6pkO61oZM2pcPKY0KXvZo2EEAbZFHmyl5X7suxzpTOz/b6DvXjmRlcHxTRKGav2wwmStqTiUacg==", - "path": "sqlsugarcore.kdbndp/7.4.0", - "hashPath": "sqlsugarcore.kdbndp.7.4.0.nupkg.sha512" - }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, - "System.Configuration.ConfigurationManager/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==", - "path": "system.configuration.configurationmanager/6.0.0", - "hashPath": "system.configuration.configurationmanager.6.0.0.nupkg.sha512" - }, - "System.Data.Common/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==", - "path": "system.data.common/4.3.0", - "hashPath": "system.data.common.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.DiagnosticSource/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oJjw3uFuVDJiJNbCD8HB4a2p3NYLdt1fiT5OGsPLw+WTOuG0KpP4OXelMmmVKpClueMsit6xOlzy4wNKQFiBLg==", - "path": "system.diagnostics.diagnosticsource/4.7.0", - "hashPath": "system.diagnostics.diagnosticsource.4.7.0.nupkg.sha512" - }, - "System.Diagnostics.PerformanceCounter/6.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dDl7Gx3bmSrM2k2ZIm+ucEJnLloZRyvfQF1DvfvATcGF3jtaUBiPvChma+6ZcZzxWMirN3kCywkW7PILphXyMQ==", - "path": "system.diagnostics.performancecounter/6.0.1", - "hashPath": "system.diagnostics.performancecounter.6.0.1.nupkg.sha512" - }, - "System.DirectoryServices/6.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-935IbO7h5FDGYxeO3cbx/CuvBBuk/VI8sENlfmXlh1pupNOB3LAGzdYdPY8CawGJFP7KNrHK5eUlsFoz3F6cuA==", - "path": "system.directoryservices/6.0.1", - "hashPath": "system.directoryservices.6.0.1.nupkg.sha512" - }, - "System.DirectoryServices.Protocols/6.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ndUZlEkAMc1XzM0xGN++SsJrNhRkIHaKI8+te325vrUgoLT1ufWNI6KB8FFrL7NpRMHPrdxP99aF3fHbAPxW0A==", - "path": "system.directoryservices.protocols/6.0.1", - "hashPath": "system.directoryservices.protocols.6.0.1.nupkg.sha512" - }, - "System.Drawing.Common/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", - "path": "system.drawing.common/6.0.0", - "hashPath": "system.drawing.common.6.0.0.nupkg.sha512" - }, - "System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "path": "system.globalization/4.3.0", - "hashPath": "system.globalization.4.3.0.nupkg.sha512" - }, - "System.IdentityModel.Tokens.Jwt/6.8.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5tBCjAub2Bhd5qmcd0WhR5s354e4oLYa//kOWrkX+6/7ZbDDJjMTfwLSOiZ/MMpWdE4DWPLOfTLOq/juj9CKzA==", - "path": "system.identitymodel.tokens.jwt/6.8.0", - "hashPath": "system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512" - }, - "System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "path": "system.io/4.3.0", - "hashPath": "system.io.4.3.0.nupkg.sha512" - }, - "System.Memory/4.5.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==", - "path": "system.memory/4.5.3", - "hashPath": "system.memory.4.5.3.nupkg.sha512" - }, - "System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "path": "system.reflection/4.3.0", - "hashPath": "system.reflection.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", - "path": "system.reflection.emit.ilgeneration/4.3.0", - "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", - "path": "system.reflection.emit.lightweight/4.3.0", - "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "path": "system.reflection.primitives/4.3.0", - "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "path": "system.resources.resourcemanager/4.3.0", - "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "path": "system.runtime/4.3.0", - "hashPath": "system.runtime.4.3.0.nupkg.sha512" - }, - "System.Runtime.Caching/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==", - "path": "system.runtime.caching/4.7.0", - "hashPath": "system.runtime.caching.4.7.0.nupkg.sha512" - }, - "System.Runtime.CompilerServices.Unsafe/4.6.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-HxozeSlipUK7dAroTYwIcGwKDeOVpQnJlpVaOkBz7CM4TsE5b/tKlQBZecTjh6FzcSbxndYaxxpsBMz+wMJeyw==", - "path": "system.runtime.compilerservices.unsafe/4.6.0", - "hashPath": "system.runtime.compilerservices.unsafe.4.6.0.nupkg.sha512" - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "path": "system.runtime.extensions/4.3.0", - "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "System.Security.AccessControl/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", - "path": "system.security.accesscontrol/6.0.0", - "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.Cng/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", - "path": "system.security.cryptography.cng/4.5.0", - "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512" - }, - "System.Security.Cryptography.ProtectedData/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", - "path": "system.security.cryptography.protecteddata/6.0.0", - "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512" - }, - "System.Security.Permissions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", - "path": "system.security.permissions/6.0.0", - "hashPath": "system.security.permissions.6.0.0.nupkg.sha512" - }, - "System.Security.Principal.Windows/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", - "path": "system.security.principal.windows/4.7.0", - "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "path": "system.text.encoding/4.3.0", - "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding.CodePages/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==", - "path": "system.text.encoding.codepages/5.0.0", - "hashPath": "system.text.encoding.codepages.5.0.0.nupkg.sha512" - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", - "path": "system.text.regularexpressions/4.3.0", - "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "path": "system.threading.tasks/4.3.0", - "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" - }, - "System.Windows.Extensions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", - "path": "system.windows.extensions/6.0.0", - "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512" - } - } -} \ No newline at end of file diff --git a/HybirdFrameworkEntity/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/HybirdFrameworkEntity/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs deleted file mode 100644 index ed92695..0000000 --- a/HybirdFrameworkEntity/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")] diff --git a/HybirdFrameworkEntity/obj/Debug/net6.0/HybirdFrameworkEntity.GlobalUsings.g.cs b/HybirdFrameworkEntity/obj/Debug/net6.0/HybirdFrameworkEntity.GlobalUsings.g.cs deleted file mode 100644 index 8578f3d..0000000 --- a/HybirdFrameworkEntity/obj/Debug/net6.0/HybirdFrameworkEntity.GlobalUsings.g.cs +++ /dev/null @@ -1,8 +0,0 @@ -// -global using global::System; -global using global::System.Collections.Generic; -global using global::System.IO; -global using global::System.Linq; -global using global::System.Net.Http; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/HybirdFrameworkEntity/obj/Debug/net6.0/HybirdFrameworkEntity.csproj.BuildWithSkipAnalyzers b/HybirdFrameworkEntity/obj/Debug/net6.0/HybirdFrameworkEntity.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29..0000000 diff --git a/HybirdFrameworkEntity/obj/HybirdFrameworkEntity.csproj.nuget.g.targets b/HybirdFrameworkEntity/obj/HybirdFrameworkEntity.csproj.nuget.g.targets deleted file mode 100644 index 8861a95..0000000 --- a/HybirdFrameworkEntity/obj/HybirdFrameworkEntity.csproj.nuget.g.targets +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/HybirdFrameworkRepository/bin/Debug/net6.0/HybirdFrameworkRepository.deps.json b/HybirdFrameworkRepository/bin/Debug/net6.0/HybirdFrameworkRepository.deps.json deleted file mode 100644 index 3377398..0000000 --- a/HybirdFrameworkRepository/bin/Debug/net6.0/HybirdFrameworkRepository.deps.json +++ /dev/null @@ -1,1503 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v6.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v6.0": { - "HybirdFrameworkRepository/1.0.0": { - "dependencies": { - "HybirdFrameworkCore": "1.0.0", - "HybirdFrameworkEntity": "1.0.0", - "SqlSugar.IOC": "2.0.0", - "SqlSugarCore": "5.1.4.95" - }, - "runtime": { - "HybirdFrameworkRepository.dll": {} - } - }, - "Autofac/7.0.1": { - "dependencies": { - "System.Diagnostics.DiagnosticSource": "4.7.1" - }, - "runtime": { - "lib/net6.0/Autofac.dll": { - "assemblyVersion": "7.0.1.0", - "fileVersion": "7.0.1.0" - } - } - }, - "log4net/2.0.15": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/log4net.dll": { - "assemblyVersion": "2.0.15.0", - "fileVersion": "2.0.15.0" - } - } - }, - "Microsoft.CSharp/4.5.0": {}, - "Microsoft.Data.SqlClient/2.1.4": { - "dependencies": { - "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1", - "Microsoft.Identity.Client": "4.21.1", - "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", - "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0", - "Microsoft.Win32.Registry": "4.7.0", - "System.Configuration.ConfigurationManager": "6.0.0", - "System.Diagnostics.DiagnosticSource": "4.7.1", - "System.Runtime.Caching": "4.7.0", - "System.Security.Principal.Windows": "4.7.0", - "System.Text.Encoding.CodePages": "5.0.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { - "assemblyVersion": "2.0.20168.4", - "fileVersion": "2.0.20168.4" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "2.0.20168.4", - "fileVersion": "2.0.20168.4" - }, - "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "2.0.20168.4", - "fileVersion": "2.0.20168.4" - } - } - }, - "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { - "runtimeTargets": { - "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "2.1.1.0" - }, - "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "2.1.1.0" - }, - "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "2.1.1.0" - }, - "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "2.1.1.0" - } - } - }, - "Microsoft.Data.Sqlite/7.0.5": { - "dependencies": { - "Microsoft.Data.Sqlite.Core": "7.0.5", - "SQLitePCLRaw.bundle_e_sqlite3": "2.1.4" - } - }, - "Microsoft.Data.Sqlite.Core/7.0.5": { - "dependencies": { - "SQLitePCLRaw.core": "2.1.4" - }, - "runtime": { - "lib/net6.0/Microsoft.Data.Sqlite.dll": { - "assemblyVersion": "7.0.5.0", - "fileVersion": "7.0.523.16503" - } - } - }, - "Microsoft.Extensions.Configuration/7.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "7.0.0", - "Microsoft.Extensions.Primitives": "7.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.Extensions.Configuration.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.22.51805" - } - } - }, - "Microsoft.Extensions.Configuration.Abstractions/7.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "7.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.22.51805" - } - } - }, - "Microsoft.Extensions.Configuration.FileExtensions/7.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "7.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "7.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "7.0.0", - "Microsoft.Extensions.FileProviders.Physical": "7.0.0", - "Microsoft.Extensions.Primitives": "7.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.22.51805" - } - } - }, - "Microsoft.Extensions.Configuration.Json/7.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "7.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "7.0.0", - "Microsoft.Extensions.Configuration.FileExtensions": "7.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "7.0.0", - "System.Text.Json": "7.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.Extensions.Configuration.Json.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.22.51805" - } - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.Extensions.FileProviders.Abstractions/7.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "7.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.22.51805" - } - } - }, - "Microsoft.Extensions.FileProviders.Physical/7.0.0": { - "dependencies": { - "Microsoft.Extensions.FileProviders.Abstractions": "7.0.0", - "Microsoft.Extensions.FileSystemGlobbing": "7.0.0", - "Microsoft.Extensions.Primitives": "7.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.22.51805" - } - } - }, - "Microsoft.Extensions.FileSystemGlobbing/7.0.0": { - "runtime": { - "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.22.51805" - } - } - }, - "Microsoft.Extensions.Logging.Abstractions/6.0.0": { - "runtime": { - "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Primitives/7.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.Extensions.Primitives.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.22.51805" - } - } - }, - "Microsoft.Identity.Client/4.21.1": { - "runtime": { - "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": { - "assemblyVersion": "4.21.1.0", - "fileVersion": "4.21.1.0" - } - } - }, - "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { - "dependencies": { - "Microsoft.IdentityModel.Tokens": "6.8.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "assemblyVersion": "6.8.0.0", - "fileVersion": "6.8.0.11012" - } - } - }, - "Microsoft.IdentityModel.Logging/6.8.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { - "assemblyVersion": "6.8.0.0", - "fileVersion": "6.8.0.11012" - } - } - }, - "Microsoft.IdentityModel.Protocols/6.8.0": { - "dependencies": { - "Microsoft.IdentityModel.Logging": "6.8.0", - "Microsoft.IdentityModel.Tokens": "6.8.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { - "assemblyVersion": "6.8.0.0", - "fileVersion": "6.8.0.11012" - } - } - }, - "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { - "dependencies": { - "Microsoft.IdentityModel.Protocols": "6.8.0", - "System.IdentityModel.Tokens.Jwt": "6.8.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { - "assemblyVersion": "6.8.0.0", - "fileVersion": "6.8.0.11012" - } - } - }, - "Microsoft.IdentityModel.Tokens/6.8.0": { - "dependencies": { - "Microsoft.CSharp": "4.5.0", - "Microsoft.IdentityModel.Logging": "6.8.0", - "System.Security.Cryptography.Cng": "4.5.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { - "assemblyVersion": "6.8.0.0", - "fileVersion": "6.8.0.11012" - } - } - }, - "Microsoft.NETCore.Platforms/5.0.0": {}, - "Microsoft.NETCore.Targets/1.1.0": {}, - "Microsoft.Win32.Registry/4.7.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Security.Principal.Windows": "4.7.0" - } - }, - "Microsoft.Win32.SystemEvents/6.0.0": { - "runtime": { - "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "MySqlConnector/2.2.5": { - "runtime": { - "lib/net6.0/MySqlConnector.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.2.5.0" - } - } - }, - "Newtonsoft.Json/13.0.3": { - "runtime": { - "lib/net6.0/Newtonsoft.Json.dll": { - "assemblyVersion": "13.0.0.0", - "fileVersion": "13.0.3.27908" - } - } - }, - "Npgsql/5.0.7": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/net5.0/Npgsql.dll": { - "assemblyVersion": "5.0.7.0", - "fileVersion": "5.0.7.0" - } - } - }, - "Oracle.ManagedDataAccess.Core/3.21.100": { - "dependencies": { - "System.Diagnostics.PerformanceCounter": "6.0.1", - "System.DirectoryServices": "6.0.1", - "System.DirectoryServices.Protocols": "6.0.1" - }, - "runtime": { - "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": { - "assemblyVersion": "3.1.21.1", - "fileVersion": "3.1.21.1" - } - } - }, - "Pipelines.Sockets.Unofficial/2.2.8": { - "dependencies": { - "System.IO.Pipelines": "5.0.1" - }, - "runtime": { - "lib/net5.0/Pipelines.Sockets.Unofficial.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "2.2.8.1080" - } - } - }, - "SQLitePCLRaw.bundle_e_sqlite3/2.1.4": { - "dependencies": { - "SQLitePCLRaw.lib.e_sqlite3": "2.1.4", - "SQLitePCLRaw.provider.e_sqlite3": "2.1.4" - }, - "runtime": { - "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": { - "assemblyVersion": "2.1.4.1835", - "fileVersion": "2.1.4.1835" - } - } - }, - "SQLitePCLRaw.core/2.1.4": { - "dependencies": { - "System.Memory": "4.5.3" - }, - "runtime": { - "lib/netstandard2.0/SQLitePCLRaw.core.dll": { - "assemblyVersion": "2.1.4.1835", - "fileVersion": "2.1.4.1835" - } - } - }, - "SQLitePCLRaw.lib.e_sqlite3/2.1.4": { - "runtimeTargets": { - "runtimes/alpine-arm/native/libe_sqlite3.so": { - "rid": "alpine-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/alpine-arm64/native/libe_sqlite3.so": { - "rid": "alpine-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/alpine-x64/native/libe_sqlite3.so": { - "rid": "alpine-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/browser-wasm/nativeassets/net6.0/e_sqlite3.a": { - "rid": "browser-wasm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm/native/libe_sqlite3.so": { - "rid": "linux-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm64/native/libe_sqlite3.so": { - "rid": "linux-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-armel/native/libe_sqlite3.so": { - "rid": "linux-armel", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-mips64/native/libe_sqlite3.so": { - "rid": "linux-mips64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-arm/native/libe_sqlite3.so": { - "rid": "linux-musl-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-arm64/native/libe_sqlite3.so": { - "rid": "linux-musl-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-x64/native/libe_sqlite3.so": { - "rid": "linux-musl-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-ppc64le/native/libe_sqlite3.so": { - "rid": "linux-ppc64le", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-s390x/native/libe_sqlite3.so": { - "rid": "linux-s390x", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libe_sqlite3.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x86/native/libe_sqlite3.so": { - "rid": "linux-x86", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib": { - "rid": "maccatalyst-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib": { - "rid": "maccatalyst-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-arm64/native/libe_sqlite3.dylib": { - "rid": "osx-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libe_sqlite3.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-arm/native/e_sqlite3.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-arm64/native/e_sqlite3.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-x64/native/e_sqlite3.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-x86/native/e_sqlite3.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "SQLitePCLRaw.provider.e_sqlite3/2.1.4": { - "dependencies": { - "SQLitePCLRaw.core": "2.1.4" - }, - "runtime": { - "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": { - "assemblyVersion": "2.1.4.1835", - "fileVersion": "2.1.4.1835" - } - } - }, - "SqlSugar.IOC/2.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", - "System.Runtime.Loader": "4.3.0" - }, - "runtime": { - "lib/netstandard2.1/SqlSugar.IOC.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.0.0.0" - } - } - }, - "SqlSugarCore/5.1.4.95": { - "dependencies": { - "Microsoft.Data.SqlClient": "2.1.4", - "Microsoft.Data.Sqlite": "7.0.5", - "MySqlConnector": "2.2.5", - "Newtonsoft.Json": "13.0.3", - "Npgsql": "5.0.7", - "Oracle.ManagedDataAccess.Core": "3.21.100", - "SqlSugarCore.Dm": "1.2.0", - "SqlSugarCore.Kdbndp": "7.4.0", - "System.Data.Common": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0" - }, - "runtime": { - "lib/netstandard2.1/SqlSugar.dll": { - "assemblyVersion": "5.1.4.94", - "fileVersion": "5.1.4.94" - } - } - }, - "SqlSugarCore.Dm/1.2.0": { - "dependencies": { - "System.Text.Encoding.CodePages": "5.0.0" - }, - "runtime": { - "lib/netstandard2.0/DmProvider.dll": { - "assemblyVersion": "1.1.0.0", - "fileVersion": "1.1.0.16649" - } - } - }, - "SqlSugarCore.Kdbndp/7.4.0": { - "runtime": { - "lib/netstandard2.1/Kdbndp.dll": { - "assemblyVersion": "8.3.712.0", - "fileVersion": "8.3.712.0" - } - } - }, - "StackExchange.Redis/2.7.33": { - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "6.0.0", - "Pipelines.Sockets.Unofficial": "2.2.8" - }, - "runtime": { - "lib/net6.0/StackExchange.Redis.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.7.33.41805" - } - } - }, - "System.Collections/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Configuration.ConfigurationManager/6.0.0": { - "dependencies": { - "System.Security.Cryptography.ProtectedData": "6.0.0", - "System.Security.Permissions": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Configuration.ConfigurationManager.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Data.Common/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Diagnostics.DiagnosticSource/4.7.1": {}, - "System.Diagnostics.PerformanceCounter/6.0.1": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.422.16404" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.422.16404" - } - } - }, - "System.DirectoryServices/6.0.1": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Security.Permissions": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.DirectoryServices.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1423.7309" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.DirectoryServices.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.1423.7309" - } - } - }, - "System.DirectoryServices.Protocols/6.0.1": { - "runtime": { - "lib/net6.0/System.DirectoryServices.Protocols.dll": { - "assemblyVersion": "6.0.0.1", - "fileVersion": "6.0.222.6406" - } - }, - "runtimeTargets": { - "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll": { - "rid": "linux", - "assetType": "runtime", - "assemblyVersion": "6.0.0.1", - "fileVersion": "6.0.222.6406" - }, - "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll": { - "rid": "osx", - "assetType": "runtime", - "assemblyVersion": "6.0.0.1", - "fileVersion": "6.0.222.6406" - }, - "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.1", - "fileVersion": "6.0.222.6406" - } - } - }, - "System.Drawing.Common/6.0.0": { - "dependencies": { - "Microsoft.Win32.SystemEvents": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Drawing.Common.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Globalization/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.IdentityModel.Tokens.Jwt/6.8.0": { - "dependencies": { - "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", - "Microsoft.IdentityModel.Tokens": "6.8.0" - }, - "runtime": { - "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { - "assemblyVersion": "6.8.0.0", - "fileVersion": "6.8.0.11012" - } - } - }, - "System.IO/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.Pipelines/5.0.1": { - "runtime": { - "lib/netcoreapp3.0/System.IO.Pipelines.dll": { - "assemblyVersion": "5.0.0.1", - "fileVersion": "5.0.120.57516" - } - } - }, - "System.Memory/4.5.3": {}, - "System.Reflection/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Resources.ResourceManager/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.Runtime.Caching/4.7.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Runtime.Caching.dll": { - "assemblyVersion": "4.0.1.0", - "fileVersion": "4.700.19.56404" - } - }, - "runtimeTargets": { - "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.1.0", - "fileVersion": "4.700.19.56404" - } - } - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, - "System.Runtime.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.Loader/4.3.0": { - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Security.AccessControl/6.0.0": {}, - "System.Security.Cryptography.Cng/4.5.0": {}, - "System.Security.Cryptography.ProtectedData/6.0.0": { - "runtime": { - "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Permissions/6.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Windows.Extensions": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Security.Permissions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Principal.Windows/4.7.0": {}, - "System.Text.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Text.Encoding.CodePages/5.0.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0" - } - }, - "System.Text.Encodings.Web/7.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Text.Encodings.Web.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.22.51805" - } - }, - "runtimeTargets": { - "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll": { - "rid": "browser", - "assetType": "runtime", - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.22.51805" - } - } - }, - "System.Text.Json/7.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encodings.Web": "7.0.0" - }, - "runtime": { - "lib/net6.0/System.Text.Json.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.22.51805" - } - } - }, - "System.Text.RegularExpressions/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Threading.Tasks/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Windows.Extensions/6.0.0": { - "dependencies": { - "System.Drawing.Common": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Windows.Extensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "HybirdFrameworkCore/1.0.0": { - "dependencies": { - "Autofac": "7.0.1", - "Microsoft.Extensions.Configuration.Abstractions": "7.0.0", - "Microsoft.Extensions.Configuration.Json": "7.0.0", - "Newtonsoft.Json": "13.0.3", - "StackExchange.Redis": "2.7.33", - "log4net": "2.0.15" - }, - "runtime": { - "HybirdFrameworkCore.dll": {} - } - }, - "HybirdFrameworkEntity/1.0.0": { - "dependencies": { - "SqlSugarCore": "5.1.4.95" - }, - "runtime": { - "HybirdFrameworkEntity.dll": {} - } - } - } - }, - "libraries": { - "HybirdFrameworkRepository/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Autofac/7.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-J9Iz0Q+YU3uf82i8Lee0NpQOlRYfwHxwVV26jdG3zH3LFE5Y9Rx97Mju7Nswwzh/C7kVJALkTL860Y7e+mcLaw==", - "path": "autofac/7.0.1", - "hashPath": "autofac.7.0.1.nupkg.sha512" - }, - "log4net/2.0.15": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GahnO9ZgFka+xYcFwAfIFjW+k86P2nxFoaEpH6t3v4hiGj7tv2ksVZphxCVIHmJxoySS0HeU3dgCW+bSCcfD0A==", - "path": "log4net/2.0.15", - "hashPath": "log4net.2.0.15.nupkg.sha512" - }, - "Microsoft.CSharp/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==", - "path": "microsoft.csharp/4.5.0", - "hashPath": "microsoft.csharp.4.5.0.nupkg.sha512" - }, - "Microsoft.Data.SqlClient/2.1.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cDcKBTKILdRuAzJjbgXwGcUQXzMue+SG02kD4tZTXXfoz4ALrGLpCnA5k9khw3fnAMlMnRzLIGuvRdJurqmESA==", - "path": "microsoft.data.sqlclient/2.1.4", - "hashPath": "microsoft.data.sqlclient.2.1.4.nupkg.sha512" - }, - "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==", - "path": "microsoft.data.sqlclient.sni.runtime/2.1.1", - "hashPath": "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512" - }, - "Microsoft.Data.Sqlite/7.0.5": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KGxbPeWsQMnmQy43DSBxAFtHz3l2JX8EWBSGUCvT3CuZ8KsuzbkqMIJMDOxWtG8eZSoCDI04aiVQjWuuV8HmSw==", - "path": "microsoft.data.sqlite/7.0.5", - "hashPath": "microsoft.data.sqlite.7.0.5.nupkg.sha512" - }, - "Microsoft.Data.Sqlite.Core/7.0.5": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FTerRmQPqHrCrnoUzhBu+E+1DNGwyrAMLqHkAqOOOu5pGfyMOj8qQUBxI/gDtWtG11p49UxSfWmBzRNlwZqfUg==", - "path": "microsoft.data.sqlite.core/7.0.5", - "hashPath": "microsoft.data.sqlite.core.7.0.5.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tldQUBWt/xeH2K7/hMPPo5g8zuLc3Ro9I5d4o/XrxvxOCA2EZBtW7bCHHTc49fcBtvB8tLAb/Qsmfrq+2SJ4vA==", - "path": "microsoft.extensions.configuration/7.0.0", - "hashPath": "microsoft.extensions.configuration.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Abstractions/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-f34u2eaqIjNO9YLHBz8rozVZ+TcFiFs0F3r7nUJd7FRkVSxk8u4OpoK226mi49MwexHOR2ibP9MFvRUaLilcQQ==", - "path": "microsoft.extensions.configuration.abstractions/7.0.0", - "hashPath": "microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.FileExtensions/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xk2lRJ1RDuqe57BmgvRPyCt6zyePKUmvT6iuXqiHR+/OIIgWVR8Ff5k2p6DwmqY8a17hx/OnrekEhziEIeQP6Q==", - "path": "microsoft.extensions.configuration.fileextensions/7.0.0", - "hashPath": "microsoft.extensions.configuration.fileextensions.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Json/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LDNYe3uw76W35Jci+be4LDf2lkQZe0A7EEYQVChFbc509CpZ4Iupod8li4PUXPBhEUOFI/rlQNf5xkzJRQGvtA==", - "path": "microsoft.extensions.configuration.json/7.0.0", - "hashPath": "microsoft.extensions.configuration.json.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==", - "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileProviders.Abstractions/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NyawiW9ZT/liQb34k9YqBSNPLuuPkrjMgQZ24Y/xXX1RoiBkLUdPMaQTmxhZ5TYu8ZKZ9qayzil75JX95vGQUg==", - "path": "microsoft.extensions.fileproviders.abstractions/7.0.0", - "hashPath": "microsoft.extensions.fileproviders.abstractions.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileProviders.Physical/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-K8D2MTR+EtzkbZ8z80LrG7Ur64R7ZZdRLt1J5cgpc/pUWl0C6IkAUapPuK28oionHueCPELUqq0oYEvZfalNdg==", - "path": "microsoft.extensions.fileproviders.physical/7.0.0", - "hashPath": "microsoft.extensions.fileproviders.physical.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileSystemGlobbing/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2jONjKHiF+E92ynz2ZFcr9OvxIw+rTGMPEH+UZGeHTEComVav93jQUWGkso8yWwVBcEJGcNcZAaqY01FFJcj7w==", - "path": "microsoft.extensions.filesystemglobbing/7.0.0", - "hashPath": "microsoft.extensions.filesystemglobbing.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", - "path": "microsoft.extensions.logging.abstractions/6.0.0", - "hashPath": "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-um1KU5kxcRp3CNuI8o/GrZtD4AIOXDk+RLsytjZ9QPok3ttLUelLKpilVPuaFT3TFjOhSibUAso0odbOaCDj3Q==", - "path": "microsoft.extensions.primitives/7.0.0", - "hashPath": "microsoft.extensions.primitives.7.0.0.nupkg.sha512" - }, - "Microsoft.Identity.Client/4.21.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==", - "path": "microsoft.identity.client/4.21.1", - "hashPath": "microsoft.identity.client.4.21.1.nupkg.sha512" - }, - "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+7JIww64PkMt7NWFxoe4Y/joeF7TAtA/fQ0b2GFGcagzB59sKkTt/sMZWR6aSZht5YC7SdHi3W6yM1yylRGJCQ==", - "path": "microsoft.identitymodel.jsonwebtokens/6.8.0", - "hashPath": "microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Logging/6.8.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==", - "path": "microsoft.identitymodel.logging/6.8.0", - "hashPath": "microsoft.identitymodel.logging.6.8.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Protocols/6.8.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OJZx5nPdiH+MEkwCkbJrTAUiO/YzLe0VSswNlDxJsJD9bhOIdXHufh650pfm59YH1DNevp3/bXzukKrG57gA1w==", - "path": "microsoft.identitymodel.protocols/6.8.0", - "hashPath": "microsoft.identitymodel.protocols.6.8.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-X/PiV5l3nYYsodtrNMrNQIVlDmHpjQQ5w48E+o/D5H4es2+4niEyQf3l03chvZGWNzBRhfSstaXr25/Ye4AeYw==", - "path": "microsoft.identitymodel.protocols.openidconnect/6.8.0", - "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Tokens/6.8.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==", - "path": "microsoft.identitymodel.tokens/6.8.0", - "hashPath": "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512" - }, - "Microsoft.NETCore.Platforms/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", - "path": "microsoft.netcore.platforms/5.0.0", - "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512" - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", - "path": "microsoft.netcore.targets/1.1.0", - "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" - }, - "Microsoft.Win32.Registry/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", - "path": "microsoft.win32.registry/4.7.0", - "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" - }, - "Microsoft.Win32.SystemEvents/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", - "path": "microsoft.win32.systemevents/6.0.0", - "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512" - }, - "MySqlConnector/2.2.5": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6sinY78RvryhHwpup3awdjYO7d5hhWahb5p/1VDODJhSxJggV/sBbYuKK5IQF9TuzXABiddqUbmRfM884tqA3Q==", - "path": "mysqlconnector/2.2.5", - "hashPath": "mysqlconnector.2.2.5.nupkg.sha512" - }, - "Newtonsoft.Json/13.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", - "path": "newtonsoft.json/13.0.3", - "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" - }, - "Npgsql/5.0.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==", - "path": "npgsql/5.0.7", - "hashPath": "npgsql.5.0.7.nupkg.sha512" - }, - "Oracle.ManagedDataAccess.Core/3.21.100": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nsqyUE+v246WB0SOnR1u9lfZxYoNcdj1fRjTt7TOhCN0JurEc6+qu+mMe+dl1sySB2UpyWdfqHG1iSQJYaXEfA==", - "path": "oracle.manageddataaccess.core/3.21.100", - "hashPath": "oracle.manageddataaccess.core.3.21.100.nupkg.sha512" - }, - "Pipelines.Sockets.Unofficial/2.2.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zG2FApP5zxSx6OcdJQLbZDk2AVlN2BNQD6MorwIfV6gVj0RRxWPEp2LXAxqDGZqeNV1Zp0BNPcNaey/GXmTdvQ==", - "path": "pipelines.sockets.unofficial/2.2.8", - "hashPath": "pipelines.sockets.unofficial.2.2.8.nupkg.sha512" - }, - "SQLitePCLRaw.bundle_e_sqlite3/2.1.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-EWI1olKDjFEBMJu0+3wuxwziIAdWDVMYLhuZ3Qs84rrz+DHwD00RzWPZCa+bLnHCf3oJwuFZIRsHT5p236QXww==", - "path": "sqlitepclraw.bundle_e_sqlite3/2.1.4", - "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.1.4.nupkg.sha512" - }, - "SQLitePCLRaw.core/2.1.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-inBjvSHo9UDKneGNzfUfDjK08JzlcIhn1+SP5Y3m6cgXpCxXKCJDy6Mka7LpgSV+UZmKSnC8rTwB0SQ0xKu5pA==", - "path": "sqlitepclraw.core/2.1.4", - "hashPath": "sqlitepclraw.core.2.1.4.nupkg.sha512" - }, - "SQLitePCLRaw.lib.e_sqlite3/2.1.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2C9Q9eX7CPLveJA0rIhf9RXAvu+7nWZu1A2MdG6SD/NOu26TakGgL1nsbc0JAspGijFOo3HoN79xrx8a368fBg==", - "path": "sqlitepclraw.lib.e_sqlite3/2.1.4", - "hashPath": "sqlitepclraw.lib.e_sqlite3.2.1.4.nupkg.sha512" - }, - "SQLitePCLRaw.provider.e_sqlite3/2.1.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CSlb5dUp1FMIkez9Iv5EXzpeq7rHryVNqwJMWnpq87j9zWZexaEMdisDktMsnnrzKM6ahNrsTkjqNodTBPBxtQ==", - "path": "sqlitepclraw.provider.e_sqlite3/2.1.4", - "hashPath": "sqlitepclraw.provider.e_sqlite3.2.1.4.nupkg.sha512" - }, - "SqlSugar.IOC/2.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bRo+0DpzKE34rGCeIvyO9HVcX0jUZ3lQakum2EDjftCFwQPt7bI7JADKfuX9m0t3ApWKfofQKgamz6CTl7jNgg==", - "path": "sqlsugar.ioc/2.0.0", - "hashPath": "sqlsugar.ioc.2.0.0.nupkg.sha512" - }, - "SqlSugarCore/5.1.4.95": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7+xQXOZhe0dHplO6AJC3V9VAcO7XPhprrgpjMsrj+LUUJ/k1yVrbag8vHVFZyPyC3PfvHTcpJsepuTJMruUPEw==", - "path": "sqlsugarcore/5.1.4.95", - "hashPath": "sqlsugarcore.5.1.4.95.nupkg.sha512" - }, - "SqlSugarCore.Dm/1.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JFhgCGfCMvI0/u7WdsSzK4D7ptZl1RXP8Q7KwSGpBndgUXlfnnmCfwJaz4f89XxalRLLk1h/x0RAuUei98/CmA==", - "path": "sqlsugarcore.dm/1.2.0", - "hashPath": "sqlsugarcore.dm.1.2.0.nupkg.sha512" - }, - "SqlSugarCore.Kdbndp/7.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cHqgzvPz65v6pkO61oZM2pcPKY0KXvZo2EEAbZFHmyl5X7suxzpTOz/b6DvXjmRlcHxTRKGav2wwmStqTiUacg==", - "path": "sqlsugarcore.kdbndp/7.4.0", - "hashPath": "sqlsugarcore.kdbndp.7.4.0.nupkg.sha512" - }, - "StackExchange.Redis/2.7.33": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2kCX5fvhEE824a4Ab5Imyi8DRuGuTxyklXV01kegkRpsWJcPmO6+GAQ+HegKxvXAxlXZ8yaRspvWJ8t3mMClfQ==", - "path": "stackexchange.redis/2.7.33", - "hashPath": "stackexchange.redis.2.7.33.nupkg.sha512" - }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, - "System.Configuration.ConfigurationManager/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==", - "path": "system.configuration.configurationmanager/6.0.0", - "hashPath": "system.configuration.configurationmanager.6.0.0.nupkg.sha512" - }, - "System.Data.Common/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==", - "path": "system.data.common/4.3.0", - "hashPath": "system.data.common.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.DiagnosticSource/4.7.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-j81Lovt90PDAq8kLpaJfJKV/rWdWuEk6jfV+MBkee33vzYLEUsy4gXK8laa9V2nZlLM9VM9yA/OOQxxPEJKAMw==", - "path": "system.diagnostics.diagnosticsource/4.7.1", - "hashPath": "system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512" - }, - "System.Diagnostics.PerformanceCounter/6.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dDl7Gx3bmSrM2k2ZIm+ucEJnLloZRyvfQF1DvfvATcGF3jtaUBiPvChma+6ZcZzxWMirN3kCywkW7PILphXyMQ==", - "path": "system.diagnostics.performancecounter/6.0.1", - "hashPath": "system.diagnostics.performancecounter.6.0.1.nupkg.sha512" - }, - "System.DirectoryServices/6.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-935IbO7h5FDGYxeO3cbx/CuvBBuk/VI8sENlfmXlh1pupNOB3LAGzdYdPY8CawGJFP7KNrHK5eUlsFoz3F6cuA==", - "path": "system.directoryservices/6.0.1", - "hashPath": "system.directoryservices.6.0.1.nupkg.sha512" - }, - "System.DirectoryServices.Protocols/6.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ndUZlEkAMc1XzM0xGN++SsJrNhRkIHaKI8+te325vrUgoLT1ufWNI6KB8FFrL7NpRMHPrdxP99aF3fHbAPxW0A==", - "path": "system.directoryservices.protocols/6.0.1", - "hashPath": "system.directoryservices.protocols.6.0.1.nupkg.sha512" - }, - "System.Drawing.Common/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", - "path": "system.drawing.common/6.0.0", - "hashPath": "system.drawing.common.6.0.0.nupkg.sha512" - }, - "System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "path": "system.globalization/4.3.0", - "hashPath": "system.globalization.4.3.0.nupkg.sha512" - }, - "System.IdentityModel.Tokens.Jwt/6.8.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5tBCjAub2Bhd5qmcd0WhR5s354e4oLYa//kOWrkX+6/7ZbDDJjMTfwLSOiZ/MMpWdE4DWPLOfTLOq/juj9CKzA==", - "path": "system.identitymodel.tokens.jwt/6.8.0", - "hashPath": "system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512" - }, - "System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "path": "system.io/4.3.0", - "hashPath": "system.io.4.3.0.nupkg.sha512" - }, - "System.IO.Pipelines/5.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qEePWsaq9LoEEIqhbGe6D5J8c9IqQOUuTzzV6wn1POlfdLkJliZY3OlB0j0f17uMWlqZYjH7txj+2YbyrIA8Yg==", - "path": "system.io.pipelines/5.0.1", - "hashPath": "system.io.pipelines.5.0.1.nupkg.sha512" - }, - "System.Memory/4.5.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==", - "path": "system.memory/4.5.3", - "hashPath": "system.memory.4.5.3.nupkg.sha512" - }, - "System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "path": "system.reflection/4.3.0", - "hashPath": "system.reflection.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", - "path": "system.reflection.emit.ilgeneration/4.3.0", - "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", - "path": "system.reflection.emit.lightweight/4.3.0", - "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "path": "system.reflection.primitives/4.3.0", - "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "path": "system.resources.resourcemanager/4.3.0", - "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "path": "system.runtime/4.3.0", - "hashPath": "system.runtime.4.3.0.nupkg.sha512" - }, - "System.Runtime.Caching/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==", - "path": "system.runtime.caching/4.7.0", - "hashPath": "system.runtime.caching.4.7.0.nupkg.sha512" - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", - "path": "system.runtime.compilerservices.unsafe/6.0.0", - "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "path": "system.runtime.extensions/4.3.0", - "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "System.Runtime.Loader/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==", - "path": "system.runtime.loader/4.3.0", - "hashPath": "system.runtime.loader.4.3.0.nupkg.sha512" - }, - "System.Security.AccessControl/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", - "path": "system.security.accesscontrol/6.0.0", - "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.Cng/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", - "path": "system.security.cryptography.cng/4.5.0", - "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512" - }, - "System.Security.Cryptography.ProtectedData/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", - "path": "system.security.cryptography.protecteddata/6.0.0", - "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512" - }, - "System.Security.Permissions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", - "path": "system.security.permissions/6.0.0", - "hashPath": "system.security.permissions.6.0.0.nupkg.sha512" - }, - "System.Security.Principal.Windows/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", - "path": "system.security.principal.windows/4.7.0", - "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "path": "system.text.encoding/4.3.0", - "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding.CodePages/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==", - "path": "system.text.encoding.codepages/5.0.0", - "hashPath": "system.text.encoding.codepages.5.0.0.nupkg.sha512" - }, - "System.Text.Encodings.Web/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==", - "path": "system.text.encodings.web/7.0.0", - "hashPath": "system.text.encodings.web.7.0.0.nupkg.sha512" - }, - "System.Text.Json/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DaGSsVqKsn/ia6RG8frjwmJonfos0srquhw09TlT8KRw5I43E+4gs+/bZj4K0vShJ5H9imCuXupb4RmS+dBy3w==", - "path": "system.text.json/7.0.0", - "hashPath": "system.text.json.7.0.0.nupkg.sha512" - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", - "path": "system.text.regularexpressions/4.3.0", - "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "path": "system.threading.tasks/4.3.0", - "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" - }, - "System.Windows.Extensions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", - "path": "system.windows.extensions/6.0.0", - "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512" - }, - "HybirdFrameworkCore/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "HybirdFrameworkEntity/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/HybirdFrameworkRepository/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/HybirdFrameworkRepository/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs deleted file mode 100644 index ed92695..0000000 --- a/HybirdFrameworkRepository/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")] diff --git a/HybirdFrameworkRepository/obj/Debug/net6.0/HybirdFr.65D83B66.Up2Date b/HybirdFrameworkRepository/obj/Debug/net6.0/HybirdFr.65D83B66.Up2Date deleted file mode 100644 index e69de29..0000000 diff --git a/HybirdFrameworkRepository/obj/Debug/net6.0/HybirdFrameworkRepository.GlobalUsings.g.cs b/HybirdFrameworkRepository/obj/Debug/net6.0/HybirdFrameworkRepository.GlobalUsings.g.cs deleted file mode 100644 index 8578f3d..0000000 --- a/HybirdFrameworkRepository/obj/Debug/net6.0/HybirdFrameworkRepository.GlobalUsings.g.cs +++ /dev/null @@ -1,8 +0,0 @@ -// -global using global::System; -global using global::System.Collections.Generic; -global using global::System.IO; -global using global::System.Linq; -global using global::System.Net.Http; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/HybirdFrameworkRepository/obj/Debug/net6.0/HybirdFrameworkRepository.csproj.BuildWithSkipAnalyzers b/HybirdFrameworkRepository/obj/Debug/net6.0/HybirdFrameworkRepository.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29..0000000 diff --git a/HybirdFrameworkRepository/obj/Debug/net6.0/ref/HybirdFrameworkRepository.dll b/HybirdFrameworkRepository/obj/Debug/net6.0/ref/HybirdFrameworkRepository.dll deleted file mode 100644 index 6d7c9c8b0bca94386ba465df841cc51c95de086b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 26112 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 - - - - - - \ No newline at end of file diff --git a/HybirdFrameworkServices/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/HybirdFrameworkServices/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs deleted file mode 100644 index ed92695..0000000 --- a/HybirdFrameworkServices/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")] diff --git a/HybirdFrameworkServices/obj/Debug/net6.0/HybirdFr.0BD36F9B.Up2Date b/HybirdFrameworkServices/obj/Debug/net6.0/HybirdFr.0BD36F9B.Up2Date deleted file mode 100644 index e69de29..0000000 diff --git a/HybirdFrameworkServices/obj/Debug/net6.0/HybirdFrameworkServices.GlobalUsings.g.cs b/HybirdFrameworkServices/obj/Debug/net6.0/HybirdFrameworkServices.GlobalUsings.g.cs deleted file mode 100644 index 8578f3d..0000000 --- a/HybirdFrameworkServices/obj/Debug/net6.0/HybirdFrameworkServices.GlobalUsings.g.cs +++ /dev/null @@ -1,8 +0,0 @@ -// -global using global::System; -global using global::System.Collections.Generic; -global using global::System.IO; -global using global::System.Linq; -global using global::System.Net.Http; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/HybirdFrameworkServices/obj/Debug/net6.0/HybirdFrameworkServices.csproj.BuildWithSkipAnalyzers b/HybirdFrameworkServices/obj/Debug/net6.0/HybirdFrameworkServices.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29..0000000 diff --git a/HybirdFrameworkServices/obj/HybirdFrameworkServices.csproj.nuget.g.targets b/HybirdFrameworkServices/obj/HybirdFrameworkServices.csproj.nuget.g.targets deleted file mode 100644 index 6a3c0bd..0000000 --- a/HybirdFrameworkServices/obj/HybirdFrameworkServices.csproj.nuget.g.targets +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/HybirdFrameworkRepository/BaseRepository.cs b/Repository/BaseRepository.cs similarity index 99% rename from HybirdFrameworkRepository/BaseRepository.cs rename to Repository/BaseRepository.cs index 4409ae4..443350a 100644 --- a/HybirdFrameworkRepository/BaseRepository.cs +++ b/Repository/BaseRepository.cs @@ -1,9 +1,9 @@ using System.Linq.Expressions; using SqlSugar; -using HybirdFrameworkEntity.DbModel; -using HybirdFrameworkEntity.Common; +using Entity.DbModel; +using Entity.Common; -namespace HybirdFrameworkRepository +namespace Repository { public abstract class BaseRepository where T : class, new() { diff --git a/HybirdFrameworkRepository/HybirdFrameworkRepository.csproj b/Repository/Repository.csproj similarity index 84% rename from HybirdFrameworkRepository/HybirdFrameworkRepository.csproj rename to Repository/Repository.csproj index c7d82a5..0a27dc0 100644 --- a/HybirdFrameworkRepository/HybirdFrameworkRepository.csproj +++ b/Repository/Repository.csproj @@ -13,7 +13,7 @@ - + diff --git a/HybirdFrameworkRepository/SqlSugarExtensions.cs b/Repository/SqlSugarExtensions.cs similarity index 92% rename from HybirdFrameworkRepository/SqlSugarExtensions.cs rename to Repository/SqlSugarExtensions.cs index 206c94d..57ace95 100644 --- a/HybirdFrameworkRepository/SqlSugarExtensions.cs +++ b/Repository/SqlSugarExtensions.cs @@ -5,7 +5,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace HybirdFrameworkRepository +namespace Repository { internal static class SqlSugarExtensions { diff --git a/HybirdFrameworkRepository/System/Class1.cs b/Repository/System/Class1.cs similarity index 79% rename from HybirdFrameworkRepository/System/Class1.cs rename to Repository/System/Class1.cs index c5b014f..b0002e1 100644 --- a/HybirdFrameworkRepository/System/Class1.cs +++ b/Repository/System/Class1.cs @@ -4,7 +4,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace HybirdFrameworkRepository.System +namespace Repository.System { internal class Class1 { diff --git a/HybirdFrameworkRepository/System/SysBatteryReplaceLogRepository.cs b/Repository/System/SysBatteryReplaceLogRepository.cs similarity index 80% rename from HybirdFrameworkRepository/System/SysBatteryReplaceLogRepository.cs rename to Repository/System/SysBatteryReplaceLogRepository.cs index b5d82de..61d57a5 100644 --- a/HybirdFrameworkRepository/System/SysBatteryReplaceLogRepository.cs +++ b/Repository/System/SysBatteryReplaceLogRepository.cs @@ -1,4 +1,4 @@ -using HybirdFrameworkEntity.DbModel; +using Entity.DbModel; using SqlSugar; using System; using System.Collections.Generic; @@ -6,7 +6,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace HybirdFrameworkRepository.System +namespace Repository.System { public class SysBatteryReplaceLogRepository : BaseRepository { diff --git a/HybirdFrameworkRepository/System/SysDataSourceRepository.cs b/Repository/System/SysDataSourceRepository.cs similarity index 71% rename from HybirdFrameworkRepository/System/SysDataSourceRepository.cs rename to Repository/System/SysDataSourceRepository.cs index 87af5f7..81c00b1 100644 --- a/HybirdFrameworkRepository/System/SysDataSourceRepository.cs +++ b/Repository/System/SysDataSourceRepository.cs @@ -1,7 +1,7 @@ -using HybirdFrameworkEntity.DbModel; +using Entity.DbModel; using SqlSugar; -namespace HybirdFrameworkRepository.System +namespace Repository.System { public class SysDataSourceRepository : BaseRepository { diff --git a/HybirdFrameworkRepository/System/SysDicDataRepository.cs b/Repository/System/SysDicDataRepository.cs similarity index 70% rename from HybirdFrameworkRepository/System/SysDicDataRepository.cs rename to Repository/System/SysDicDataRepository.cs index f663ba5..c2e3555 100644 --- a/HybirdFrameworkRepository/System/SysDicDataRepository.cs +++ b/Repository/System/SysDicDataRepository.cs @@ -1,7 +1,7 @@ -using HybirdFrameworkEntity.DbModel; +using Entity.DbModel; using SqlSugar; -namespace HybirdFrameworkRepository.System +namespace Repository.System { public class sysDicDataRepository : BaseRepository { diff --git a/HybirdFrameworkRepository/System/SysDicTypeRepository.cs b/Repository/System/SysDicTypeRepository.cs similarity index 70% rename from HybirdFrameworkRepository/System/SysDicTypeRepository.cs rename to Repository/System/SysDicTypeRepository.cs index a4a1ee5..c695b58 100644 --- a/HybirdFrameworkRepository/System/SysDicTypeRepository.cs +++ b/Repository/System/SysDicTypeRepository.cs @@ -1,7 +1,7 @@ -using HybirdFrameworkEntity.DbModel; +using Entity.DbModel; using SqlSugar; -namespace HybirdFrameworkRepository.System +namespace Repository.System { public class sysDicTypeRepository : BaseRepository { diff --git a/HybirdFrameworkRepository/System/SysMenuRepository.cs b/Repository/System/SysMenuRepository.cs similarity index 69% rename from HybirdFrameworkRepository/System/SysMenuRepository.cs rename to Repository/System/SysMenuRepository.cs index f2be8ce..84f8674 100644 --- a/HybirdFrameworkRepository/System/SysMenuRepository.cs +++ b/Repository/System/SysMenuRepository.cs @@ -1,7 +1,7 @@ -using HybirdFrameworkEntity.DbModel; +using Entity.DbModel; using SqlSugar; -namespace HybirdFrameworkRepository.System +namespace Repository.System { public class SysMenuRepository : BaseRepository { diff --git a/HybirdFrameworkRepository/System/SysMessageRepository.cs b/Repository/System/SysMessageRepository.cs similarity index 70% rename from HybirdFrameworkRepository/System/SysMessageRepository.cs rename to Repository/System/SysMessageRepository.cs index 705ad7f..20f43d2 100644 --- a/HybirdFrameworkRepository/System/SysMessageRepository.cs +++ b/Repository/System/SysMessageRepository.cs @@ -1,8 +1,8 @@ -using HybirdFrameworkEntity.DbModel; +using Entity.DbModel; using SqlSugar; -namespace HybirdFrameworkRepository.System +namespace Repository.System { public class sysMessageRepository : BaseRepository { diff --git a/HybirdFrameworkRepository/System/SysRoleMenuRepository.cs b/Repository/System/SysRoleMenuRepository.cs similarity index 71% rename from HybirdFrameworkRepository/System/SysRoleMenuRepository.cs rename to Repository/System/SysRoleMenuRepository.cs index 82e8dff..38c5e3a 100644 --- a/HybirdFrameworkRepository/System/SysRoleMenuRepository.cs +++ b/Repository/System/SysRoleMenuRepository.cs @@ -1,8 +1,8 @@ -using HybirdFrameworkEntity.DbModel; +using Entity.DbModel; using SqlSugar; -namespace HybirdFrameworkRepository.System +namespace Repository.System { public class sysRoleMenuRepository : BaseRepository { diff --git a/HybirdFrameworkRepository/System/SysRoleRepository.cs b/Repository/System/SysRoleRepository.cs similarity index 69% rename from HybirdFrameworkRepository/System/SysRoleRepository.cs rename to Repository/System/SysRoleRepository.cs index e13cc6c..c79ad5c 100644 --- a/HybirdFrameworkRepository/System/SysRoleRepository.cs +++ b/Repository/System/SysRoleRepository.cs @@ -1,7 +1,7 @@ -using HybirdFrameworkEntity.DbModel; +using Entity.DbModel; using SqlSugar; -namespace HybirdFrameworkRepository.System +namespace Repository.System { public class sysRoleRepository : BaseRepository { diff --git a/HybirdFrameworkRepository/System/SysUserRepository.cs b/Repository/System/SysUserRepository.cs similarity index 76% rename from HybirdFrameworkRepository/System/SysUserRepository.cs rename to Repository/System/SysUserRepository.cs index 9a9c0e6..6a4f5b4 100644 --- a/HybirdFrameworkRepository/System/SysUserRepository.cs +++ b/Repository/System/SysUserRepository.cs @@ -1,9 +1,9 @@ using HybirdFrameworkCore.Autofac.Attribute; -using HybirdFrameworkEntity.DbModel; +using Entity.DbModel; using SqlSugar; -namespace HybirdFrameworkRepository.System +namespace Repository.System { [Scope("SingleInstance")] public class SysUserRepository : BaseRepository diff --git a/HybirdFrameworkRepository/System/SysUserRoleRepository.cs b/Repository/System/SysUserRoleRepository.cs similarity index 71% rename from HybirdFrameworkRepository/System/SysUserRoleRepository.cs rename to Repository/System/SysUserRoleRepository.cs index cab95dc..0e291b6 100644 --- a/HybirdFrameworkRepository/System/SysUserRoleRepository.cs +++ b/Repository/System/SysUserRoleRepository.cs @@ -1,8 +1,8 @@ -using HybirdFrameworkEntity.DbModel; +using Entity.DbModel; using SqlSugar; -namespace HybirdFrameworkRepository.System +namespace Repository.System { public class sysUserRoleRepository : BaseRepository { diff --git a/HybirdFrameworkRepository/UnitOfWork/Class1.cs b/Repository/UnitOfWork/Class1.cs similarity index 77% rename from HybirdFrameworkRepository/UnitOfWork/Class1.cs rename to Repository/UnitOfWork/Class1.cs index d1f5cfa..814519e 100644 --- a/HybirdFrameworkRepository/UnitOfWork/Class1.cs +++ b/Repository/UnitOfWork/Class1.cs @@ -4,7 +4,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace HybirdFrameworkRepository.UnitOfWork +namespace Repository.UnitOfWork { internal class Class1 { diff --git a/HybirdFrameworkRepository/UnitOfWork/UnitOfWork.cs b/Repository/UnitOfWork/UnitOfWork.cs similarity index 95% rename from HybirdFrameworkRepository/UnitOfWork/UnitOfWork.cs rename to Repository/UnitOfWork/UnitOfWork.cs index 40a98b4..a8ceb6d 100644 --- a/HybirdFrameworkRepository/UnitOfWork/UnitOfWork.cs +++ b/Repository/UnitOfWork/UnitOfWork.cs @@ -1,7 +1,7 @@ using HybirdFrameworkCore.Autofac.Attribute; using SqlSugar; -namespace HybirdFrameworkRepository.UnitOfWork +namespace Repository.UnitOfWork { [Scope("SingleInstance")] public class UnitOfWork diff --git a/HybirdFrameworkServices/BaseServices.cs b/Service/BaseServices.cs similarity index 99% rename from HybirdFrameworkServices/BaseServices.cs rename to Service/BaseServices.cs index 5cace70..9a4b8bb 100644 --- a/HybirdFrameworkServices/BaseServices.cs +++ b/Service/BaseServices.cs @@ -1,5 +1,5 @@ -using HybirdFrameworkEntity.Common; -using HybirdFrameworkRepository; +using Entity.Common; +using Repository; using SqlSugar; using System; using System.Collections.Generic; @@ -8,7 +8,7 @@ using System.Linq.Expressions; using System.Text; using System.Threading.Tasks; -namespace HybirdFrameworkServices +namespace Service { public class BaseServices where T : class, new() { diff --git a/HybirdFrameworkServices/Charger/Client/ChargerClient.cs b/Service/Charger/Client/ChargerClient.cs similarity index 85% rename from HybirdFrameworkServices/Charger/Client/ChargerClient.cs rename to Service/Charger/Client/ChargerClient.cs index 0de0f3d..dccdb22 100644 --- a/HybirdFrameworkServices/Charger/Client/ChargerClient.cs +++ b/Service/Charger/Client/ChargerClient.cs @@ -1,10 +1,10 @@ using HybirdFrameworkCore.Autofac.Attribute; using HybirdFrameworkDriver.Session; using HybirdFrameworkDriver.TcpClient; -using HybirdFrameworkServices.Charger.Codec; -using HybirdFrameworkServices.Charger.Handler; +using Service.Charger.Codec; +using Service.Charger.Handler; -namespace HybirdFrameworkServices.Charger.Client; +namespace Service.Charger.Client; /// /// 示例程序 diff --git a/HybirdFrameworkServices/Charger/Client/ChargerServer.cs b/Service/Charger/Client/ChargerServer.cs similarity index 62% rename from HybirdFrameworkServices/Charger/Client/ChargerServer.cs rename to Service/Charger/Client/ChargerServer.cs index 66bf615..086b8ad 100644 --- a/HybirdFrameworkServices/Charger/Client/ChargerServer.cs +++ b/Service/Charger/Client/ChargerServer.cs @@ -1,9 +1,9 @@ using HybirdFrameworkCore.Autofac.Attribute; using HybirdFrameworkDriver.TcpServer; -using HybirdFrameworkServices.Charger.Codec; -using HybirdFrameworkServices.Charger.Handler; +using Service.Charger.Codec; +using Service.Charger.Handler; -namespace HybirdFrameworkServices.Charger.Client; +namespace Service.Charger.Client; /// /// 示例程序 diff --git a/HybirdFrameworkServices/Charger/Client/ClientMgr.cs b/Service/Charger/Client/ClientMgr.cs similarity index 88% rename from HybirdFrameworkServices/Charger/Client/ClientMgr.cs rename to Service/Charger/Client/ClientMgr.cs index dcd493f..427eb0e 100644 --- a/HybirdFrameworkServices/Charger/Client/ClientMgr.cs +++ b/Service/Charger/Client/ClientMgr.cs @@ -2,9 +2,9 @@ using Autofac; using HybirdFrameworkCore.Autofac; using HybirdFrameworkCore.Autofac.Attribute; -using HybirdFrameworkServices.Charger.Msg.Host.Req; +using Service.Charger.Msg.Host.Req; -namespace HybirdFrameworkServices.Charger.Client; +namespace Service.Charger.Client; /// /// 示例程序 diff --git a/HybirdFrameworkServices/Charger/Codec/Decoder.cs b/Service/Charger/Codec/Decoder.cs similarity index 73% rename from HybirdFrameworkServices/Charger/Codec/Decoder.cs rename to Service/Charger/Codec/Decoder.cs index bb230cc..9f583d5 100644 --- a/HybirdFrameworkServices/Charger/Codec/Decoder.cs +++ b/Service/Charger/Codec/Decoder.cs @@ -1,9 +1,9 @@ using DotNetty.Buffers; using DotNetty.Codecs; using DotNetty.Transport.Channels; -using HybirdFrameworkServices.Charger.Msg.Charger.Req; +using Service.Charger.Msg.Charger.Req; -namespace HybirdFrameworkServices.Charger.Codec; +namespace Service.Charger.Codec; public class Decoder : ByteToMessageDecoder { diff --git a/HybirdFrameworkServices/Charger/Codec/Encoder.cs b/Service/Charger/Codec/Encoder.cs similarity index 86% rename from HybirdFrameworkServices/Charger/Codec/Encoder.cs rename to Service/Charger/Codec/Encoder.cs index 9aa7817..9b420ac 100644 --- a/HybirdFrameworkServices/Charger/Codec/Encoder.cs +++ b/Service/Charger/Codec/Encoder.cs @@ -3,7 +3,7 @@ using DotNetty.Codecs; using DotNetty.Transport.Channels; using HybirdFrameworkDriver.Common; -namespace HybirdFrameworkServices.Charger.Codec; +namespace Service.Charger.Codec; public class Encoder : MessageToByteEncoder { diff --git a/HybirdFrameworkServices/Charger/Common/ChargerConst.cs b/Service/Charger/Common/ChargerConst.cs similarity index 64% rename from HybirdFrameworkServices/Charger/Common/ChargerConst.cs rename to Service/Charger/Common/ChargerConst.cs index 2592e03..f35ce7e 100644 --- a/HybirdFrameworkServices/Charger/Common/ChargerConst.cs +++ b/Service/Charger/Common/ChargerConst.cs @@ -1,4 +1,4 @@ -namespace HybirdFrameworkServices.Charger.Common; +namespace Service.Charger.Common; public class ChargerConst { diff --git a/HybirdFrameworkServices/Charger/Handler/AuthResHandler.cs b/Service/Charger/Handler/AuthResHandler.cs similarity index 89% rename from HybirdFrameworkServices/Charger/Handler/AuthResHandler.cs rename to Service/Charger/Handler/AuthResHandler.cs index a83b8ac..23c702c 100644 --- a/HybirdFrameworkServices/Charger/Handler/AuthResHandler.cs +++ b/Service/Charger/Handler/AuthResHandler.cs @@ -1,10 +1,10 @@ using DotNetty.Transport.Channels; using HybirdFrameworkCore.Autofac.Attribute; using HybirdFrameworkDriver.Session; -using HybirdFrameworkServices.Charger.Msg.Charger.Resp; using log4net; +using Service.Charger.Msg.Charger.Resp; -namespace HybirdFrameworkServices.Charger.Handler +namespace Service.Charger.Handler { /// /// 接收到鉴权帧 diff --git a/HybirdFrameworkServices/Charger/Handler/IBaseHandler.cs b/Service/Charger/Handler/IBaseHandler.cs similarity index 63% rename from HybirdFrameworkServices/Charger/Handler/IBaseHandler.cs rename to Service/Charger/Handler/IBaseHandler.cs index 69f8216..aa755cc 100644 --- a/HybirdFrameworkServices/Charger/Handler/IBaseHandler.cs +++ b/Service/Charger/Handler/IBaseHandler.cs @@ -1,6 +1,6 @@ using DotNetty.Transport.Channels; -namespace HybirdFrameworkServices.Charger.Handler; +namespace Service.Charger.Handler; public interface IBaseHandler : IChannelHandler { diff --git a/HybirdFrameworkServices/Charger/Handler/LoginHandler.cs b/Service/Charger/Handler/LoginHandler.cs similarity index 91% rename from HybirdFrameworkServices/Charger/Handler/LoginHandler.cs rename to Service/Charger/Handler/LoginHandler.cs index 3b7e227..1ba63b5 100644 --- a/HybirdFrameworkServices/Charger/Handler/LoginHandler.cs +++ b/Service/Charger/Handler/LoginHandler.cs @@ -1,11 +1,11 @@ using DotNetty.Transport.Channels; using HybirdFrameworkCore.Autofac.Attribute; using HybirdFrameworkDriver.Session; -using HybirdFrameworkServices.Charger.Msg.Charger.Req; -using HybirdFrameworkServices.Charger.Msg.Host.Resp; using log4net; +using Service.Charger.Msg.Charger.Req; +using Service.Charger.Msg.Host.Resp; -namespace HybirdFrameworkServices.Charger.Handler +namespace Service.Charger.Handler { /// /// 3.3.3 充放电机登陆签到 diff --git a/HybirdFrameworkServices/Charger/Msg/APCI.cs b/Service/Charger/Msg/APCI.cs similarity index 92% rename from HybirdFrameworkServices/Charger/Msg/APCI.cs rename to Service/Charger/Msg/APCI.cs index 514d299..9aeb697 100644 --- a/HybirdFrameworkServices/Charger/Msg/APCI.cs +++ b/Service/Charger/Msg/APCI.cs @@ -1,7 +1,7 @@ using HybirdFrameworkDriver.Common; -using HybirdFrameworkServices.Charger.Common; +using Service.Charger.Common; -namespace HybirdFrameworkServices.Charger.Msg +namespace Service.Charger.Msg { public abstract class APCI : IToBytes { diff --git a/HybirdFrameworkServices/Charger/Msg/ASDU.cs b/Service/Charger/Msg/ASDU.cs similarity index 96% rename from HybirdFrameworkServices/Charger/Msg/ASDU.cs rename to Service/Charger/Msg/ASDU.cs index 55dfae0..6b9a387 100644 --- a/HybirdFrameworkServices/Charger/Msg/ASDU.cs +++ b/Service/Charger/Msg/ASDU.cs @@ -1,8 +1,8 @@ using DotNetty.Buffers; using HybirdFrameworkCore.Utils; -using HybirdFrameworkServices.Charger.Common; +using Service.Charger.Common; -namespace HybirdFrameworkServices.Charger.Msg +namespace Service.Charger.Msg { public class ASDU : APCI { diff --git a/HybirdFrameworkServices/Charger/Msg/Charger/Req/Login.cs b/Service/Charger/Msg/Charger/Req/Login.cs similarity index 97% rename from HybirdFrameworkServices/Charger/Msg/Charger/Req/Login.cs rename to Service/Charger/Msg/Charger/Req/Login.cs index d3ddbec..bec3a5d 100644 --- a/HybirdFrameworkServices/Charger/Msg/Charger/Req/Login.cs +++ b/Service/Charger/Msg/Charger/Req/Login.cs @@ -1,6 +1,6 @@ using HybirdFrameworkCore.Autofac.Attribute; -namespace HybirdFrameworkServices.Charger.Msg.Charger.Req +namespace Service.Charger.Msg.Charger.Req { /// /// 3.3.3 充放电机登陆签到 diff --git a/HybirdFrameworkServices/Charger/Msg/Charger/Resp/AuthRes.cs b/Service/Charger/Msg/Charger/Resp/AuthRes.cs similarity index 92% rename from HybirdFrameworkServices/Charger/Msg/Charger/Resp/AuthRes.cs rename to Service/Charger/Msg/Charger/Resp/AuthRes.cs index f8ef764..ba23bc8 100644 --- a/HybirdFrameworkServices/Charger/Msg/Charger/Resp/AuthRes.cs +++ b/Service/Charger/Msg/Charger/Resp/AuthRes.cs @@ -1,6 +1,6 @@ using HybirdFrameworkCore.Autofac.Attribute; -namespace HybirdFrameworkServices.Charger.Msg.Charger.Resp +namespace Service.Charger.Msg.Charger.Resp { /// /// 3.3.2 充放电机应答鉴权认证 diff --git a/HybirdFrameworkServices/Charger/Msg/Host/Req/Auth.cs b/Service/Charger/Msg/Host/Req/Auth.cs similarity index 96% rename from HybirdFrameworkServices/Charger/Msg/Host/Req/Auth.cs rename to Service/Charger/Msg/Host/Req/Auth.cs index b522b8f..9dda312 100644 --- a/HybirdFrameworkServices/Charger/Msg/Host/Req/Auth.cs +++ b/Service/Charger/Msg/Host/Req/Auth.cs @@ -1,6 +1,6 @@ using HybirdFrameworkCore.Autofac.Attribute; -namespace HybirdFrameworkServices.Charger.Msg.Host.Req +namespace Service.Charger.Msg.Host.Req { /// /// 3.3.1 监控平台鉴权认证 diff --git a/HybirdFrameworkServices/Charger/Msg/Host/Resp/LogSignMessage.cs b/Service/Charger/Msg/Host/Resp/LogSignMessage.cs similarity index 97% rename from HybirdFrameworkServices/Charger/Msg/Host/Resp/LogSignMessage.cs rename to Service/Charger/Msg/Host/Resp/LogSignMessage.cs index 5fe2b00..b29cfe4 100644 --- a/HybirdFrameworkServices/Charger/Msg/Host/Resp/LogSignMessage.cs +++ b/Service/Charger/Msg/Host/Resp/LogSignMessage.cs @@ -1,6 +1,6 @@ using HybirdFrameworkCore.Autofac.Attribute; -namespace HybirdFrameworkServices.Charger.Msg.Host.Resp +namespace Service.Charger.Msg.Host.Resp { /// /// 3.3.4 监控平台应答充电设备登录签到报文 diff --git a/HybirdFrameworkServices/HybirdFrameworkServices.csproj b/Service/Service.csproj similarity index 84% rename from HybirdFrameworkServices/HybirdFrameworkServices.csproj rename to Service/Service.csproj index b6d54f4..38d4a93 100644 --- a/HybirdFrameworkServices/HybirdFrameworkServices.csproj +++ b/Service/Service.csproj @@ -20,8 +20,8 @@ - - + + diff --git a/HybirdFrameworkServices/System/SysBatteryReplaceLogServices.cs b/Service/System/SysBatteryReplaceLogServices.cs similarity index 82% rename from HybirdFrameworkServices/System/SysBatteryReplaceLogServices.cs rename to Service/System/SysBatteryReplaceLogServices.cs index 8fc54a1..dbfdaf1 100644 --- a/HybirdFrameworkServices/System/SysBatteryReplaceLogServices.cs +++ b/Service/System/SysBatteryReplaceLogServices.cs @@ -1,10 +1,10 @@ using HybirdFrameworkCore.Autofac.Attribute; -using HybirdFrameworkEntity.DbModel; -using HybirdFrameworkRepository.System; -using HybirdFrameworkRepository.UnitOfWork; +using Entity.DbModel; +using Repository.System; +using Repository.UnitOfWork; -namespace HybirdFrameworkServices.System +namespace Service.System { [Scope("SingleInstance")] public class SysBatteryReplaceLogServices : BaseServices diff --git a/HybirdFrameworkServices/System/SysDataSourceServices.cs b/Service/System/SysDataSourceServices.cs similarity index 74% rename from HybirdFrameworkServices/System/SysDataSourceServices.cs rename to Service/System/SysDataSourceServices.cs index bebbf7f..660052a 100644 --- a/HybirdFrameworkServices/System/SysDataSourceServices.cs +++ b/Service/System/SysDataSourceServices.cs @@ -1,9 +1,9 @@ using HybirdFrameworkCore.Autofac.Attribute; -using HybirdFrameworkEntity.DbModel; -using HybirdFrameworkRepository.System; -using HybirdFrameworkRepository.UnitOfWork; +using Entity.DbModel; +using Repository.System; +using Repository.UnitOfWork; -namespace HybirdFrameworkServices.System +namespace Service.System { [Scope("SingleInstance")] public class SysDataSourceServices : BaseServices diff --git a/HybirdFrameworkServices/System/SysDicDataServices.cs b/Service/System/SysDicDataServices.cs similarity index 70% rename from HybirdFrameworkServices/System/SysDicDataServices.cs rename to Service/System/SysDicDataServices.cs index 7871ebd..3b20ab0 100644 --- a/HybirdFrameworkServices/System/SysDicDataServices.cs +++ b/Service/System/SysDicDataServices.cs @@ -1,8 +1,8 @@ -using HybirdFrameworkEntity.DbModel; -using HybirdFrameworkRepository.System; -using HybirdFrameworkRepository.UnitOfWork; +using Entity.DbModel; +using Repository.System; +using Repository.UnitOfWork; -namespace HybirdFrameworkServices.System +namespace Service.System { public class sysDicDataServices : BaseServices { diff --git a/HybirdFrameworkServices/System/SysDicTypeServices.cs b/Service/System/SysDicTypeServices.cs similarity index 70% rename from HybirdFrameworkServices/System/SysDicTypeServices.cs rename to Service/System/SysDicTypeServices.cs index 6b5f83f..487796d 100644 --- a/HybirdFrameworkServices/System/SysDicTypeServices.cs +++ b/Service/System/SysDicTypeServices.cs @@ -1,8 +1,8 @@ -using HybirdFrameworkEntity.DbModel; -using HybirdFrameworkRepository.System; -using HybirdFrameworkRepository.UnitOfWork; +using Entity.DbModel; +using Repository.System; +using Repository.UnitOfWork; -namespace HybirdFrameworkServices.System +namespace Service.System { public class sysDicTypeServices : BaseServices { diff --git a/HybirdFrameworkServices/System/SysMenuServices.cs b/Service/System/SysMenuServices.cs similarity index 68% rename from HybirdFrameworkServices/System/SysMenuServices.cs rename to Service/System/SysMenuServices.cs index 821c098..71f7a3e 100644 --- a/HybirdFrameworkServices/System/SysMenuServices.cs +++ b/Service/System/SysMenuServices.cs @@ -1,8 +1,8 @@ -using HybirdFrameworkEntity.DbModel; -using HybirdFrameworkRepository.System; -using HybirdFrameworkRepository.UnitOfWork; +using Entity.DbModel; +using Repository.System; +using Repository.UnitOfWork; -namespace HybirdFrameworkServices.System +namespace Service.System { public class SysMenuServices : BaseServices { diff --git a/HybirdFrameworkServices/System/SysMessageServices.cs b/Service/System/SysMessageServices.cs similarity index 70% rename from HybirdFrameworkServices/System/SysMessageServices.cs rename to Service/System/SysMessageServices.cs index c19e16e..22b1f96 100644 --- a/HybirdFrameworkServices/System/SysMessageServices.cs +++ b/Service/System/SysMessageServices.cs @@ -1,8 +1,8 @@ -using HybirdFrameworkEntity.DbModel; -using HybirdFrameworkRepository.System; -using HybirdFrameworkRepository.UnitOfWork; +using Entity.DbModel; +using Repository.System; +using Repository.UnitOfWork; -namespace HybirdFrameworkServices.System +namespace Service.System { public class sysMessageServices : BaseServices { diff --git a/HybirdFrameworkServices/System/SysRoleMenuServices.cs b/Service/System/SysRoleMenuServices.cs similarity index 70% rename from HybirdFrameworkServices/System/SysRoleMenuServices.cs rename to Service/System/SysRoleMenuServices.cs index 2b49441..56253d2 100644 --- a/HybirdFrameworkServices/System/SysRoleMenuServices.cs +++ b/Service/System/SysRoleMenuServices.cs @@ -1,8 +1,8 @@ -using HybirdFrameworkEntity.DbModel; -using HybirdFrameworkRepository.System; -using HybirdFrameworkRepository.UnitOfWork; +using Entity.DbModel; +using Repository.System; +using Repository.UnitOfWork; -namespace HybirdFrameworkServices.System +namespace Service.System { public class sysRoleMenuServices : BaseServices { diff --git a/HybirdFrameworkServices/System/SysRoleServices.cs b/Service/System/SysRoleServices.cs similarity index 69% rename from HybirdFrameworkServices/System/SysRoleServices.cs rename to Service/System/SysRoleServices.cs index 0853f1d..6b4e160 100644 --- a/HybirdFrameworkServices/System/SysRoleServices.cs +++ b/Service/System/SysRoleServices.cs @@ -1,8 +1,8 @@ -using HybirdFrameworkEntity.DbModel; -using HybirdFrameworkRepository.System; -using HybirdFrameworkRepository.UnitOfWork; +using Entity.DbModel; +using Repository.System; +using Repository.UnitOfWork; -namespace HybirdFrameworkServices.System +namespace Service.System { public class sysRoleServices : BaseServices { diff --git a/HybirdFrameworkServices/System/SysUserRoleServices.cs b/Service/System/SysUserRoleServices.cs similarity index 70% rename from HybirdFrameworkServices/System/SysUserRoleServices.cs rename to Service/System/SysUserRoleServices.cs index 0d99cfb..46df5e4 100644 --- a/HybirdFrameworkServices/System/SysUserRoleServices.cs +++ b/Service/System/SysUserRoleServices.cs @@ -1,8 +1,8 @@ -using HybirdFrameworkEntity.DbModel; -using HybirdFrameworkRepository.System; -using HybirdFrameworkRepository.UnitOfWork; +using Entity.DbModel; +using Repository.System; +using Repository.UnitOfWork; -namespace HybirdFrameworkServices.System +namespace Service.System { public class sysUserRoleServices : BaseServices { diff --git a/HybirdFrameworkServices/System/SysUserServices.cs b/Service/System/SysUserServices.cs similarity index 73% rename from HybirdFrameworkServices/System/SysUserServices.cs rename to Service/System/SysUserServices.cs index 8663fb1..e3534a6 100644 --- a/HybirdFrameworkServices/System/SysUserServices.cs +++ b/Service/System/SysUserServices.cs @@ -1,9 +1,9 @@ using HybirdFrameworkCore.Autofac.Attribute; -using HybirdFrameworkEntity.DbModel; -using HybirdFrameworkRepository.System; -using HybirdFrameworkRepository.UnitOfWork; +using Entity.DbModel; +using Repository.System; +using Repository.UnitOfWork; -namespace HybirdFrameworkServices.System +namespace Service.System { [Scope("SingleInstance")] public class SysUserServices : BaseServices diff --git a/WebStarter/Controllers/WeatherForecastController.cs b/WebStarter/Controllers/WeatherForecastController.cs index 6baf012..2a1a23e 100644 --- a/WebStarter/Controllers/WeatherForecastController.cs +++ b/WebStarter/Controllers/WeatherForecastController.cs @@ -1,6 +1,6 @@ -using HybirdFrameworkServices.System; +using Entity.DbModel; using Microsoft.AspNetCore.Mvc; -using HybirdFrameworkEntity.DbModel; +using Service.System; namespace WebStarter.Controllers { diff --git a/WebStarter/WebStarter.csproj b/WebStarter/WebStarter.csproj index fff4ed2..d1e55c8 100644 --- a/WebStarter/WebStarter.csproj +++ b/WebStarter/WebStarter.csproj @@ -16,8 +16,8 @@ - - + + diff --git a/WinFormStarter/WinFormStarter.csproj b/WinFormStarter/WinFormStarter.csproj index 1cfba00..d1217c7 100644 --- a/WinFormStarter/WinFormStarter.csproj +++ b/WinFormStarter/WinFormStarter.csproj @@ -17,9 +17,9 @@ - - - + + + diff --git a/WpfStarter/MainWindow.xaml.cs b/WpfStarter/MainWindow.xaml.cs index 3a2ad63..06f4cf1 100644 --- a/WpfStarter/MainWindow.xaml.cs +++ b/WpfStarter/MainWindow.xaml.cs @@ -2,8 +2,8 @@ using System.Windows; using Autofac; using HybirdFrameworkCore.Autofac; -using HybirdFrameworkEntity.DbModel; -using HybirdFrameworkServices.System; +using Entity.DbModel; +using Service.System; using log4net; namespace WpfStarter diff --git a/WpfStarter/WpfStarter.csproj b/WpfStarter/WpfStarter.csproj index 4f1a594..3f8d2be 100644 --- a/WpfStarter/WpfStarter.csproj +++ b/WpfStarter/WpfStarter.csproj @@ -27,9 +27,9 @@ - - - + + + diff --git a/hybirdMyFrame.sln b/hybirdMyFrame.sln index 9542d02..a044641 100644 --- a/hybirdMyFrame.sln +++ b/hybirdMyFrame.sln @@ -3,27 +3,17 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.9.34701.34 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "HybirdFramework.Core", "HybirdFramework.Core", "{0E784680-8280-4C47-8D2D-6405AC892164}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "HybirdFramework.Entity", "HybirdFramework.Entity", "{6203689E-8261-4814-BFC2-013188AED6A1}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "HybirdFramework.Repository", "HybirdFramework.Repository", "{348F9459-2A59-47EB-B801-0CF907DFD8EC}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "HybirdFramework.Services", "HybirdFramework.Services", "{5F67ED42-6437-4FC6-86D2-0495DE990BC4}" -EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WebStarter", "WebStarter\WebStarter.csproj", "{61B1609B-97EE-48E4-ADA6-4F1A832B8D33}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HybirdFrameworkCore", "HybirdFrameworkCore\HybirdFrameworkCore.csproj", "{5F1D9B39-E50F-4B7C-B1C6-E60B64C4CA1A}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HybirdFrameworkRepository", "HybirdFrameworkRepository\HybirdFrameworkRepository.csproj", "{01D2CC15-F1FD-4E22-845A-2D2473662860}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Repository", "Repository\Repository.csproj", "{01D2CC15-F1FD-4E22-845A-2D2473662860}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HybirdFrameworkServices", "HybirdFrameworkServices\HybirdFrameworkServices.csproj", "{A6C2AA7F-B2A2-4AE0-AE84-49BE36B990EC}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Service", "Service\Service.csproj", "{A6C2AA7F-B2A2-4AE0-AE84-49BE36B990EC}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WinFormStarter", "WinFormStarter\WinFormStarter.csproj", "{A6757DAD-EF5A-41FD-9323-F3FCF05ED777}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HybirdFrameworkEntity", "HybirdFrameworkEntity\HybirdFrameworkEntity.csproj", "{C2380814-15D4-491D-ADF2-ADC68617C3FA}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "HybirdFramework.Driver", "HybirdFramework.Driver", "{EF6B2DEC-ADAA-4A6D-AE93-0F98A555B265}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Entity", "Entity\Entity.csproj", "{C2380814-15D4-491D-ADF2-ADC68617C3FA}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HybirdFrameworkDriver", "HybirdFrameworkDriver\HybirdFrameworkDriver.csproj", "{6ACFA707-E72E-4BA1-8262-9F2E5B758D46}" EndProject @@ -33,6 +23,10 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Starter", "Starter", "{E0B9 EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WpfStarter", "WpfStarter\WpfStarter.csproj", "{17044C11-3794-4938-BA80-C061BD871AE0}" EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Framework", "Framework", "{D528B94E-8D0A-4A14-A78F-8240ADF3E7C4}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Business", "Business", "{C9515084-B676-4C33-9FE7-E0B860493A4F}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -80,15 +74,15 @@ Global HideSolutionNode = FALSE EndGlobalSection GlobalSection(NestedProjects) = preSolution - {5F1D9B39-E50F-4B7C-B1C6-E60B64C4CA1A} = {0E784680-8280-4C47-8D2D-6405AC892164} - {01D2CC15-F1FD-4E22-845A-2D2473662860} = {348F9459-2A59-47EB-B801-0CF907DFD8EC} - {A6C2AA7F-B2A2-4AE0-AE84-49BE36B990EC} = {5F67ED42-6437-4FC6-86D2-0495DE990BC4} - {C2380814-15D4-491D-ADF2-ADC68617C3FA} = {6203689E-8261-4814-BFC2-013188AED6A1} - {6ACFA707-E72E-4BA1-8262-9F2E5B758D46} = {EF6B2DEC-ADAA-4A6D-AE93-0F98A555B265} {8EAFC092-1C8A-4CF7-B283-FFCB02D58ED8} = {E0B949DC-17FE-414D-8898-937A317BB853} {17044C11-3794-4938-BA80-C061BD871AE0} = {E0B949DC-17FE-414D-8898-937A317BB853} {61B1609B-97EE-48E4-ADA6-4F1A832B8D33} = {E0B949DC-17FE-414D-8898-937A317BB853} {A6757DAD-EF5A-41FD-9323-F3FCF05ED777} = {E0B949DC-17FE-414D-8898-937A317BB853} + {6ACFA707-E72E-4BA1-8262-9F2E5B758D46} = {D528B94E-8D0A-4A14-A78F-8240ADF3E7C4} + {5F1D9B39-E50F-4B7C-B1C6-E60B64C4CA1A} = {D528B94E-8D0A-4A14-A78F-8240ADF3E7C4} + {C2380814-15D4-491D-ADF2-ADC68617C3FA} = {C9515084-B676-4C33-9FE7-E0B860493A4F} + {01D2CC15-F1FD-4E22-845A-2D2473662860} = {C9515084-B676-4C33-9FE7-E0B860493A4F} + {A6C2AA7F-B2A2-4AE0-AE84-49BE36B990EC} = {C9515084-B676-4C33-9FE7-E0B860493A4F} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {3E10BF3D-9914-44B1-A6AA-FCF013C3F155}