├── .gitattributes ├── .gitignore ├── DllExport.bat ├── DllExport_Configure.bat ├── LICENSE ├── Lib └── Newtonsoft.Json.dll ├── Native.Core ├── CQMain.cs ├── Domain │ └── AppData.cs ├── Export │ ├── CQEventExport.cs │ ├── CQExport.tt │ ├── CQMenuExport.cs │ └── CQStatusExport.cs ├── FodyWeavers.xml ├── Native.Core.csproj ├── Properties │ └── AssemblyInfo.cs ├── app.json └── packages.config ├── Native.Sdk ├── Cqp │ ├── CQApi.cs │ ├── CQLog.cs │ ├── Core │ │ ├── CQP.cs │ │ └── Kernel32.cs │ ├── Enum │ │ ├── CQAudioFormat.cs │ │ ├── CQDiscussMessageType.cs │ │ ├── CQFace.cs │ │ ├── CQFloatWindowColors.cs │ │ ├── CQFriendAddRequestType.cs │ │ ├── CQFriendAddType.cs │ │ ├── CQFunction.cs │ │ ├── CQGroupAddRequestType.cs │ │ ├── CQGroupBanSpeakType.cs │ │ ├── CQGroupFileUploadType.cs │ │ ├── CQGroupManageChangeType.cs │ │ ├── CQGroupMemberDecreaseType.cs │ │ ├── CQGroupMemberIncreaseType.cs │ │ ├── CQGroupMessageType.cs │ │ ├── CQLogLevel.cs │ │ ├── CQMessageEventType.cs │ │ ├── CQMessageHandler.cs │ │ ├── CQMusicStyle.cs │ │ ├── CQMusicType.cs │ │ ├── CQPrviateMessageType.cs │ │ ├── CQResponseType.cs │ │ ├── QQGroupMemberType.cs │ │ └── QQSex.cs │ ├── EventArgs │ │ ├── CQAppDisableEventArgs.cs │ │ ├── CQAppEnableEventArgs.cs │ │ ├── CQDiscussMessageEventArgs.cs │ │ ├── CQEventArgs.cs │ │ ├── CQEventEventArgs.cs │ │ ├── CQExitEventArgs.cs │ │ ├── CQFriendAddEventArgs.cs │ │ ├── CQFriendAddRequestEventArgs.cs │ │ ├── CQGroupAddRequestEventArgs.cs │ │ ├── CQGroupBanSpeakEventArgs.cs │ │ ├── CQGroupManageChangeEventArgs.cs │ │ ├── CQGroupMemberDecreaseEventArgs.cs │ │ ├── CQGroupMemberIncreaseEventArgs.cs │ │ ├── CQGroupMessageEventArgs.cs │ │ ├── CQGroupUploadEventArgs.cs │ │ ├── CQMenuCallEventArgs.cs │ │ ├── CQMenuEventArgs.cs │ │ ├── CQPrivateMessageEventArgs.cs │ │ ├── CQStartupEventArgs.cs │ │ ├── CQStatusEventArgs.cs │ │ └── CQStatusUpdateEventArgs.cs │ ├── Expand │ │ ├── BinaryReaderExpand.cs │ │ ├── BinaryWriterExpand.cs │ │ └── SystemExpand.cs │ ├── Interface │ │ ├── IAppDisable.cs │ │ ├── IAppEnable.cs │ │ ├── ICQExit.cs │ │ ├── ICQStartup.cs │ │ ├── IDiscussMessage.cs │ │ ├── IFriendAdd.cs │ │ ├── IFriendAddRequest.cs │ │ ├── IGroupAddRequest.cs │ │ ├── IGroupBanSpeak.cs │ │ ├── IGroupManageChange.cs │ │ ├── IGroupMemberDecrease.cs │ │ ├── IGroupMemberIncrease.cs │ │ ├── IGroupMessage.cs │ │ ├── IGroupUpload.cs │ │ ├── IMenuCall.cs │ │ ├── IPrivateMessage.cs │ │ ├── IStatusUpdate.cs │ │ └── IToSendString.cs │ └── Model │ │ ├── AppInfo.cs │ │ ├── BasisModel.cs │ │ ├── BasisStreamModel.cs │ │ ├── CQCode.cs │ │ ├── CQFloatWindow.cs │ │ ├── Discuss.cs │ │ ├── FriendInfo.cs │ │ ├── FriendInfoCollection.cs │ │ ├── Group.cs │ │ ├── GroupFileInfo.cs │ │ ├── GroupInfo.cs │ │ ├── GroupInfoCollection.cs │ │ ├── GroupMemberAnonymousInfo.cs │ │ ├── GroupMemberInfo.cs │ │ ├── GroupMemberInfoCollection.cs │ │ ├── QQ.cs │ │ ├── QQMessage.cs │ │ ├── QQRequest.cs │ │ └── StrangerInfo.cs ├── Native.Sdk.csproj └── Properties │ └── AssemblyInfo.cs ├── Native.Tool ├── Http │ ├── HttpTool.cs │ └── HttpWebClient.cs ├── IniConfig │ ├── Attribute │ │ ├── IniConfigKeyAttribute.cs │ │ ├── IniConfigSectionAttribute.cs │ │ ├── IniKeyAttribute.cs │ │ ├── IniNonSerializeAttribute.cs │ │ ├── IniSectionAttribute.cs │ │ └── IniSerializeAttribute.cs │ ├── Exception │ │ ├── IniConfigException.cs │ │ ├── PropertyNotFoundException.cs │ │ └── SectionNotFoundException.cs │ ├── IniConfig.cs │ ├── IniConvert.cs │ ├── Linq │ │ ├── IContainer.cs │ │ ├── IObject.cs │ │ ├── ISection.cs │ │ ├── IValue.cs │ │ ├── IValueType.cs │ │ ├── IniObject.cs │ │ ├── IniSection.cs │ │ └── IniValue.cs │ └── Utilities │ │ ├── ConvertUtils.cs │ │ ├── MathUtils.cs │ │ ├── MiscellaneousUtils.cs │ │ └── ReflectionUtils.cs ├── Native.Tool.csproj ├── Properties │ └── AssemblyInfo.cs └── SQLite │ ├── AssemblySourceIdAttribute.cs │ ├── AssemblySourceTimeStampAttribute.cs │ ├── Configurations │ └── System.Data.SQLite.dll.config │ ├── Generated │ └── SR.resources │ ├── ISQLiteNativeModule.cs │ ├── LINQ │ ├── SQLiteConnection_Linq.cs │ └── SQLiteFactory_Linq.cs │ ├── Resources │ ├── DataTypes.xml │ ├── MetaDataCollections.xml │ ├── SQLiteCommand.bmp │ ├── SQLiteConnection.bmp │ ├── SQLiteDataAdapter.bmp │ ├── SR.Designer.cs │ └── SR.resx │ ├── SQLite3.cs │ ├── SQLite3_UTF16.cs │ ├── SQLiteBackup.cs │ ├── SQLiteBase.cs │ ├── SQLiteBlob.cs │ ├── SQLiteCommand.cs │ ├── SQLiteCommandBuilder.cs │ ├── SQLiteConnection.cs │ ├── SQLiteConnectionPool.cs │ ├── SQLiteConnectionStringBuilder.cs │ ├── SQLiteConvert.cs │ ├── SQLiteDataAdapter.cs │ ├── SQLiteDataReader.cs │ ├── SQLiteDefineConstants.cs │ ├── SQLiteEnlistment.cs │ ├── SQLiteException.cs │ ├── SQLiteFactory.cs │ ├── SQLiteFunction.cs │ ├── SQLiteFunctionAttribute.cs │ ├── SQLiteKeyReader.cs │ ├── SQLiteLog.cs │ ├── SQLiteMetaDataCollectionNames.cs │ ├── SQLiteModule.cs │ ├── SQLiteModuleCommon.cs │ ├── SQLiteModuleEnumerable.cs │ ├── SQLiteModuleNoop.cs │ ├── SQLiteParameter.cs │ ├── SQLiteParameterCollection.cs │ ├── SQLitePatchLevel.cs │ ├── SQLiteSession.cs │ ├── SQLiteStatement.cs │ ├── SQLiteTransaction.cs │ ├── SQLiteTransaction2.cs │ ├── SQLiteTransactionBase.cs │ ├── Targets │ ├── System.Data.SQLite.Files.targets │ ├── System.Data.SQLite.Properties.targets │ └── System.Data.SQLite.References.targets │ └── UnsafeNativeMethods.cs ├── Native.sln ├── README.md ├── UPDATE.md └── packages ├── Costura.Fody.1.6.2 ├── .signature.p7s ├── Costura.Fody.1.6.2.nupkg ├── Costura.Fody.dll ├── Costura.Tasks.dll ├── build │ ├── dotnet │ │ └── Costura.Fody.targets │ └── portable-net+sl+win+wpa+wp │ │ └── Costura.Fody.targets ├── lib │ ├── dotnet │ │ └── Costura.dll │ └── portable-net+sl+win+wpa+wp │ │ └── Costura.dll └── tools │ ├── install.ps1 │ └── uninstall.ps1 ├── DllExport.1.6.1 ├── 3rd-party.txt ├── DllExport.1.6.1.nupkg ├── DllExport.bat ├── License.txt ├── Readme.md ├── build │ └── net20 │ │ └── DllExport.targets ├── build_info.txt ├── changelog.txt ├── gcache │ └── metalib │ │ └── System.Runtime.InteropServices │ │ ├── DllExport.dll │ │ └── DllExport.dll.ddNSi ├── hMSBuild.bat ├── lib │ └── net20 │ │ └── _._ └── tools │ ├── Conari.dll │ ├── Conari.pdb │ ├── Conari.xml │ ├── Microsoft.Build.Framework.dll │ ├── Microsoft.Build.Utilities.v4.0.dll │ ├── Microsoft.Build.dll │ ├── Microsoft.Management.Infrastructure.dll │ ├── Mono.Cecil.dll │ ├── MvsSln.dll │ ├── MvsSln.pdb │ ├── MvsSln.xml │ ├── NSBin.dll │ ├── NSBin.pdb │ ├── PeViewer.exe │ ├── PeViewer.pdb │ ├── RGiesecke.DllExport.MSBuild.dll │ ├── RGiesecke.DllExport.MSBuild.pdb │ ├── RGiesecke.DllExport.dll │ ├── RGiesecke.DllExport.pdb │ ├── System.Management.Automation.dll │ ├── build.targets │ ├── coreclr │ ├── LICENSE.TXT │ ├── PATENTS.TXT │ ├── README.md │ ├── _Version.txt │ ├── changelog.txt │ ├── coreclr.dll │ ├── ilasm.exe │ ├── ildasm.exe │ ├── ildasmrc.dll │ ├── mscordaccore.dll │ └── mscordbi.dll │ ├── gnt.bat │ ├── hMSBuild.bat │ ├── net.r_eg.DllExport.Configurator.dll │ ├── net.r_eg.DllExport.Configurator.pdb │ ├── net.r_eg.DllExport.Wizard.dll │ ├── net.r_eg.DllExport.Wizard.pdb │ ├── net.r_eg.DllExport.Wizard.targets │ ├── net.r_eg.DllExport.targets │ └── raw │ └── lib │ └── net20 │ └── DllExport.dll ├── Fody.2.2.1.0 ├── .signature.p7s ├── Content │ └── FodyWeavers.xml ├── Fody.2.2.1.0.nupkg ├── Fody.dll ├── FodyCommon.dll ├── FodyIsolated.dll ├── Mono.Cecil.Mdb.dll ├── Mono.Cecil.Pdb.dll ├── Mono.Cecil.Rocks.dll ├── Mono.Cecil.dll ├── Tools │ └── install.ps1 └── build │ ├── net452 │ └── Fody.targets │ ├── netstandard1.2 │ └── Fody.targets │ └── portable-net+sl+win+wpa+wp │ └── Fody.targets └── Unity.5.8.6 ├── .signature.p7s ├── Unity.5.8.6.nupkg └── lib ├── net40 ├── CommonServiceLocator.dll ├── Unity.Abstractions.dll ├── Unity.Container.dll ├── Unity.Interception.dll └── Unity.ServiceLocation.dll ├── net45 ├── CommonServiceLocator.dll ├── Unity.Abstractions.dll ├── Unity.Configuration.dll ├── Unity.Container.dll ├── Unity.Interception.Configuration.dll ├── Unity.Interception.dll ├── Unity.RegistrationByConvention.dll └── Unity.ServiceLocation.dll ├── net46 ├── CommonServiceLocator.dll ├── Unity.Abstractions.dll ├── Unity.Configuration.dll ├── Unity.Container.dll ├── Unity.Interception.Configuration.dll ├── Unity.Interception.dll ├── Unity.RegistrationByConvention.dll └── Unity.ServiceLocation.dll ├── net47 ├── CommonServiceLocator.dll ├── Unity.Abstractions.dll ├── Unity.Configuration.dll ├── Unity.Container.dll ├── Unity.Interception.Configuration.dll ├── Unity.Interception.dll ├── Unity.RegistrationByConvention.dll └── Unity.ServiceLocation.dll ├── netcoreapp1.0 ├── CommonServiceLocator.deps.json ├── CommonServiceLocator.dll ├── Unity.Abstractions.deps.json ├── Unity.Abstractions.dll ├── Unity.Container.deps.json ├── Unity.Container.dll ├── Unity.ServiceLocation.deps.json └── Unity.ServiceLocation.dll ├── netcoreapp2.0 ├── Unity.Abstractions.dll ├── Unity.Container.deps.json └── Unity.Container.dll ├── netstandard1.0 ├── CommonServiceLocator.deps.json ├── CommonServiceLocator.dll ├── Unity.Abstractions.deps.json ├── Unity.Abstractions.dll ├── Unity.Container.deps.json ├── Unity.Container.dll ├── Unity.ServiceLocation.deps.json └── Unity.ServiceLocation.dll └── netstandard2.0 ├── CommonServiceLocator.deps.json ├── CommonServiceLocator.dll ├── Unity.Abstractions.deps.json ├── Unity.Abstractions.dll ├── Unity.Container.deps.json ├── Unity.Container.dll ├── Unity.ServiceLocation.deps.json └── Unity.ServiceLocation.dll /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/.gitignore -------------------------------------------------------------------------------- /DllExport.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/DllExport.bat -------------------------------------------------------------------------------- /DllExport_Configure.bat: -------------------------------------------------------------------------------- 1 | DllExport -action Configure %* -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/LICENSE -------------------------------------------------------------------------------- /Lib/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Lib/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Native.Core/CQMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Core/CQMain.cs -------------------------------------------------------------------------------- /Native.Core/Domain/AppData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Core/Domain/AppData.cs -------------------------------------------------------------------------------- /Native.Core/Export/CQEventExport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Core/Export/CQEventExport.cs -------------------------------------------------------------------------------- /Native.Core/Export/CQExport.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Core/Export/CQExport.tt -------------------------------------------------------------------------------- /Native.Core/Export/CQMenuExport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Core/Export/CQMenuExport.cs -------------------------------------------------------------------------------- /Native.Core/Export/CQStatusExport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Core/Export/CQStatusExport.cs -------------------------------------------------------------------------------- /Native.Core/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Core/FodyWeavers.xml -------------------------------------------------------------------------------- /Native.Core/Native.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Core/Native.Core.csproj -------------------------------------------------------------------------------- /Native.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Native.Core/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Core/app.json -------------------------------------------------------------------------------- /Native.Core/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Core/packages.config -------------------------------------------------------------------------------- /Native.Sdk/Cqp/CQApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/CQApi.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/CQLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/CQLog.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Core/CQP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Core/CQP.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Core/Kernel32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Core/Kernel32.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/CQAudioFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Enum/CQAudioFormat.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/CQDiscussMessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Enum/CQDiscussMessageType.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/CQFace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Enum/CQFace.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/CQFloatWindowColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Enum/CQFloatWindowColors.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/CQFriendAddRequestType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Enum/CQFriendAddRequestType.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/CQFriendAddType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Enum/CQFriendAddType.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/CQFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Enum/CQFunction.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/CQGroupAddRequestType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Enum/CQGroupAddRequestType.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/CQGroupBanSpeakType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Enum/CQGroupBanSpeakType.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/CQGroupFileUploadType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Enum/CQGroupFileUploadType.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/CQGroupManageChangeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Enum/CQGroupManageChangeType.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/CQGroupMemberDecreaseType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Enum/CQGroupMemberDecreaseType.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/CQGroupMemberIncreaseType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Enum/CQGroupMemberIncreaseType.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/CQGroupMessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Enum/CQGroupMessageType.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/CQLogLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Enum/CQLogLevel.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/CQMessageEventType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Enum/CQMessageEventType.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/CQMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Enum/CQMessageHandler.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/CQMusicStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Enum/CQMusicStyle.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/CQMusicType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Enum/CQMusicType.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/CQPrviateMessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Enum/CQPrviateMessageType.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/CQResponseType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Enum/CQResponseType.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/QQGroupMemberType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Enum/QQGroupMemberType.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/QQSex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Enum/QQSex.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/EventArgs/CQAppDisableEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/EventArgs/CQAppDisableEventArgs.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/EventArgs/CQAppEnableEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/EventArgs/CQAppEnableEventArgs.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/EventArgs/CQDiscussMessageEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/EventArgs/CQDiscussMessageEventArgs.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/EventArgs/CQEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/EventArgs/CQEventArgs.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/EventArgs/CQEventEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/EventArgs/CQEventEventArgs.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/EventArgs/CQExitEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/EventArgs/CQExitEventArgs.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/EventArgs/CQFriendAddEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/EventArgs/CQFriendAddEventArgs.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/EventArgs/CQFriendAddRequestEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/EventArgs/CQFriendAddRequestEventArgs.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/EventArgs/CQGroupAddRequestEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/EventArgs/CQGroupAddRequestEventArgs.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/EventArgs/CQGroupBanSpeakEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/EventArgs/CQGroupBanSpeakEventArgs.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/EventArgs/CQGroupManageChangeEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/EventArgs/CQGroupManageChangeEventArgs.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/EventArgs/CQGroupMemberDecreaseEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/EventArgs/CQGroupMemberDecreaseEventArgs.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/EventArgs/CQGroupMemberIncreaseEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/EventArgs/CQGroupMemberIncreaseEventArgs.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/EventArgs/CQGroupMessageEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/EventArgs/CQGroupMessageEventArgs.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/EventArgs/CQGroupUploadEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/EventArgs/CQGroupUploadEventArgs.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/EventArgs/CQMenuCallEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/EventArgs/CQMenuCallEventArgs.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/EventArgs/CQMenuEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/EventArgs/CQMenuEventArgs.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/EventArgs/CQPrivateMessageEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/EventArgs/CQPrivateMessageEventArgs.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/EventArgs/CQStartupEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/EventArgs/CQStartupEventArgs.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/EventArgs/CQStatusEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/EventArgs/CQStatusEventArgs.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/EventArgs/CQStatusUpdateEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/EventArgs/CQStatusUpdateEventArgs.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Expand/BinaryReaderExpand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Expand/BinaryReaderExpand.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Expand/BinaryWriterExpand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Expand/BinaryWriterExpand.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Expand/SystemExpand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Expand/SystemExpand.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Interface/IAppDisable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Interface/IAppDisable.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Interface/IAppEnable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Interface/IAppEnable.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Interface/ICQExit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Interface/ICQExit.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Interface/ICQStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Interface/ICQStartup.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Interface/IDiscussMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Interface/IDiscussMessage.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Interface/IFriendAdd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Interface/IFriendAdd.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Interface/IFriendAddRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Interface/IFriendAddRequest.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Interface/IGroupAddRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Interface/IGroupAddRequest.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Interface/IGroupBanSpeak.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Interface/IGroupBanSpeak.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Interface/IGroupManageChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Interface/IGroupManageChange.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Interface/IGroupMemberDecrease.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Interface/IGroupMemberDecrease.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Interface/IGroupMemberIncrease.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Interface/IGroupMemberIncrease.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Interface/IGroupMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Interface/IGroupMessage.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Interface/IGroupUpload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Interface/IGroupUpload.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Interface/IMenuCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Interface/IMenuCall.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Interface/IPrivateMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Interface/IPrivateMessage.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Interface/IStatusUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Interface/IStatusUpdate.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Interface/IToSendString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Interface/IToSendString.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Model/AppInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Model/AppInfo.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Model/BasisModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Model/BasisModel.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Model/BasisStreamModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Model/BasisStreamModel.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Model/CQCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Model/CQCode.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Model/CQFloatWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Model/CQFloatWindow.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Model/Discuss.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Model/Discuss.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Model/FriendInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Model/FriendInfo.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Model/FriendInfoCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Model/FriendInfoCollection.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Model/Group.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Model/Group.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Model/GroupFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Model/GroupFileInfo.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Model/GroupInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Model/GroupInfo.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Model/GroupInfoCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Model/GroupInfoCollection.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Model/GroupMemberAnonymousInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Model/GroupMemberAnonymousInfo.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Model/GroupMemberInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Model/GroupMemberInfo.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Model/GroupMemberInfoCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Model/GroupMemberInfoCollection.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Model/QQ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Model/QQ.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Model/QQMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Model/QQMessage.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Model/QQRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Model/QQRequest.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Model/StrangerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Cqp/Model/StrangerInfo.cs -------------------------------------------------------------------------------- /Native.Sdk/Native.Sdk.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Native.Sdk.csproj -------------------------------------------------------------------------------- /Native.Sdk/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Sdk/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Native.Tool/Http/HttpTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/Http/HttpTool.cs -------------------------------------------------------------------------------- /Native.Tool/Http/HttpWebClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/Http/HttpWebClient.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/Attribute/IniConfigKeyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/IniConfig/Attribute/IniConfigKeyAttribute.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/Attribute/IniConfigSectionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/IniConfig/Attribute/IniConfigSectionAttribute.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/Attribute/IniKeyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/IniConfig/Attribute/IniKeyAttribute.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/Attribute/IniNonSerializeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/IniConfig/Attribute/IniNonSerializeAttribute.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/Attribute/IniSectionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/IniConfig/Attribute/IniSectionAttribute.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/Attribute/IniSerializeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/IniConfig/Attribute/IniSerializeAttribute.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/Exception/IniConfigException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/IniConfig/Exception/IniConfigException.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/Exception/PropertyNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/IniConfig/Exception/PropertyNotFoundException.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/Exception/SectionNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/IniConfig/Exception/SectionNotFoundException.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/IniConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/IniConfig/IniConfig.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/IniConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/IniConfig/IniConvert.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/Linq/IContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/IniConfig/Linq/IContainer.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/Linq/IObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/IniConfig/Linq/IObject.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/Linq/ISection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/IniConfig/Linq/ISection.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/Linq/IValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/IniConfig/Linq/IValue.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/Linq/IValueType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/IniConfig/Linq/IValueType.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/Linq/IniObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/IniConfig/Linq/IniObject.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/Linq/IniSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/IniConfig/Linq/IniSection.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/Linq/IniValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/IniConfig/Linq/IniValue.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/Utilities/ConvertUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/IniConfig/Utilities/ConvertUtils.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/Utilities/MathUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/IniConfig/Utilities/MathUtils.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/Utilities/MiscellaneousUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/IniConfig/Utilities/MiscellaneousUtils.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/Utilities/ReflectionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/IniConfig/Utilities/ReflectionUtils.cs -------------------------------------------------------------------------------- /Native.Tool/Native.Tool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/Native.Tool.csproj -------------------------------------------------------------------------------- /Native.Tool/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/AssemblySourceIdAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/AssemblySourceIdAttribute.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/AssemblySourceTimeStampAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/AssemblySourceTimeStampAttribute.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/Configurations/System.Data.SQLite.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/Configurations/System.Data.SQLite.dll.config -------------------------------------------------------------------------------- /Native.Tool/SQLite/Generated/SR.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/Generated/SR.resources -------------------------------------------------------------------------------- /Native.Tool/SQLite/ISQLiteNativeModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/ISQLiteNativeModule.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/LINQ/SQLiteConnection_Linq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/LINQ/SQLiteConnection_Linq.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/LINQ/SQLiteFactory_Linq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/LINQ/SQLiteFactory_Linq.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/Resources/DataTypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/Resources/DataTypes.xml -------------------------------------------------------------------------------- /Native.Tool/SQLite/Resources/MetaDataCollections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/Resources/MetaDataCollections.xml -------------------------------------------------------------------------------- /Native.Tool/SQLite/Resources/SQLiteCommand.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/Resources/SQLiteCommand.bmp -------------------------------------------------------------------------------- /Native.Tool/SQLite/Resources/SQLiteConnection.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/Resources/SQLiteConnection.bmp -------------------------------------------------------------------------------- /Native.Tool/SQLite/Resources/SQLiteDataAdapter.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/Resources/SQLiteDataAdapter.bmp -------------------------------------------------------------------------------- /Native.Tool/SQLite/Resources/SR.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/Resources/SR.Designer.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/Resources/SR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/Resources/SR.resx -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLite3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/SQLite3.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLite3_UTF16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/SQLite3_UTF16.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteBackup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/SQLiteBackup.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/SQLiteBase.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteBlob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/SQLiteBlob.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/SQLiteCommand.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteCommandBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/SQLiteCommandBuilder.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/SQLiteConnection.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteConnectionPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/SQLiteConnectionPool.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteConnectionStringBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/SQLiteConnectionStringBuilder.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/SQLiteConvert.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteDataAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/SQLiteDataAdapter.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteDataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/SQLiteDataReader.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteDefineConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/SQLiteDefineConstants.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteEnlistment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/SQLiteEnlistment.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/SQLiteException.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/SQLiteFactory.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/SQLiteFunction.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteFunctionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/SQLiteFunctionAttribute.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteKeyReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/SQLiteKeyReader.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/SQLiteLog.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteMetaDataCollectionNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/SQLiteMetaDataCollectionNames.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/SQLiteModule.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteModuleCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/SQLiteModuleCommon.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteModuleEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/SQLiteModuleEnumerable.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteModuleNoop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/SQLiteModuleNoop.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/SQLiteParameter.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteParameterCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/SQLiteParameterCollection.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLitePatchLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/SQLitePatchLevel.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/SQLiteSession.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/SQLiteStatement.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/SQLiteTransaction.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteTransaction2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/SQLiteTransaction2.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteTransactionBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/SQLiteTransactionBase.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/Targets/System.Data.SQLite.Files.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/Targets/System.Data.SQLite.Files.targets -------------------------------------------------------------------------------- /Native.Tool/SQLite/Targets/System.Data.SQLite.Properties.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/Targets/System.Data.SQLite.Properties.targets -------------------------------------------------------------------------------- /Native.Tool/SQLite/Targets/System.Data.SQLite.References.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/Targets/System.Data.SQLite.References.targets -------------------------------------------------------------------------------- /Native.Tool/SQLite/UnsafeNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.Tool/SQLite/UnsafeNativeMethods.cs -------------------------------------------------------------------------------- /Native.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/Native.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/README.md -------------------------------------------------------------------------------- /UPDATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/UPDATE.md -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Costura.Fody.1.6.2/.signature.p7s -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/Costura.Fody.1.6.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Costura.Fody.1.6.2/Costura.Fody.1.6.2.nupkg -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/Costura.Fody.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Costura.Fody.1.6.2/Costura.Fody.dll -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/Costura.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Costura.Fody.1.6.2/Costura.Tasks.dll -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/build/dotnet/Costura.Fody.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Costura.Fody.1.6.2/build/dotnet/Costura.Fody.targets -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/build/portable-net+sl+win+wpa+wp/Costura.Fody.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Costura.Fody.1.6.2/build/portable-net+sl+win+wpa+wp/Costura.Fody.targets -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/lib/dotnet/Costura.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Costura.Fody.1.6.2/lib/dotnet/Costura.dll -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/lib/portable-net+sl+win+wpa+wp/Costura.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Costura.Fody.1.6.2/lib/portable-net+sl+win+wpa+wp/Costura.dll -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Costura.Fody.1.6.2/tools/install.ps1 -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Costura.Fody.1.6.2/tools/uninstall.ps1 -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/3rd-party.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/3rd-party.txt -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/DllExport.1.6.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/DllExport.1.6.1.nupkg -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/DllExport.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/DllExport.bat -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/License.txt -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/Readme.md -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/build/net20/DllExport.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/build/net20/DllExport.targets -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/build_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/build_info.txt -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/changelog.txt -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/gcache/metalib/System.Runtime.InteropServices/DllExport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/gcache/metalib/System.Runtime.InteropServices/DllExport.dll -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/gcache/metalib/System.Runtime.InteropServices/DllExport.dll.ddNSi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/gcache/metalib/System.Runtime.InteropServices/DllExport.dll.ddNSi -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/hMSBuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/hMSBuild.bat -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/lib/net20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/Conari.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/tools/Conari.dll -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/Conari.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/tools/Conari.pdb -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/Conari.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/tools/Conari.xml -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/Microsoft.Build.Framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/tools/Microsoft.Build.Framework.dll -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/Microsoft.Build.Utilities.v4.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/tools/Microsoft.Build.Utilities.v4.0.dll -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/Microsoft.Build.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/tools/Microsoft.Build.dll -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/Microsoft.Management.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/tools/Microsoft.Management.Infrastructure.dll -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/tools/Mono.Cecil.dll -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/MvsSln.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/tools/MvsSln.dll -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/MvsSln.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/tools/MvsSln.pdb -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/MvsSln.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/tools/MvsSln.xml -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/NSBin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/tools/NSBin.dll -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/NSBin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/tools/NSBin.pdb -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/PeViewer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/tools/PeViewer.exe -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/PeViewer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/tools/PeViewer.pdb -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/RGiesecke.DllExport.MSBuild.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/tools/RGiesecke.DllExport.MSBuild.dll -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/RGiesecke.DllExport.MSBuild.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/tools/RGiesecke.DllExport.MSBuild.pdb -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/RGiesecke.DllExport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/tools/RGiesecke.DllExport.dll -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/RGiesecke.DllExport.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/tools/RGiesecke.DllExport.pdb -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/System.Management.Automation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/tools/System.Management.Automation.dll -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/tools/build.targets -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/coreclr/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/tools/coreclr/LICENSE.TXT -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/coreclr/PATENTS.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/tools/coreclr/PATENTS.TXT -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/coreclr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/tools/coreclr/README.md -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/coreclr/_Version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/tools/coreclr/_Version.txt -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/coreclr/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/tools/coreclr/changelog.txt -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/coreclr/coreclr.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/tools/coreclr/coreclr.dll -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/coreclr/ilasm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/tools/coreclr/ilasm.exe -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/coreclr/ildasm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/tools/coreclr/ildasm.exe -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/coreclr/ildasmrc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/tools/coreclr/ildasmrc.dll -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/coreclr/mscordaccore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/tools/coreclr/mscordaccore.dll -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/coreclr/mscordbi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/tools/coreclr/mscordbi.dll -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/gnt.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/tools/gnt.bat -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/hMSBuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/tools/hMSBuild.bat -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/net.r_eg.DllExport.Configurator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/tools/net.r_eg.DllExport.Configurator.dll -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/net.r_eg.DllExport.Configurator.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/tools/net.r_eg.DllExport.Configurator.pdb -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/net.r_eg.DllExport.Wizard.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/tools/net.r_eg.DllExport.Wizard.dll -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/net.r_eg.DllExport.Wizard.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/tools/net.r_eg.DllExport.Wizard.pdb -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/net.r_eg.DllExport.Wizard.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/tools/net.r_eg.DllExport.Wizard.targets -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/net.r_eg.DllExport.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/tools/net.r_eg.DllExport.targets -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/raw/lib/net20/DllExport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/DllExport.1.6.1/tools/raw/lib/net20/DllExport.dll -------------------------------------------------------------------------------- /packages/Fody.2.2.1.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Fody.2.2.1.0/.signature.p7s -------------------------------------------------------------------------------- /packages/Fody.2.2.1.0/Content/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Fody.2.2.1.0/Content/FodyWeavers.xml -------------------------------------------------------------------------------- /packages/Fody.2.2.1.0/Fody.2.2.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Fody.2.2.1.0/Fody.2.2.1.0.nupkg -------------------------------------------------------------------------------- /packages/Fody.2.2.1.0/Fody.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Fody.2.2.1.0/Fody.dll -------------------------------------------------------------------------------- /packages/Fody.2.2.1.0/FodyCommon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Fody.2.2.1.0/FodyCommon.dll -------------------------------------------------------------------------------- /packages/Fody.2.2.1.0/FodyIsolated.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Fody.2.2.1.0/FodyIsolated.dll -------------------------------------------------------------------------------- /packages/Fody.2.2.1.0/Mono.Cecil.Mdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Fody.2.2.1.0/Mono.Cecil.Mdb.dll -------------------------------------------------------------------------------- /packages/Fody.2.2.1.0/Mono.Cecil.Pdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Fody.2.2.1.0/Mono.Cecil.Pdb.dll -------------------------------------------------------------------------------- /packages/Fody.2.2.1.0/Mono.Cecil.Rocks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Fody.2.2.1.0/Mono.Cecil.Rocks.dll -------------------------------------------------------------------------------- /packages/Fody.2.2.1.0/Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Fody.2.2.1.0/Mono.Cecil.dll -------------------------------------------------------------------------------- /packages/Fody.2.2.1.0/Tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Fody.2.2.1.0/Tools/install.ps1 -------------------------------------------------------------------------------- /packages/Fody.2.2.1.0/build/net452/Fody.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Fody.2.2.1.0/build/net452/Fody.targets -------------------------------------------------------------------------------- /packages/Fody.2.2.1.0/build/netstandard1.2/Fody.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Fody.2.2.1.0/build/netstandard1.2/Fody.targets -------------------------------------------------------------------------------- /packages/Fody.2.2.1.0/build/portable-net+sl+win+wpa+wp/Fody.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Fody.2.2.1.0/build/portable-net+sl+win+wpa+wp/Fody.targets -------------------------------------------------------------------------------- /packages/Unity.5.8.6/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/.signature.p7s -------------------------------------------------------------------------------- /packages/Unity.5.8.6/Unity.5.8.6.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/Unity.5.8.6.nupkg -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net40/CommonServiceLocator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/net40/CommonServiceLocator.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net40/Unity.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/net40/Unity.Abstractions.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net40/Unity.Container.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/net40/Unity.Container.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net40/Unity.Interception.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/net40/Unity.Interception.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net40/Unity.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/net40/Unity.ServiceLocation.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net45/CommonServiceLocator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/net45/CommonServiceLocator.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net45/Unity.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/net45/Unity.Abstractions.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net45/Unity.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/net45/Unity.Configuration.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net45/Unity.Container.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/net45/Unity.Container.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net45/Unity.Interception.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/net45/Unity.Interception.Configuration.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net45/Unity.Interception.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/net45/Unity.Interception.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net45/Unity.RegistrationByConvention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/net45/Unity.RegistrationByConvention.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net45/Unity.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/net45/Unity.ServiceLocation.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net46/CommonServiceLocator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/net46/CommonServiceLocator.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net46/Unity.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/net46/Unity.Abstractions.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net46/Unity.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/net46/Unity.Configuration.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net46/Unity.Container.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/net46/Unity.Container.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net46/Unity.Interception.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/net46/Unity.Interception.Configuration.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net46/Unity.Interception.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/net46/Unity.Interception.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net46/Unity.RegistrationByConvention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/net46/Unity.RegistrationByConvention.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net46/Unity.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/net46/Unity.ServiceLocation.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net47/CommonServiceLocator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/net47/CommonServiceLocator.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net47/Unity.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/net47/Unity.Abstractions.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net47/Unity.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/net47/Unity.Configuration.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net47/Unity.Container.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/net47/Unity.Container.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net47/Unity.Interception.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/net47/Unity.Interception.Configuration.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net47/Unity.Interception.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/net47/Unity.Interception.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net47/Unity.RegistrationByConvention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/net47/Unity.RegistrationByConvention.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net47/Unity.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/net47/Unity.ServiceLocation.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netcoreapp1.0/CommonServiceLocator.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/netcoreapp1.0/CommonServiceLocator.deps.json -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netcoreapp1.0/CommonServiceLocator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/netcoreapp1.0/CommonServiceLocator.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netcoreapp1.0/Unity.Abstractions.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/netcoreapp1.0/Unity.Abstractions.deps.json -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netcoreapp1.0/Unity.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/netcoreapp1.0/Unity.Abstractions.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netcoreapp1.0/Unity.Container.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/netcoreapp1.0/Unity.Container.deps.json -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netcoreapp1.0/Unity.Container.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/netcoreapp1.0/Unity.Container.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netcoreapp1.0/Unity.ServiceLocation.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/netcoreapp1.0/Unity.ServiceLocation.deps.json -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netcoreapp1.0/Unity.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/netcoreapp1.0/Unity.ServiceLocation.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netcoreapp2.0/Unity.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/netcoreapp2.0/Unity.Abstractions.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netcoreapp2.0/Unity.Container.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/netcoreapp2.0/Unity.Container.deps.json -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netcoreapp2.0/Unity.Container.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/netcoreapp2.0/Unity.Container.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netstandard1.0/CommonServiceLocator.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/netstandard1.0/CommonServiceLocator.deps.json -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netstandard1.0/CommonServiceLocator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/netstandard1.0/CommonServiceLocator.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netstandard1.0/Unity.Abstractions.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/netstandard1.0/Unity.Abstractions.deps.json -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netstandard1.0/Unity.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/netstandard1.0/Unity.Abstractions.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netstandard1.0/Unity.Container.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/netstandard1.0/Unity.Container.deps.json -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netstandard1.0/Unity.Container.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/netstandard1.0/Unity.Container.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netstandard1.0/Unity.ServiceLocation.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/netstandard1.0/Unity.ServiceLocation.deps.json -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netstandard1.0/Unity.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/netstandard1.0/Unity.ServiceLocation.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netstandard2.0/CommonServiceLocator.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/netstandard2.0/CommonServiceLocator.deps.json -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netstandard2.0/CommonServiceLocator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/netstandard2.0/CommonServiceLocator.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netstandard2.0/Unity.Abstractions.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/netstandard2.0/Unity.Abstractions.deps.json -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netstandard2.0/Unity.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/netstandard2.0/Unity.Abstractions.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netstandard2.0/Unity.Container.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/netstandard2.0/Unity.Container.deps.json -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netstandard2.0/Unity.Container.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/netstandard2.0/Unity.Container.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netstandard2.0/Unity.ServiceLocation.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/netstandard2.0/Unity.ServiceLocation.deps.json -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netstandard2.0/Unity.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jie2GG/Native.Framework/HEAD/packages/Unity.5.8.6/lib/netstandard2.0/Unity.ServiceLocation.dll --------------------------------------------------------------------------------