OASystem.Infrastructure.deps.json 104 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598
  1. {
  2. "runtimeTarget": {
  3. "name": ".NETCoreApp,Version=v6.0",
  4. "signature": ""
  5. },
  6. "compilationOptions": {},
  7. "targets": {
  8. ".NETCoreApp,Version=v6.0": {
  9. "OASystem.Infrastructure/1.0.0": {
  10. "dependencies": {
  11. "AutoMapper": "12.0.0",
  12. "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.0",
  13. "Autofac": "6.4.0",
  14. "Autofac.Extensions.DependencyInjection": "8.0.0",
  15. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  16. "Microsoft.Extensions.Configuration.Abstractions": "7.0.0",
  17. "Microsoft.Extensions.Configuration.Binder": "7.0.0",
  18. "OASystem.Domain": "1.0.0",
  19. "Serilog.Sinks.File": "5.0.0",
  20. "SqlSugarCore": "5.1.3.32",
  21. "StackExchange.Redis": "2.6.96"
  22. },
  23. "runtime": {
  24. "OASystem.Infrastructure.dll": {}
  25. }
  26. },
  27. "Autofac/6.4.0": {
  28. "dependencies": {
  29. "System.Diagnostics.DiagnosticSource": "4.7.1"
  30. },
  31. "runtime": {
  32. "lib/net6.0/Autofac.dll": {
  33. "assemblyVersion": "6.4.0.0",
  34. "fileVersion": "6.4.0.0"
  35. }
  36. }
  37. },
  38. "Autofac.Extensions.DependencyInjection/8.0.0": {
  39. "dependencies": {
  40. "Autofac": "6.4.0",
  41. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0"
  42. },
  43. "runtime": {
  44. "lib/net6.0/Autofac.Extensions.DependencyInjection.dll": {
  45. "assemblyVersion": "8.0.0.0",
  46. "fileVersion": "8.0.0.0"
  47. }
  48. }
  49. },
  50. "AutoMapper/12.0.0": {
  51. "dependencies": {
  52. "Microsoft.CSharp": "4.7.0"
  53. },
  54. "runtime": {
  55. "lib/netstandard2.1/AutoMapper.dll": {
  56. "assemblyVersion": "12.0.0.0",
  57. "fileVersion": "12.0.0.0"
  58. }
  59. }
  60. },
  61. "AutoMapper.Extensions.Microsoft.DependencyInjection/12.0.0": {
  62. "dependencies": {
  63. "AutoMapper": "12.0.0",
  64. "Microsoft.Extensions.Options": "6.0.0"
  65. },
  66. "runtime": {
  67. "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {
  68. "assemblyVersion": "12.0.0.0",
  69. "fileVersion": "12.0.0.0"
  70. }
  71. }
  72. },
  73. "BouncyCastle.NetCore/1.8.5": {
  74. "runtime": {
  75. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  76. "assemblyVersion": "1.8.5.0",
  77. "fileVersion": "1.8.19031.1"
  78. }
  79. }
  80. },
  81. "Google.Protobuf/3.19.4": {
  82. "runtime": {
  83. "lib/net5.0/Google.Protobuf.dll": {
  84. "assemblyVersion": "3.19.4.0",
  85. "fileVersion": "3.19.4.0"
  86. }
  87. }
  88. },
  89. "K4os.Compression.LZ4/1.2.6": {
  90. "dependencies": {
  91. "System.Memory": "4.5.4"
  92. },
  93. "runtime": {
  94. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  95. "assemblyVersion": "1.2.6.0",
  96. "fileVersion": "1.2.6.0"
  97. }
  98. }
  99. },
  100. "K4os.Compression.LZ4.Streams/1.2.6": {
  101. "dependencies": {
  102. "K4os.Compression.LZ4": "1.2.6",
  103. "K4os.Hash.xxHash": "1.0.6"
  104. },
  105. "runtime": {
  106. "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {
  107. "assemblyVersion": "1.2.6.0",
  108. "fileVersion": "1.2.6.0"
  109. }
  110. }
  111. },
  112. "K4os.Hash.xxHash/1.0.6": {
  113. "dependencies": {
  114. "System.Memory": "4.5.4"
  115. },
  116. "runtime": {
  117. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  118. "assemblyVersion": "1.0.6.0",
  119. "fileVersion": "1.0.6.0"
  120. }
  121. }
  122. },
  123. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  124. "dependencies": {
  125. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  126. "System.Text.Encodings.Web": "4.5.0"
  127. },
  128. "runtime": {
  129. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  130. "assemblyVersion": "2.2.0.0",
  131. "fileVersion": "2.2.0.18316"
  132. }
  133. }
  134. },
  135. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  136. "dependencies": {
  137. "Microsoft.Extensions.Primitives": "7.0.0"
  138. },
  139. "runtime": {
  140. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {
  141. "assemblyVersion": "2.2.0.0",
  142. "fileVersion": "2.2.0.18316"
  143. }
  144. }
  145. },
  146. "Microsoft.CSharp/4.7.0": {},
  147. "Microsoft.Data.SqlClient/2.1.1": {
  148. "dependencies": {
  149. "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1",
  150. "Microsoft.Identity.Client": "4.21.1",
  151. "Microsoft.IdentityModel.JsonWebTokens": "6.8.0",
  152. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0",
  153. "Microsoft.Win32.Registry": "4.7.0",
  154. "System.Configuration.ConfigurationManager": "4.7.0",
  155. "System.Diagnostics.DiagnosticSource": "4.7.1",
  156. "System.Runtime.Caching": "4.7.0",
  157. "System.Security.Principal.Windows": "4.7.0",
  158. "System.Text.Encoding.CodePages": "4.7.0"
  159. },
  160. "runtime": {
  161. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  162. "assemblyVersion": "2.0.20168.4",
  163. "fileVersion": "2.0.20168.4"
  164. }
  165. },
  166. "runtimeTargets": {
  167. "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  168. "rid": "unix",
  169. "assetType": "runtime",
  170. "assemblyVersion": "2.0.20168.4",
  171. "fileVersion": "2.0.20168.4"
  172. },
  173. "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  174. "rid": "win",
  175. "assetType": "runtime",
  176. "assemblyVersion": "2.0.20168.4",
  177. "fileVersion": "2.0.20168.4"
  178. }
  179. }
  180. },
  181. "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": {
  182. "runtimeTargets": {
  183. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": {
  184. "rid": "win-arm",
  185. "assetType": "native",
  186. "fileVersion": "2.1.1.0"
  187. },
  188. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": {
  189. "rid": "win-arm64",
  190. "assetType": "native",
  191. "fileVersion": "2.1.1.0"
  192. },
  193. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": {
  194. "rid": "win-x64",
  195. "assetType": "native",
  196. "fileVersion": "2.1.1.0"
  197. },
  198. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": {
  199. "rid": "win-x86",
  200. "assetType": "native",
  201. "fileVersion": "2.1.1.0"
  202. }
  203. }
  204. },
  205. "Microsoft.Data.Sqlite/5.0.5": {
  206. "dependencies": {
  207. "Microsoft.Data.Sqlite.Core": "5.0.5",
  208. "SQLitePCLRaw.bundle_e_sqlite3": "2.0.4"
  209. }
  210. },
  211. "Microsoft.Data.Sqlite.Core/5.0.5": {
  212. "dependencies": {
  213. "SQLitePCLRaw.core": "2.0.4"
  214. },
  215. "runtime": {
  216. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {
  217. "assemblyVersion": "5.0.5.0",
  218. "fileVersion": "5.0.521.16102"
  219. }
  220. }
  221. },
  222. "Microsoft.Extensions.Configuration.Abstractions/7.0.0": {
  223. "dependencies": {
  224. "Microsoft.Extensions.Primitives": "7.0.0"
  225. },
  226. "runtime": {
  227. "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  228. "assemblyVersion": "7.0.0.0",
  229. "fileVersion": "7.0.22.51805"
  230. }
  231. }
  232. },
  233. "Microsoft.Extensions.Configuration.Binder/7.0.0": {
  234. "dependencies": {
  235. "Microsoft.Extensions.Configuration.Abstractions": "7.0.0"
  236. },
  237. "runtime": {
  238. "lib/net6.0/Microsoft.Extensions.Configuration.Binder.dll": {
  239. "assemblyVersion": "7.0.0.0",
  240. "fileVersion": "7.0.22.51805"
  241. }
  242. }
  243. },
  244. "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
  245. "runtime": {
  246. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  247. "assemblyVersion": "6.0.0.0",
  248. "fileVersion": "6.0.21.52210"
  249. }
  250. }
  251. },
  252. "Microsoft.Extensions.Options/6.0.0": {
  253. "dependencies": {
  254. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  255. "Microsoft.Extensions.Primitives": "7.0.0"
  256. },
  257. "runtime": {
  258. "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {
  259. "assemblyVersion": "6.0.0.0",
  260. "fileVersion": "6.0.21.52210"
  261. }
  262. }
  263. },
  264. "Microsoft.Extensions.Primitives/7.0.0": {
  265. "dependencies": {
  266. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  267. },
  268. "runtime": {
  269. "lib/net6.0/Microsoft.Extensions.Primitives.dll": {
  270. "assemblyVersion": "7.0.0.0",
  271. "fileVersion": "7.0.22.51805"
  272. }
  273. }
  274. },
  275. "Microsoft.Identity.Client/4.21.1": {
  276. "runtime": {
  277. "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": {
  278. "assemblyVersion": "4.21.1.0",
  279. "fileVersion": "4.21.1.0"
  280. }
  281. }
  282. },
  283. "Microsoft.IdentityModel.JsonWebTokens/6.8.0": {
  284. "dependencies": {
  285. "Microsoft.IdentityModel.Tokens": "6.8.0"
  286. },
  287. "runtime": {
  288. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  289. "assemblyVersion": "6.8.0.0",
  290. "fileVersion": "6.8.0.11012"
  291. }
  292. }
  293. },
  294. "Microsoft.IdentityModel.Logging/6.8.0": {
  295. "runtime": {
  296. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  297. "assemblyVersion": "6.8.0.0",
  298. "fileVersion": "6.8.0.11012"
  299. }
  300. }
  301. },
  302. "Microsoft.IdentityModel.Protocols/6.8.0": {
  303. "dependencies": {
  304. "Microsoft.IdentityModel.Logging": "6.8.0",
  305. "Microsoft.IdentityModel.Tokens": "6.8.0"
  306. },
  307. "runtime": {
  308. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {
  309. "assemblyVersion": "6.8.0.0",
  310. "fileVersion": "6.8.0.11012"
  311. }
  312. }
  313. },
  314. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": {
  315. "dependencies": {
  316. "Microsoft.IdentityModel.Protocols": "6.8.0",
  317. "System.IdentityModel.Tokens.Jwt": "6.8.0"
  318. },
  319. "runtime": {
  320. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  321. "assemblyVersion": "6.8.0.0",
  322. "fileVersion": "6.8.0.11012"
  323. }
  324. }
  325. },
  326. "Microsoft.IdentityModel.Tokens/6.8.0": {
  327. "dependencies": {
  328. "Microsoft.CSharp": "4.7.0",
  329. "Microsoft.IdentityModel.Logging": "6.8.0",
  330. "System.Security.Cryptography.Cng": "4.5.0"
  331. },
  332. "runtime": {
  333. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  334. "assemblyVersion": "6.8.0.0",
  335. "fileVersion": "6.8.0.11012"
  336. }
  337. }
  338. },
  339. "Microsoft.NETCore.Platforms/3.1.0": {},
  340. "Microsoft.NETCore.Targets/1.1.0": {},
  341. "Microsoft.Win32.Primitives/4.3.0": {
  342. "dependencies": {
  343. "Microsoft.NETCore.Platforms": "3.1.0",
  344. "Microsoft.NETCore.Targets": "1.1.0",
  345. "System.Runtime": "4.3.0"
  346. }
  347. },
  348. "Microsoft.Win32.Registry/4.7.0": {
  349. "dependencies": {
  350. "System.Security.AccessControl": "4.7.0",
  351. "System.Security.Principal.Windows": "4.7.0"
  352. }
  353. },
  354. "Microsoft.Win32.SystemEvents/4.7.0": {
  355. "dependencies": {
  356. "Microsoft.NETCore.Platforms": "3.1.0"
  357. },
  358. "runtime": {
  359. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
  360. "assemblyVersion": "4.0.2.0",
  361. "fileVersion": "4.700.19.56404"
  362. }
  363. },
  364. "runtimeTargets": {
  365. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  366. "rid": "win",
  367. "assetType": "runtime",
  368. "assemblyVersion": "4.0.2.0",
  369. "fileVersion": "4.700.19.56404"
  370. }
  371. }
  372. },
  373. "MySql.Data/8.0.29": {
  374. "dependencies": {
  375. "BouncyCastle.NetCore": "1.8.5",
  376. "Google.Protobuf": "3.19.4",
  377. "K4os.Compression.LZ4.Streams": "1.2.6",
  378. "System.Buffers": "4.5.1",
  379. "System.Configuration.ConfigurationManager": "4.7.0",
  380. "System.Runtime.CompilerServices.Unsafe": "6.0.0",
  381. "System.Security.Permissions": "4.7.0",
  382. "System.Text.Encoding.CodePages": "4.7.0"
  383. },
  384. "runtime": {
  385. "lib/net6.0/MySql.Data.dll": {
  386. "assemblyVersion": "8.0.29.0",
  387. "fileVersion": "8.0.29.0"
  388. },
  389. "lib/net6.0/Ubiety.Dns.Core.dll": {
  390. "assemblyVersion": "2.2.1.0",
  391. "fileVersion": "2.2.1.0"
  392. },
  393. "lib/net6.0/ZstdNet.dll": {
  394. "assemblyVersion": "1.4.5.0",
  395. "fileVersion": "1.4.5.0"
  396. }
  397. }
  398. },
  399. "NETStandard.Library/1.6.1": {
  400. "dependencies": {
  401. "Microsoft.NETCore.Platforms": "3.1.0",
  402. "Microsoft.Win32.Primitives": "4.3.0",
  403. "System.AppContext": "4.3.0",
  404. "System.Collections": "4.3.0",
  405. "System.Collections.Concurrent": "4.3.0",
  406. "System.Console": "4.3.0",
  407. "System.Diagnostics.Debug": "4.3.0",
  408. "System.Diagnostics.Tools": "4.3.0",
  409. "System.Diagnostics.Tracing": "4.3.0",
  410. "System.Globalization": "4.3.0",
  411. "System.Globalization.Calendars": "4.3.0",
  412. "System.IO": "4.3.0",
  413. "System.IO.Compression": "4.3.0",
  414. "System.IO.Compression.ZipFile": "4.3.0",
  415. "System.IO.FileSystem": "4.3.0",
  416. "System.IO.FileSystem.Primitives": "4.3.0",
  417. "System.Linq": "4.3.0",
  418. "System.Linq.Expressions": "4.3.0",
  419. "System.Net.Http": "4.3.0",
  420. "System.Net.Primitives": "4.3.0",
  421. "System.Net.Sockets": "4.3.0",
  422. "System.ObjectModel": "4.3.0",
  423. "System.Reflection": "4.3.0",
  424. "System.Reflection.Extensions": "4.3.0",
  425. "System.Reflection.Primitives": "4.3.0",
  426. "System.Resources.ResourceManager": "4.3.0",
  427. "System.Runtime": "4.3.0",
  428. "System.Runtime.Extensions": "4.3.0",
  429. "System.Runtime.Handles": "4.3.0",
  430. "System.Runtime.InteropServices": "4.3.0",
  431. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  432. "System.Runtime.Numerics": "4.3.0",
  433. "System.Security.Cryptography.Algorithms": "4.3.0",
  434. "System.Security.Cryptography.Encoding": "4.3.0",
  435. "System.Security.Cryptography.Primitives": "4.3.0",
  436. "System.Security.Cryptography.X509Certificates": "4.3.0",
  437. "System.Text.Encoding": "4.3.0",
  438. "System.Text.Encoding.Extensions": "4.3.0",
  439. "System.Text.RegularExpressions": "4.3.0",
  440. "System.Threading": "4.3.0",
  441. "System.Threading.Tasks": "4.3.0",
  442. "System.Threading.Timer": "4.3.0",
  443. "System.Xml.ReaderWriter": "4.3.0",
  444. "System.Xml.XDocument": "4.3.0"
  445. }
  446. },
  447. "Newtonsoft.Json/10.0.3": {
  448. "dependencies": {
  449. "Microsoft.CSharp": "4.7.0",
  450. "NETStandard.Library": "1.6.1",
  451. "System.ComponentModel.TypeConverter": "4.3.0",
  452. "System.Runtime.Serialization.Formatters": "4.3.0",
  453. "System.Runtime.Serialization.Primitives": "4.3.0",
  454. "System.Xml.XmlDocument": "4.3.0"
  455. },
  456. "runtime": {
  457. "lib/netstandard1.3/Newtonsoft.Json.dll": {
  458. "assemblyVersion": "10.0.0.0",
  459. "fileVersion": "10.0.3.21018"
  460. }
  461. }
  462. },
  463. "Npgsql/5.0.7": {
  464. "dependencies": {
  465. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  466. },
  467. "runtime": {
  468. "lib/net5.0/Npgsql.dll": {
  469. "assemblyVersion": "5.0.7.0",
  470. "fileVersion": "5.0.7.0"
  471. }
  472. }
  473. },
  474. "Oracle.ManagedDataAccess.Core/3.21.1": {
  475. "dependencies": {
  476. "System.Diagnostics.PerformanceCounter": "4.7.0",
  477. "System.DirectoryServices": "4.7.0",
  478. "System.DirectoryServices.Protocols": "4.7.0",
  479. "System.Text.Json": "4.7.1"
  480. },
  481. "runtime": {
  482. "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": {
  483. "assemblyVersion": "3.1.21.1",
  484. "fileVersion": "3.1.21.1"
  485. }
  486. }
  487. },
  488. "Pipelines.Sockets.Unofficial/2.2.2": {
  489. "dependencies": {
  490. "System.IO.Pipelines": "5.0.1"
  491. },
  492. "runtime": {
  493. "lib/net5.0/Pipelines.Sockets.Unofficial.dll": {
  494. "assemblyVersion": "1.0.0.0",
  495. "fileVersion": "2.2.2.34088"
  496. }
  497. }
  498. },
  499. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  500. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  501. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  502. "runtime.native.System/4.3.0": {
  503. "dependencies": {
  504. "Microsoft.NETCore.Platforms": "3.1.0",
  505. "Microsoft.NETCore.Targets": "1.1.0"
  506. }
  507. },
  508. "runtime.native.System.IO.Compression/4.3.0": {
  509. "dependencies": {
  510. "Microsoft.NETCore.Platforms": "3.1.0",
  511. "Microsoft.NETCore.Targets": "1.1.0"
  512. }
  513. },
  514. "runtime.native.System.Net.Http/4.3.0": {
  515. "dependencies": {
  516. "Microsoft.NETCore.Platforms": "3.1.0",
  517. "Microsoft.NETCore.Targets": "1.1.0"
  518. }
  519. },
  520. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  521. "dependencies": {
  522. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  523. }
  524. },
  525. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  526. "dependencies": {
  527. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  528. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  529. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  530. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  531. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  532. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  533. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  534. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  535. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  536. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  537. }
  538. },
  539. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  540. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  541. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {},
  542. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  543. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  544. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  545. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  546. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  547. "Serilog/2.10.0": {
  548. "runtime": {
  549. "lib/netstandard2.1/Serilog.dll": {
  550. "assemblyVersion": "2.0.0.0",
  551. "fileVersion": "2.10.0.0"
  552. }
  553. }
  554. },
  555. "Serilog.Sinks.File/5.0.0": {
  556. "dependencies": {
  557. "Serilog": "2.10.0"
  558. },
  559. "runtime": {
  560. "lib/net5.0/Serilog.Sinks.File.dll": {
  561. "assemblyVersion": "5.0.0.0",
  562. "fileVersion": "5.0.0.0"
  563. }
  564. }
  565. },
  566. "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": {
  567. "dependencies": {
  568. "SQLitePCLRaw.core": "2.0.4",
  569. "SQLitePCLRaw.lib.e_sqlite3": "2.0.4",
  570. "SQLitePCLRaw.provider.dynamic_cdecl": "2.0.4"
  571. },
  572. "runtime": {
  573. "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": {
  574. "assemblyVersion": "2.0.4.976",
  575. "fileVersion": "2.0.4.976"
  576. },
  577. "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": {
  578. "assemblyVersion": "2.0.4.976",
  579. "fileVersion": "2.0.4.976"
  580. }
  581. }
  582. },
  583. "SQLitePCLRaw.core/2.0.4": {
  584. "dependencies": {
  585. "System.Memory": "4.5.4"
  586. },
  587. "runtime": {
  588. "lib/netstandard2.0/SQLitePCLRaw.core.dll": {
  589. "assemblyVersion": "2.0.4.976",
  590. "fileVersion": "2.0.4.976"
  591. }
  592. }
  593. },
  594. "SQLitePCLRaw.lib.e_sqlite3/2.0.4": {
  595. "runtimeTargets": {
  596. "runtimes/alpine-x64/native/libe_sqlite3.so": {
  597. "rid": "alpine-x64",
  598. "assetType": "native",
  599. "fileVersion": "0.0.0.0"
  600. },
  601. "runtimes/linux-arm/native/libe_sqlite3.so": {
  602. "rid": "linux-arm",
  603. "assetType": "native",
  604. "fileVersion": "0.0.0.0"
  605. },
  606. "runtimes/linux-arm64/native/libe_sqlite3.so": {
  607. "rid": "linux-arm64",
  608. "assetType": "native",
  609. "fileVersion": "0.0.0.0"
  610. },
  611. "runtimes/linux-armel/native/libe_sqlite3.so": {
  612. "rid": "linux-armel",
  613. "assetType": "native",
  614. "fileVersion": "0.0.0.0"
  615. },
  616. "runtimes/linux-mips64/native/libe_sqlite3.so": {
  617. "rid": "linux-mips64",
  618. "assetType": "native",
  619. "fileVersion": "0.0.0.0"
  620. },
  621. "runtimes/linux-musl-x64/native/libe_sqlite3.so": {
  622. "rid": "linux-musl-x64",
  623. "assetType": "native",
  624. "fileVersion": "0.0.0.0"
  625. },
  626. "runtimes/linux-x64/native/libe_sqlite3.so": {
  627. "rid": "linux-x64",
  628. "assetType": "native",
  629. "fileVersion": "0.0.0.0"
  630. },
  631. "runtimes/linux-x86/native/libe_sqlite3.so": {
  632. "rid": "linux-x86",
  633. "assetType": "native",
  634. "fileVersion": "0.0.0.0"
  635. },
  636. "runtimes/osx-x64/native/libe_sqlite3.dylib": {
  637. "rid": "osx-x64",
  638. "assetType": "native",
  639. "fileVersion": "0.0.0.0"
  640. },
  641. "runtimes/win-arm/native/e_sqlite3.dll": {
  642. "rid": "win-arm",
  643. "assetType": "native",
  644. "fileVersion": "0.0.0.0"
  645. },
  646. "runtimes/win-arm64/native/e_sqlite3.dll": {
  647. "rid": "win-arm64",
  648. "assetType": "native",
  649. "fileVersion": "0.0.0.0"
  650. },
  651. "runtimes/win-x64/native/e_sqlite3.dll": {
  652. "rid": "win-x64",
  653. "assetType": "native",
  654. "fileVersion": "0.0.0.0"
  655. },
  656. "runtimes/win-x86/native/e_sqlite3.dll": {
  657. "rid": "win-x86",
  658. "assetType": "native",
  659. "fileVersion": "0.0.0.0"
  660. }
  661. }
  662. },
  663. "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": {
  664. "dependencies": {
  665. "SQLitePCLRaw.core": "2.0.4"
  666. },
  667. "runtime": {
  668. "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": {
  669. "assemblyVersion": "2.0.4.976",
  670. "fileVersion": "2.0.4.976"
  671. }
  672. }
  673. },
  674. "SqlSugarCore/5.1.3.32": {
  675. "dependencies": {
  676. "Microsoft.Data.SqlClient": "2.1.1",
  677. "Microsoft.Data.Sqlite": "5.0.5",
  678. "MySql.Data": "8.0.29",
  679. "Newtonsoft.Json": "10.0.3",
  680. "Npgsql": "5.0.7",
  681. "Oracle.ManagedDataAccess.Core": "3.21.1",
  682. "SqlSugarCore.Dm": "1.0.0",
  683. "SqlSugarCore.Kdbndp": "1.0.0",
  684. "System.Data.Common": "4.3.0",
  685. "System.Reflection.Emit.Lightweight": "4.3.0"
  686. },
  687. "runtime": {
  688. "lib/netstandard2.1/SqlSugar.dll": {
  689. "assemblyVersion": "5.1.3.32",
  690. "fileVersion": "5.1.3.32"
  691. }
  692. }
  693. },
  694. "SqlSugarCore.Dm/1.0.0": {
  695. "runtime": {
  696. "lib/netstandard2.0/DmProvider.dll": {
  697. "assemblyVersion": "1.1.0.0",
  698. "fileVersion": "1.1.0.42711"
  699. }
  700. }
  701. },
  702. "SqlSugarCore.Kdbndp/1.0.0": {
  703. "runtime": {
  704. "lib/netstandard2.0/Kdbndp.dll": {
  705. "assemblyVersion": "4.0.7.0",
  706. "fileVersion": "4.0.7.0"
  707. }
  708. }
  709. },
  710. "StackExchange.Redis/2.6.96": {
  711. "dependencies": {
  712. "Pipelines.Sockets.Unofficial": "2.2.2"
  713. },
  714. "runtime": {
  715. "lib/net5.0/StackExchange.Redis.dll": {
  716. "assemblyVersion": "2.0.0.0",
  717. "fileVersion": "2.6.96.30123"
  718. }
  719. }
  720. },
  721. "System.AppContext/4.3.0": {
  722. "dependencies": {
  723. "System.Runtime": "4.3.0"
  724. }
  725. },
  726. "System.Buffers/4.5.1": {},
  727. "System.Collections/4.3.0": {
  728. "dependencies": {
  729. "Microsoft.NETCore.Platforms": "3.1.0",
  730. "Microsoft.NETCore.Targets": "1.1.0",
  731. "System.Runtime": "4.3.0"
  732. }
  733. },
  734. "System.Collections.Concurrent/4.3.0": {
  735. "dependencies": {
  736. "System.Collections": "4.3.0",
  737. "System.Diagnostics.Debug": "4.3.0",
  738. "System.Diagnostics.Tracing": "4.3.0",
  739. "System.Globalization": "4.3.0",
  740. "System.Reflection": "4.3.0",
  741. "System.Resources.ResourceManager": "4.3.0",
  742. "System.Runtime": "4.3.0",
  743. "System.Runtime.Extensions": "4.3.0",
  744. "System.Threading": "4.3.0",
  745. "System.Threading.Tasks": "4.3.0"
  746. }
  747. },
  748. "System.Collections.NonGeneric/4.3.0": {
  749. "dependencies": {
  750. "System.Diagnostics.Debug": "4.3.0",
  751. "System.Globalization": "4.3.0",
  752. "System.Resources.ResourceManager": "4.3.0",
  753. "System.Runtime": "4.3.0",
  754. "System.Runtime.Extensions": "4.3.0",
  755. "System.Threading": "4.3.0"
  756. }
  757. },
  758. "System.Collections.Specialized/4.3.0": {
  759. "dependencies": {
  760. "System.Collections.NonGeneric": "4.3.0",
  761. "System.Globalization": "4.3.0",
  762. "System.Globalization.Extensions": "4.3.0",
  763. "System.Resources.ResourceManager": "4.3.0",
  764. "System.Runtime": "4.3.0",
  765. "System.Runtime.Extensions": "4.3.0",
  766. "System.Threading": "4.3.0"
  767. }
  768. },
  769. "System.ComponentModel/4.3.0": {
  770. "dependencies": {
  771. "System.Runtime": "4.3.0"
  772. }
  773. },
  774. "System.ComponentModel.Primitives/4.3.0": {
  775. "dependencies": {
  776. "System.ComponentModel": "4.3.0",
  777. "System.Resources.ResourceManager": "4.3.0",
  778. "System.Runtime": "4.3.0"
  779. }
  780. },
  781. "System.ComponentModel.TypeConverter/4.3.0": {
  782. "dependencies": {
  783. "System.Collections": "4.3.0",
  784. "System.Collections.NonGeneric": "4.3.0",
  785. "System.Collections.Specialized": "4.3.0",
  786. "System.ComponentModel": "4.3.0",
  787. "System.ComponentModel.Primitives": "4.3.0",
  788. "System.Globalization": "4.3.0",
  789. "System.Linq": "4.3.0",
  790. "System.Reflection": "4.3.0",
  791. "System.Reflection.Extensions": "4.3.0",
  792. "System.Reflection.Primitives": "4.3.0",
  793. "System.Reflection.TypeExtensions": "4.3.0",
  794. "System.Resources.ResourceManager": "4.3.0",
  795. "System.Runtime": "4.3.0",
  796. "System.Runtime.Extensions": "4.3.0",
  797. "System.Threading": "4.3.0"
  798. }
  799. },
  800. "System.Configuration.ConfigurationManager/4.7.0": {
  801. "dependencies": {
  802. "System.Security.Cryptography.ProtectedData": "4.7.0",
  803. "System.Security.Permissions": "4.7.0"
  804. },
  805. "runtime": {
  806. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  807. "assemblyVersion": "4.0.3.0",
  808. "fileVersion": "4.700.19.56404"
  809. }
  810. }
  811. },
  812. "System.Console/4.3.0": {
  813. "dependencies": {
  814. "Microsoft.NETCore.Platforms": "3.1.0",
  815. "Microsoft.NETCore.Targets": "1.1.0",
  816. "System.IO": "4.3.0",
  817. "System.Runtime": "4.3.0",
  818. "System.Text.Encoding": "4.3.0"
  819. }
  820. },
  821. "System.Data.Common/4.3.0": {
  822. "dependencies": {
  823. "System.Collections": "4.3.0",
  824. "System.Globalization": "4.3.0",
  825. "System.IO": "4.3.0",
  826. "System.Resources.ResourceManager": "4.3.0",
  827. "System.Runtime": "4.3.0",
  828. "System.Runtime.Extensions": "4.3.0",
  829. "System.Text.RegularExpressions": "4.3.0",
  830. "System.Threading.Tasks": "4.3.0"
  831. }
  832. },
  833. "System.Diagnostics.Debug/4.3.0": {
  834. "dependencies": {
  835. "Microsoft.NETCore.Platforms": "3.1.0",
  836. "Microsoft.NETCore.Targets": "1.1.0",
  837. "System.Runtime": "4.3.0"
  838. }
  839. },
  840. "System.Diagnostics.DiagnosticSource/4.7.1": {},
  841. "System.Diagnostics.PerformanceCounter/4.7.0": {
  842. "dependencies": {
  843. "Microsoft.NETCore.Platforms": "3.1.0",
  844. "Microsoft.Win32.Registry": "4.7.0",
  845. "System.Configuration.ConfigurationManager": "4.7.0",
  846. "System.Security.Principal.Windows": "4.7.0"
  847. },
  848. "runtime": {
  849. "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {
  850. "assemblyVersion": "4.0.2.0",
  851. "fileVersion": "4.700.19.56404"
  852. }
  853. },
  854. "runtimeTargets": {
  855. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": {
  856. "rid": "win",
  857. "assetType": "runtime",
  858. "assemblyVersion": "4.0.2.0",
  859. "fileVersion": "4.700.19.56404"
  860. }
  861. }
  862. },
  863. "System.Diagnostics.Tools/4.3.0": {
  864. "dependencies": {
  865. "Microsoft.NETCore.Platforms": "3.1.0",
  866. "Microsoft.NETCore.Targets": "1.1.0",
  867. "System.Runtime": "4.3.0"
  868. }
  869. },
  870. "System.Diagnostics.Tracing/4.3.0": {
  871. "dependencies": {
  872. "Microsoft.NETCore.Platforms": "3.1.0",
  873. "Microsoft.NETCore.Targets": "1.1.0",
  874. "System.Runtime": "4.3.0"
  875. }
  876. },
  877. "System.DirectoryServices/4.7.0": {
  878. "dependencies": {
  879. "Microsoft.NETCore.Platforms": "3.1.0",
  880. "System.IO.FileSystem.AccessControl": "4.7.0",
  881. "System.Security.AccessControl": "4.7.0",
  882. "System.Security.Permissions": "4.7.0",
  883. "System.Security.Principal.Windows": "4.7.0"
  884. },
  885. "runtime": {
  886. "lib/netstandard2.0/System.DirectoryServices.dll": {
  887. "assemblyVersion": "4.0.1.0",
  888. "fileVersion": "4.700.19.56404"
  889. }
  890. },
  891. "runtimeTargets": {
  892. "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll": {
  893. "rid": "win",
  894. "assetType": "runtime",
  895. "assemblyVersion": "4.0.1.0",
  896. "fileVersion": "4.700.19.56404"
  897. }
  898. }
  899. },
  900. "System.DirectoryServices.Protocols/4.7.0": {
  901. "dependencies": {
  902. "Microsoft.NETCore.Platforms": "3.1.0",
  903. "System.Security.Principal.Windows": "4.7.0"
  904. },
  905. "runtime": {
  906. "lib/netstandard2.0/System.DirectoryServices.Protocols.dll": {
  907. "assemblyVersion": "4.0.1.0",
  908. "fileVersion": "4.700.19.56404"
  909. }
  910. },
  911. "runtimeTargets": {
  912. "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": {
  913. "rid": "win",
  914. "assetType": "runtime",
  915. "assemblyVersion": "4.0.1.0",
  916. "fileVersion": "4.700.19.56404"
  917. }
  918. }
  919. },
  920. "System.Drawing.Common/4.7.0": {
  921. "dependencies": {
  922. "Microsoft.NETCore.Platforms": "3.1.0",
  923. "Microsoft.Win32.SystemEvents": "4.7.0"
  924. },
  925. "runtime": {
  926. "lib/netstandard2.0/System.Drawing.Common.dll": {
  927. "assemblyVersion": "4.0.0.1",
  928. "fileVersion": "4.6.26919.2"
  929. }
  930. },
  931. "runtimeTargets": {
  932. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  933. "rid": "unix",
  934. "assetType": "runtime",
  935. "assemblyVersion": "4.0.2.0",
  936. "fileVersion": "4.700.19.56404"
  937. },
  938. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  939. "rid": "win",
  940. "assetType": "runtime",
  941. "assemblyVersion": "4.0.2.0",
  942. "fileVersion": "4.700.19.56404"
  943. }
  944. }
  945. },
  946. "System.Globalization/4.3.0": {
  947. "dependencies": {
  948. "Microsoft.NETCore.Platforms": "3.1.0",
  949. "Microsoft.NETCore.Targets": "1.1.0",
  950. "System.Runtime": "4.3.0"
  951. }
  952. },
  953. "System.Globalization.Calendars/4.3.0": {
  954. "dependencies": {
  955. "Microsoft.NETCore.Platforms": "3.1.0",
  956. "Microsoft.NETCore.Targets": "1.1.0",
  957. "System.Globalization": "4.3.0",
  958. "System.Runtime": "4.3.0"
  959. }
  960. },
  961. "System.Globalization.Extensions/4.3.0": {
  962. "dependencies": {
  963. "Microsoft.NETCore.Platforms": "3.1.0",
  964. "System.Globalization": "4.3.0",
  965. "System.Resources.ResourceManager": "4.3.0",
  966. "System.Runtime": "4.3.0",
  967. "System.Runtime.Extensions": "4.3.0",
  968. "System.Runtime.InteropServices": "4.3.0"
  969. }
  970. },
  971. "System.IdentityModel.Tokens.Jwt/6.8.0": {
  972. "dependencies": {
  973. "Microsoft.IdentityModel.JsonWebTokens": "6.8.0",
  974. "Microsoft.IdentityModel.Tokens": "6.8.0"
  975. },
  976. "runtime": {
  977. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  978. "assemblyVersion": "6.8.0.0",
  979. "fileVersion": "6.8.0.11012"
  980. }
  981. }
  982. },
  983. "System.IO/4.3.0": {
  984. "dependencies": {
  985. "Microsoft.NETCore.Platforms": "3.1.0",
  986. "Microsoft.NETCore.Targets": "1.1.0",
  987. "System.Runtime": "4.3.0",
  988. "System.Text.Encoding": "4.3.0",
  989. "System.Threading.Tasks": "4.3.0"
  990. }
  991. },
  992. "System.IO.Compression/4.3.0": {
  993. "dependencies": {
  994. "Microsoft.NETCore.Platforms": "3.1.0",
  995. "System.Buffers": "4.5.1",
  996. "System.Collections": "4.3.0",
  997. "System.Diagnostics.Debug": "4.3.0",
  998. "System.IO": "4.3.0",
  999. "System.Resources.ResourceManager": "4.3.0",
  1000. "System.Runtime": "4.3.0",
  1001. "System.Runtime.Extensions": "4.3.0",
  1002. "System.Runtime.Handles": "4.3.0",
  1003. "System.Runtime.InteropServices": "4.3.0",
  1004. "System.Text.Encoding": "4.3.0",
  1005. "System.Threading": "4.3.0",
  1006. "System.Threading.Tasks": "4.3.0",
  1007. "runtime.native.System": "4.3.0",
  1008. "runtime.native.System.IO.Compression": "4.3.0"
  1009. }
  1010. },
  1011. "System.IO.Compression.ZipFile/4.3.0": {
  1012. "dependencies": {
  1013. "System.Buffers": "4.5.1",
  1014. "System.IO": "4.3.0",
  1015. "System.IO.Compression": "4.3.0",
  1016. "System.IO.FileSystem": "4.3.0",
  1017. "System.IO.FileSystem.Primitives": "4.3.0",
  1018. "System.Resources.ResourceManager": "4.3.0",
  1019. "System.Runtime": "4.3.0",
  1020. "System.Runtime.Extensions": "4.3.0",
  1021. "System.Text.Encoding": "4.3.0"
  1022. }
  1023. },
  1024. "System.IO.FileSystem/4.3.0": {
  1025. "dependencies": {
  1026. "Microsoft.NETCore.Platforms": "3.1.0",
  1027. "Microsoft.NETCore.Targets": "1.1.0",
  1028. "System.IO": "4.3.0",
  1029. "System.IO.FileSystem.Primitives": "4.3.0",
  1030. "System.Runtime": "4.3.0",
  1031. "System.Runtime.Handles": "4.3.0",
  1032. "System.Text.Encoding": "4.3.0",
  1033. "System.Threading.Tasks": "4.3.0"
  1034. }
  1035. },
  1036. "System.IO.FileSystem.AccessControl/4.7.0": {
  1037. "dependencies": {
  1038. "System.Security.AccessControl": "4.7.0",
  1039. "System.Security.Principal.Windows": "4.7.0"
  1040. }
  1041. },
  1042. "System.IO.FileSystem.Primitives/4.3.0": {
  1043. "dependencies": {
  1044. "System.Runtime": "4.3.0"
  1045. }
  1046. },
  1047. "System.IO.Pipelines/5.0.1": {
  1048. "runtime": {
  1049. "lib/netcoreapp3.0/System.IO.Pipelines.dll": {
  1050. "assemblyVersion": "5.0.0.1",
  1051. "fileVersion": "5.0.120.57516"
  1052. }
  1053. }
  1054. },
  1055. "System.Linq/4.3.0": {
  1056. "dependencies": {
  1057. "System.Collections": "4.3.0",
  1058. "System.Diagnostics.Debug": "4.3.0",
  1059. "System.Resources.ResourceManager": "4.3.0",
  1060. "System.Runtime": "4.3.0",
  1061. "System.Runtime.Extensions": "4.3.0"
  1062. }
  1063. },
  1064. "System.Linq.Expressions/4.3.0": {
  1065. "dependencies": {
  1066. "System.Collections": "4.3.0",
  1067. "System.Diagnostics.Debug": "4.3.0",
  1068. "System.Globalization": "4.3.0",
  1069. "System.IO": "4.3.0",
  1070. "System.Linq": "4.3.0",
  1071. "System.ObjectModel": "4.3.0",
  1072. "System.Reflection": "4.3.0",
  1073. "System.Reflection.Emit": "4.3.0",
  1074. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1075. "System.Reflection.Emit.Lightweight": "4.3.0",
  1076. "System.Reflection.Extensions": "4.3.0",
  1077. "System.Reflection.Primitives": "4.3.0",
  1078. "System.Reflection.TypeExtensions": "4.3.0",
  1079. "System.Resources.ResourceManager": "4.3.0",
  1080. "System.Runtime": "4.3.0",
  1081. "System.Runtime.Extensions": "4.3.0",
  1082. "System.Threading": "4.3.0"
  1083. }
  1084. },
  1085. "System.Memory/4.5.4": {},
  1086. "System.Net.Http/4.3.0": {
  1087. "dependencies": {
  1088. "Microsoft.NETCore.Platforms": "3.1.0",
  1089. "System.Collections": "4.3.0",
  1090. "System.Diagnostics.Debug": "4.3.0",
  1091. "System.Diagnostics.DiagnosticSource": "4.7.1",
  1092. "System.Diagnostics.Tracing": "4.3.0",
  1093. "System.Globalization": "4.3.0",
  1094. "System.Globalization.Extensions": "4.3.0",
  1095. "System.IO": "4.3.0",
  1096. "System.IO.FileSystem": "4.3.0",
  1097. "System.Net.Primitives": "4.3.0",
  1098. "System.Resources.ResourceManager": "4.3.0",
  1099. "System.Runtime": "4.3.0",
  1100. "System.Runtime.Extensions": "4.3.0",
  1101. "System.Runtime.Handles": "4.3.0",
  1102. "System.Runtime.InteropServices": "4.3.0",
  1103. "System.Security.Cryptography.Algorithms": "4.3.0",
  1104. "System.Security.Cryptography.Encoding": "4.3.0",
  1105. "System.Security.Cryptography.OpenSsl": "4.3.0",
  1106. "System.Security.Cryptography.Primitives": "4.3.0",
  1107. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1108. "System.Text.Encoding": "4.3.0",
  1109. "System.Threading": "4.3.0",
  1110. "System.Threading.Tasks": "4.3.0",
  1111. "runtime.native.System": "4.3.0",
  1112. "runtime.native.System.Net.Http": "4.3.0",
  1113. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1114. }
  1115. },
  1116. "System.Net.Primitives/4.3.0": {
  1117. "dependencies": {
  1118. "Microsoft.NETCore.Platforms": "3.1.0",
  1119. "Microsoft.NETCore.Targets": "1.1.0",
  1120. "System.Runtime": "4.3.0",
  1121. "System.Runtime.Handles": "4.3.0"
  1122. }
  1123. },
  1124. "System.Net.Sockets/4.3.0": {
  1125. "dependencies": {
  1126. "Microsoft.NETCore.Platforms": "3.1.0",
  1127. "Microsoft.NETCore.Targets": "1.1.0",
  1128. "System.IO": "4.3.0",
  1129. "System.Net.Primitives": "4.3.0",
  1130. "System.Runtime": "4.3.0",
  1131. "System.Threading.Tasks": "4.3.0"
  1132. }
  1133. },
  1134. "System.ObjectModel/4.3.0": {
  1135. "dependencies": {
  1136. "System.Collections": "4.3.0",
  1137. "System.Diagnostics.Debug": "4.3.0",
  1138. "System.Resources.ResourceManager": "4.3.0",
  1139. "System.Runtime": "4.3.0",
  1140. "System.Threading": "4.3.0"
  1141. }
  1142. },
  1143. "System.Reflection/4.3.0": {
  1144. "dependencies": {
  1145. "Microsoft.NETCore.Platforms": "3.1.0",
  1146. "Microsoft.NETCore.Targets": "1.1.0",
  1147. "System.IO": "4.3.0",
  1148. "System.Reflection.Primitives": "4.3.0",
  1149. "System.Runtime": "4.3.0"
  1150. }
  1151. },
  1152. "System.Reflection.Emit/4.3.0": {
  1153. "dependencies": {
  1154. "System.IO": "4.3.0",
  1155. "System.Reflection": "4.3.0",
  1156. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1157. "System.Reflection.Primitives": "4.3.0",
  1158. "System.Runtime": "4.3.0"
  1159. }
  1160. },
  1161. "System.Reflection.Emit.ILGeneration/4.3.0": {
  1162. "dependencies": {
  1163. "System.Reflection": "4.3.0",
  1164. "System.Reflection.Primitives": "4.3.0",
  1165. "System.Runtime": "4.3.0"
  1166. }
  1167. },
  1168. "System.Reflection.Emit.Lightweight/4.3.0": {
  1169. "dependencies": {
  1170. "System.Reflection": "4.3.0",
  1171. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1172. "System.Reflection.Primitives": "4.3.0",
  1173. "System.Runtime": "4.3.0"
  1174. }
  1175. },
  1176. "System.Reflection.Extensions/4.3.0": {
  1177. "dependencies": {
  1178. "Microsoft.NETCore.Platforms": "3.1.0",
  1179. "Microsoft.NETCore.Targets": "1.1.0",
  1180. "System.Reflection": "4.3.0",
  1181. "System.Runtime": "4.3.0"
  1182. }
  1183. },
  1184. "System.Reflection.Primitives/4.3.0": {
  1185. "dependencies": {
  1186. "Microsoft.NETCore.Platforms": "3.1.0",
  1187. "Microsoft.NETCore.Targets": "1.1.0",
  1188. "System.Runtime": "4.3.0"
  1189. }
  1190. },
  1191. "System.Reflection.TypeExtensions/4.3.0": {
  1192. "dependencies": {
  1193. "System.Reflection": "4.3.0",
  1194. "System.Runtime": "4.3.0"
  1195. }
  1196. },
  1197. "System.Resources.ResourceManager/4.3.0": {
  1198. "dependencies": {
  1199. "Microsoft.NETCore.Platforms": "3.1.0",
  1200. "Microsoft.NETCore.Targets": "1.1.0",
  1201. "System.Globalization": "4.3.0",
  1202. "System.Reflection": "4.3.0",
  1203. "System.Runtime": "4.3.0"
  1204. }
  1205. },
  1206. "System.Runtime/4.3.0": {
  1207. "dependencies": {
  1208. "Microsoft.NETCore.Platforms": "3.1.0",
  1209. "Microsoft.NETCore.Targets": "1.1.0"
  1210. }
  1211. },
  1212. "System.Runtime.Caching/4.7.0": {
  1213. "dependencies": {
  1214. "System.Configuration.ConfigurationManager": "4.7.0"
  1215. },
  1216. "runtime": {
  1217. "lib/netstandard2.0/System.Runtime.Caching.dll": {
  1218. "assemblyVersion": "4.0.1.0",
  1219. "fileVersion": "4.700.19.56404"
  1220. }
  1221. },
  1222. "runtimeTargets": {
  1223. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": {
  1224. "rid": "win",
  1225. "assetType": "runtime",
  1226. "assemblyVersion": "4.0.1.0",
  1227. "fileVersion": "4.700.19.56404"
  1228. }
  1229. }
  1230. },
  1231. "System.Runtime.CompilerServices.Unsafe/6.0.0": {},
  1232. "System.Runtime.Extensions/4.3.0": {
  1233. "dependencies": {
  1234. "Microsoft.NETCore.Platforms": "3.1.0",
  1235. "Microsoft.NETCore.Targets": "1.1.0",
  1236. "System.Runtime": "4.3.0"
  1237. }
  1238. },
  1239. "System.Runtime.Handles/4.3.0": {
  1240. "dependencies": {
  1241. "Microsoft.NETCore.Platforms": "3.1.0",
  1242. "Microsoft.NETCore.Targets": "1.1.0",
  1243. "System.Runtime": "4.3.0"
  1244. }
  1245. },
  1246. "System.Runtime.InteropServices/4.3.0": {
  1247. "dependencies": {
  1248. "Microsoft.NETCore.Platforms": "3.1.0",
  1249. "Microsoft.NETCore.Targets": "1.1.0",
  1250. "System.Reflection": "4.3.0",
  1251. "System.Reflection.Primitives": "4.3.0",
  1252. "System.Runtime": "4.3.0",
  1253. "System.Runtime.Handles": "4.3.0"
  1254. }
  1255. },
  1256. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  1257. "dependencies": {
  1258. "System.Reflection": "4.3.0",
  1259. "System.Reflection.Extensions": "4.3.0",
  1260. "System.Resources.ResourceManager": "4.3.0",
  1261. "System.Runtime": "4.3.0",
  1262. "System.Runtime.InteropServices": "4.3.0",
  1263. "System.Threading": "4.3.0",
  1264. "runtime.native.System": "4.3.0"
  1265. }
  1266. },
  1267. "System.Runtime.Numerics/4.3.0": {
  1268. "dependencies": {
  1269. "System.Globalization": "4.3.0",
  1270. "System.Resources.ResourceManager": "4.3.0",
  1271. "System.Runtime": "4.3.0",
  1272. "System.Runtime.Extensions": "4.3.0"
  1273. }
  1274. },
  1275. "System.Runtime.Serialization.Formatters/4.3.0": {
  1276. "dependencies": {
  1277. "System.Collections": "4.3.0",
  1278. "System.Reflection": "4.3.0",
  1279. "System.Resources.ResourceManager": "4.3.0",
  1280. "System.Runtime": "4.3.0",
  1281. "System.Runtime.Serialization.Primitives": "4.3.0"
  1282. }
  1283. },
  1284. "System.Runtime.Serialization.Primitives/4.3.0": {
  1285. "dependencies": {
  1286. "System.Resources.ResourceManager": "4.3.0",
  1287. "System.Runtime": "4.3.0"
  1288. }
  1289. },
  1290. "System.Security.AccessControl/4.7.0": {
  1291. "dependencies": {
  1292. "Microsoft.NETCore.Platforms": "3.1.0",
  1293. "System.Security.Principal.Windows": "4.7.0"
  1294. }
  1295. },
  1296. "System.Security.Cryptography.Algorithms/4.3.0": {
  1297. "dependencies": {
  1298. "Microsoft.NETCore.Platforms": "3.1.0",
  1299. "System.Collections": "4.3.0",
  1300. "System.IO": "4.3.0",
  1301. "System.Resources.ResourceManager": "4.3.0",
  1302. "System.Runtime": "4.3.0",
  1303. "System.Runtime.Extensions": "4.3.0",
  1304. "System.Runtime.Handles": "4.3.0",
  1305. "System.Runtime.InteropServices": "4.3.0",
  1306. "System.Runtime.Numerics": "4.3.0",
  1307. "System.Security.Cryptography.Encoding": "4.3.0",
  1308. "System.Security.Cryptography.Primitives": "4.3.0",
  1309. "System.Text.Encoding": "4.3.0",
  1310. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  1311. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1312. }
  1313. },
  1314. "System.Security.Cryptography.Cng/4.5.0": {},
  1315. "System.Security.Cryptography.Csp/4.3.0": {
  1316. "dependencies": {
  1317. "Microsoft.NETCore.Platforms": "3.1.0",
  1318. "System.IO": "4.3.0",
  1319. "System.Reflection": "4.3.0",
  1320. "System.Resources.ResourceManager": "4.3.0",
  1321. "System.Runtime": "4.3.0",
  1322. "System.Runtime.Extensions": "4.3.0",
  1323. "System.Runtime.Handles": "4.3.0",
  1324. "System.Runtime.InteropServices": "4.3.0",
  1325. "System.Security.Cryptography.Algorithms": "4.3.0",
  1326. "System.Security.Cryptography.Encoding": "4.3.0",
  1327. "System.Security.Cryptography.Primitives": "4.3.0",
  1328. "System.Text.Encoding": "4.3.0",
  1329. "System.Threading": "4.3.0"
  1330. }
  1331. },
  1332. "System.Security.Cryptography.Encoding/4.3.0": {
  1333. "dependencies": {
  1334. "Microsoft.NETCore.Platforms": "3.1.0",
  1335. "System.Collections": "4.3.0",
  1336. "System.Collections.Concurrent": "4.3.0",
  1337. "System.Linq": "4.3.0",
  1338. "System.Resources.ResourceManager": "4.3.0",
  1339. "System.Runtime": "4.3.0",
  1340. "System.Runtime.Extensions": "4.3.0",
  1341. "System.Runtime.Handles": "4.3.0",
  1342. "System.Runtime.InteropServices": "4.3.0",
  1343. "System.Security.Cryptography.Primitives": "4.3.0",
  1344. "System.Text.Encoding": "4.3.0",
  1345. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1346. }
  1347. },
  1348. "System.Security.Cryptography.OpenSsl/4.3.0": {
  1349. "dependencies": {
  1350. "System.Collections": "4.3.0",
  1351. "System.IO": "4.3.0",
  1352. "System.Resources.ResourceManager": "4.3.0",
  1353. "System.Runtime": "4.3.0",
  1354. "System.Runtime.Extensions": "4.3.0",
  1355. "System.Runtime.Handles": "4.3.0",
  1356. "System.Runtime.InteropServices": "4.3.0",
  1357. "System.Runtime.Numerics": "4.3.0",
  1358. "System.Security.Cryptography.Algorithms": "4.3.0",
  1359. "System.Security.Cryptography.Encoding": "4.3.0",
  1360. "System.Security.Cryptography.Primitives": "4.3.0",
  1361. "System.Text.Encoding": "4.3.0",
  1362. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1363. }
  1364. },
  1365. "System.Security.Cryptography.Primitives/4.3.0": {
  1366. "dependencies": {
  1367. "System.Diagnostics.Debug": "4.3.0",
  1368. "System.Globalization": "4.3.0",
  1369. "System.IO": "4.3.0",
  1370. "System.Resources.ResourceManager": "4.3.0",
  1371. "System.Runtime": "4.3.0",
  1372. "System.Threading": "4.3.0",
  1373. "System.Threading.Tasks": "4.3.0"
  1374. }
  1375. },
  1376. "System.Security.Cryptography.ProtectedData/4.7.0": {
  1377. "runtime": {
  1378. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  1379. "assemblyVersion": "4.0.5.0",
  1380. "fileVersion": "4.700.19.56404"
  1381. }
  1382. },
  1383. "runtimeTargets": {
  1384. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  1385. "rid": "win",
  1386. "assetType": "runtime",
  1387. "assemblyVersion": "4.0.5.0",
  1388. "fileVersion": "4.700.19.56404"
  1389. }
  1390. }
  1391. },
  1392. "System.Security.Cryptography.X509Certificates/4.3.0": {
  1393. "dependencies": {
  1394. "Microsoft.NETCore.Platforms": "3.1.0",
  1395. "System.Collections": "4.3.0",
  1396. "System.Diagnostics.Debug": "4.3.0",
  1397. "System.Globalization": "4.3.0",
  1398. "System.Globalization.Calendars": "4.3.0",
  1399. "System.IO": "4.3.0",
  1400. "System.IO.FileSystem": "4.3.0",
  1401. "System.IO.FileSystem.Primitives": "4.3.0",
  1402. "System.Resources.ResourceManager": "4.3.0",
  1403. "System.Runtime": "4.3.0",
  1404. "System.Runtime.Extensions": "4.3.0",
  1405. "System.Runtime.Handles": "4.3.0",
  1406. "System.Runtime.InteropServices": "4.3.0",
  1407. "System.Runtime.Numerics": "4.3.0",
  1408. "System.Security.Cryptography.Algorithms": "4.3.0",
  1409. "System.Security.Cryptography.Cng": "4.5.0",
  1410. "System.Security.Cryptography.Csp": "4.3.0",
  1411. "System.Security.Cryptography.Encoding": "4.3.0",
  1412. "System.Security.Cryptography.OpenSsl": "4.3.0",
  1413. "System.Security.Cryptography.Primitives": "4.3.0",
  1414. "System.Text.Encoding": "4.3.0",
  1415. "System.Threading": "4.3.0",
  1416. "runtime.native.System": "4.3.0",
  1417. "runtime.native.System.Net.Http": "4.3.0",
  1418. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1419. }
  1420. },
  1421. "System.Security.Permissions/4.7.0": {
  1422. "dependencies": {
  1423. "System.Security.AccessControl": "4.7.0",
  1424. "System.Windows.Extensions": "4.7.0"
  1425. },
  1426. "runtime": {
  1427. "lib/netcoreapp3.0/System.Security.Permissions.dll": {
  1428. "assemblyVersion": "4.0.3.0",
  1429. "fileVersion": "4.700.19.56404"
  1430. }
  1431. }
  1432. },
  1433. "System.Security.Principal.Windows/4.7.0": {},
  1434. "System.Text.Encoding/4.3.0": {
  1435. "dependencies": {
  1436. "Microsoft.NETCore.Platforms": "3.1.0",
  1437. "Microsoft.NETCore.Targets": "1.1.0",
  1438. "System.Runtime": "4.3.0"
  1439. }
  1440. },
  1441. "System.Text.Encoding.CodePages/4.7.0": {
  1442. "dependencies": {
  1443. "Microsoft.NETCore.Platforms": "3.1.0"
  1444. }
  1445. },
  1446. "System.Text.Encoding.Extensions/4.3.0": {
  1447. "dependencies": {
  1448. "Microsoft.NETCore.Platforms": "3.1.0",
  1449. "Microsoft.NETCore.Targets": "1.1.0",
  1450. "System.Runtime": "4.3.0",
  1451. "System.Text.Encoding": "4.3.0"
  1452. }
  1453. },
  1454. "System.Text.Encodings.Web/4.5.0": {},
  1455. "System.Text.Json/4.7.1": {},
  1456. "System.Text.RegularExpressions/4.3.0": {
  1457. "dependencies": {
  1458. "System.Runtime": "4.3.0"
  1459. }
  1460. },
  1461. "System.Threading/4.3.0": {
  1462. "dependencies": {
  1463. "System.Runtime": "4.3.0",
  1464. "System.Threading.Tasks": "4.3.0"
  1465. }
  1466. },
  1467. "System.Threading.Tasks/4.3.0": {
  1468. "dependencies": {
  1469. "Microsoft.NETCore.Platforms": "3.1.0",
  1470. "Microsoft.NETCore.Targets": "1.1.0",
  1471. "System.Runtime": "4.3.0"
  1472. }
  1473. },
  1474. "System.Threading.Tasks.Extensions/4.3.0": {
  1475. "dependencies": {
  1476. "System.Collections": "4.3.0",
  1477. "System.Runtime": "4.3.0",
  1478. "System.Threading.Tasks": "4.3.0"
  1479. }
  1480. },
  1481. "System.Threading.Timer/4.3.0": {
  1482. "dependencies": {
  1483. "Microsoft.NETCore.Platforms": "3.1.0",
  1484. "Microsoft.NETCore.Targets": "1.1.0",
  1485. "System.Runtime": "4.3.0"
  1486. }
  1487. },
  1488. "System.Windows.Extensions/4.7.0": {
  1489. "dependencies": {
  1490. "System.Drawing.Common": "4.7.0"
  1491. },
  1492. "runtime": {
  1493. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  1494. "assemblyVersion": "4.0.1.0",
  1495. "fileVersion": "4.700.19.56404"
  1496. }
  1497. },
  1498. "runtimeTargets": {
  1499. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  1500. "rid": "win",
  1501. "assetType": "runtime",
  1502. "assemblyVersion": "4.0.1.0",
  1503. "fileVersion": "4.700.19.56404"
  1504. }
  1505. }
  1506. },
  1507. "System.Xml.ReaderWriter/4.3.0": {
  1508. "dependencies": {
  1509. "System.Collections": "4.3.0",
  1510. "System.Diagnostics.Debug": "4.3.0",
  1511. "System.Globalization": "4.3.0",
  1512. "System.IO": "4.3.0",
  1513. "System.IO.FileSystem": "4.3.0",
  1514. "System.IO.FileSystem.Primitives": "4.3.0",
  1515. "System.Resources.ResourceManager": "4.3.0",
  1516. "System.Runtime": "4.3.0",
  1517. "System.Runtime.Extensions": "4.3.0",
  1518. "System.Runtime.InteropServices": "4.3.0",
  1519. "System.Text.Encoding": "4.3.0",
  1520. "System.Text.Encoding.Extensions": "4.3.0",
  1521. "System.Text.RegularExpressions": "4.3.0",
  1522. "System.Threading.Tasks": "4.3.0",
  1523. "System.Threading.Tasks.Extensions": "4.3.0"
  1524. }
  1525. },
  1526. "System.Xml.XDocument/4.3.0": {
  1527. "dependencies": {
  1528. "System.Collections": "4.3.0",
  1529. "System.Diagnostics.Debug": "4.3.0",
  1530. "System.Diagnostics.Tools": "4.3.0",
  1531. "System.Globalization": "4.3.0",
  1532. "System.IO": "4.3.0",
  1533. "System.Reflection": "4.3.0",
  1534. "System.Resources.ResourceManager": "4.3.0",
  1535. "System.Runtime": "4.3.0",
  1536. "System.Runtime.Extensions": "4.3.0",
  1537. "System.Text.Encoding": "4.3.0",
  1538. "System.Threading": "4.3.0",
  1539. "System.Xml.ReaderWriter": "4.3.0"
  1540. }
  1541. },
  1542. "System.Xml.XmlDocument/4.3.0": {
  1543. "dependencies": {
  1544. "System.Collections": "4.3.0",
  1545. "System.Diagnostics.Debug": "4.3.0",
  1546. "System.Globalization": "4.3.0",
  1547. "System.IO": "4.3.0",
  1548. "System.Resources.ResourceManager": "4.3.0",
  1549. "System.Runtime": "4.3.0",
  1550. "System.Runtime.Extensions": "4.3.0",
  1551. "System.Text.Encoding": "4.3.0",
  1552. "System.Threading": "4.3.0",
  1553. "System.Xml.ReaderWriter": "4.3.0"
  1554. }
  1555. },
  1556. "OASystem.Domain/1.0.0": {
  1557. "dependencies": {
  1558. "AutoMapper": "12.0.0",
  1559. "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.0",
  1560. "Autofac": "6.4.0",
  1561. "Autofac.Extensions.DependencyInjection": "8.0.0",
  1562. "Serilog.Sinks.File": "5.0.0",
  1563. "SqlSugarCore": "5.1.3.32"
  1564. },
  1565. "runtime": {
  1566. "OASystem.Domain.dll": {}
  1567. }
  1568. }
  1569. }
  1570. },
  1571. "libraries": {
  1572. "OASystem.Infrastructure/1.0.0": {
  1573. "type": "project",
  1574. "serviceable": false,
  1575. "sha512": ""
  1576. },
  1577. "Autofac/6.4.0": {
  1578. "type": "package",
  1579. "serviceable": true,
  1580. "sha512": "sha512-tkFxl6wAPuwVhrlN8wuNADnd+k2tv4ReP7ZZSL0vjfcN0RcfC9v25ogxK6b03HC7D4NwWjSLf1G/zTG8Bw43wQ==",
  1581. "path": "autofac/6.4.0",
  1582. "hashPath": "autofac.6.4.0.nupkg.sha512"
  1583. },
  1584. "Autofac.Extensions.DependencyInjection/8.0.0": {
  1585. "type": "package",
  1586. "serviceable": true,
  1587. "sha512": "sha512-nGrXNpQX2FiZpIBydK9cxZnnoqP/cUd3k/53uRERYEqLtWzKtE15R6L+j5q5ax5Rv/+3wAIkOaPePkahfqrwjg==",
  1588. "path": "autofac.extensions.dependencyinjection/8.0.0",
  1589. "hashPath": "autofac.extensions.dependencyinjection.8.0.0.nupkg.sha512"
  1590. },
  1591. "AutoMapper/12.0.0": {
  1592. "type": "package",
  1593. "serviceable": true,
  1594. "sha512": "sha512-0Rmg0zI5AFu1O/y//o9VGyhxKjhggWpk9mOA1tp0DEVx40c61bs+lnQv+0jUq8XbniF7FKgIVvI1perqiMtLrA==",
  1595. "path": "automapper/12.0.0",
  1596. "hashPath": "automapper.12.0.0.nupkg.sha512"
  1597. },
  1598. "AutoMapper.Extensions.Microsoft.DependencyInjection/12.0.0": {
  1599. "type": "package",
  1600. "serviceable": true,
  1601. "sha512": "sha512-XCJ4E3oKrbRl1qY9Mr+7uyC0xZj1+bqQjmQRWTiTKiVuuXTny+7YFWHi20tPjwkMukLbicN6yGlDy5PZ4wyi1w==",
  1602. "path": "automapper.extensions.microsoft.dependencyinjection/12.0.0",
  1603. "hashPath": "automapper.extensions.microsoft.dependencyinjection.12.0.0.nupkg.sha512"
  1604. },
  1605. "BouncyCastle.NetCore/1.8.5": {
  1606. "type": "package",
  1607. "serviceable": true,
  1608. "sha512": "sha512-6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==",
  1609. "path": "bouncycastle.netcore/1.8.5",
  1610. "hashPath": "bouncycastle.netcore.1.8.5.nupkg.sha512"
  1611. },
  1612. "Google.Protobuf/3.19.4": {
  1613. "type": "package",
  1614. "serviceable": true,
  1615. "sha512": "sha512-fd07/ykL4O4FhqrZIELm5lmiyOHfdPg9+o+hWr6tcfRdS7tHXnImg/2wtogLzlW2eEmr0J7j6ZrZvaWOLiJbxQ==",
  1616. "path": "google.protobuf/3.19.4",
  1617. "hashPath": "google.protobuf.3.19.4.nupkg.sha512"
  1618. },
  1619. "K4os.Compression.LZ4/1.2.6": {
  1620. "type": "package",
  1621. "serviceable": true,
  1622. "sha512": "sha512-4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==",
  1623. "path": "k4os.compression.lz4/1.2.6",
  1624. "hashPath": "k4os.compression.lz4.1.2.6.nupkg.sha512"
  1625. },
  1626. "K4os.Compression.LZ4.Streams/1.2.6": {
  1627. "type": "package",
  1628. "serviceable": true,
  1629. "sha512": "sha512-5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==",
  1630. "path": "k4os.compression.lz4.streams/1.2.6",
  1631. "hashPath": "k4os.compression.lz4.streams.1.2.6.nupkg.sha512"
  1632. },
  1633. "K4os.Hash.xxHash/1.0.6": {
  1634. "type": "package",
  1635. "serviceable": true,
  1636. "sha512": "sha512-jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  1637. "path": "k4os.hash.xxhash/1.0.6",
  1638. "hashPath": "k4os.hash.xxhash.1.0.6.nupkg.sha512"
  1639. },
  1640. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  1641. "type": "package",
  1642. "serviceable": true,
  1643. "sha512": "sha512-Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  1644. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  1645. "hashPath": "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512"
  1646. },
  1647. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  1648. "type": "package",
  1649. "serviceable": true,
  1650. "sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==",
  1651. "path": "microsoft.aspnetcore.http.features/2.2.0",
  1652. "hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512"
  1653. },
  1654. "Microsoft.CSharp/4.7.0": {
  1655. "type": "package",
  1656. "serviceable": true,
  1657. "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  1658. "path": "microsoft.csharp/4.7.0",
  1659. "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512"
  1660. },
  1661. "Microsoft.Data.SqlClient/2.1.1": {
  1662. "type": "package",
  1663. "serviceable": true,
  1664. "sha512": "sha512-qxPmA2q0/oqqzZiwgN2QcoFRMPPQOCOxJP9h8X/bLXkPRsIo8xy182td9Txt0WhobW1dBBSYj96/Wf9cmhpm7Q==",
  1665. "path": "microsoft.data.sqlclient/2.1.1",
  1666. "hashPath": "microsoft.data.sqlclient.2.1.1.nupkg.sha512"
  1667. },
  1668. "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": {
  1669. "type": "package",
  1670. "serviceable": true,
  1671. "sha512": "sha512-JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==",
  1672. "path": "microsoft.data.sqlclient.sni.runtime/2.1.1",
  1673. "hashPath": "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512"
  1674. },
  1675. "Microsoft.Data.Sqlite/5.0.5": {
  1676. "type": "package",
  1677. "serviceable": true,
  1678. "sha512": "sha512-zTeCkFsBHZ1/iBd0GqyAUrtb3xuaiUeJyhd9hjuW9yo/ylRhWqxORKznR0bR1g/joUTohGTHAXr/KIuSNyjH/Q==",
  1679. "path": "microsoft.data.sqlite/5.0.5",
  1680. "hashPath": "microsoft.data.sqlite.5.0.5.nupkg.sha512"
  1681. },
  1682. "Microsoft.Data.Sqlite.Core/5.0.5": {
  1683. "type": "package",
  1684. "serviceable": true,
  1685. "sha512": "sha512-tFKcgzzk3495LzD38gw75qmFS6Y1lDr5O9TGfSSG8GgtYF2G5VuTp7VdkeHKaaKOOgrSgHjuc3ogyWh7TZ10Hg==",
  1686. "path": "microsoft.data.sqlite.core/5.0.5",
  1687. "hashPath": "microsoft.data.sqlite.core.5.0.5.nupkg.sha512"
  1688. },
  1689. "Microsoft.Extensions.Configuration.Abstractions/7.0.0": {
  1690. "type": "package",
  1691. "serviceable": true,
  1692. "sha512": "sha512-f34u2eaqIjNO9YLHBz8rozVZ+TcFiFs0F3r7nUJd7FRkVSxk8u4OpoK226mi49MwexHOR2ibP9MFvRUaLilcQQ==",
  1693. "path": "microsoft.extensions.configuration.abstractions/7.0.0",
  1694. "hashPath": "microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512"
  1695. },
  1696. "Microsoft.Extensions.Configuration.Binder/7.0.0": {
  1697. "type": "package",
  1698. "serviceable": true,
  1699. "sha512": "sha512-tgU4u7bZsoS9MKVRiotVMAwHtbREHr5/5zSEV+JPhg46+ox47Au84E3D2IacAaB0bk5ePNaNieTlPrfjbbRJkg==",
  1700. "path": "microsoft.extensions.configuration.binder/7.0.0",
  1701. "hashPath": "microsoft.extensions.configuration.binder.7.0.0.nupkg.sha512"
  1702. },
  1703. "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
  1704. "type": "package",
  1705. "serviceable": true,
  1706. "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==",
  1707. "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0",
  1708. "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512"
  1709. },
  1710. "Microsoft.Extensions.Options/6.0.0": {
  1711. "type": "package",
  1712. "serviceable": true,
  1713. "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==",
  1714. "path": "microsoft.extensions.options/6.0.0",
  1715. "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512"
  1716. },
  1717. "Microsoft.Extensions.Primitives/7.0.0": {
  1718. "type": "package",
  1719. "serviceable": true,
  1720. "sha512": "sha512-um1KU5kxcRp3CNuI8o/GrZtD4AIOXDk+RLsytjZ9QPok3ttLUelLKpilVPuaFT3TFjOhSibUAso0odbOaCDj3Q==",
  1721. "path": "microsoft.extensions.primitives/7.0.0",
  1722. "hashPath": "microsoft.extensions.primitives.7.0.0.nupkg.sha512"
  1723. },
  1724. "Microsoft.Identity.Client/4.21.1": {
  1725. "type": "package",
  1726. "serviceable": true,
  1727. "sha512": "sha512-vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==",
  1728. "path": "microsoft.identity.client/4.21.1",
  1729. "hashPath": "microsoft.identity.client.4.21.1.nupkg.sha512"
  1730. },
  1731. "Microsoft.IdentityModel.JsonWebTokens/6.8.0": {
  1732. "type": "package",
  1733. "serviceable": true,
  1734. "sha512": "sha512-+7JIww64PkMt7NWFxoe4Y/joeF7TAtA/fQ0b2GFGcagzB59sKkTt/sMZWR6aSZht5YC7SdHi3W6yM1yylRGJCQ==",
  1735. "path": "microsoft.identitymodel.jsonwebtokens/6.8.0",
  1736. "hashPath": "microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512"
  1737. },
  1738. "Microsoft.IdentityModel.Logging/6.8.0": {
  1739. "type": "package",
  1740. "serviceable": true,
  1741. "sha512": "sha512-Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==",
  1742. "path": "microsoft.identitymodel.logging/6.8.0",
  1743. "hashPath": "microsoft.identitymodel.logging.6.8.0.nupkg.sha512"
  1744. },
  1745. "Microsoft.IdentityModel.Protocols/6.8.0": {
  1746. "type": "package",
  1747. "serviceable": true,
  1748. "sha512": "sha512-OJZx5nPdiH+MEkwCkbJrTAUiO/YzLe0VSswNlDxJsJD9bhOIdXHufh650pfm59YH1DNevp3/bXzukKrG57gA1w==",
  1749. "path": "microsoft.identitymodel.protocols/6.8.0",
  1750. "hashPath": "microsoft.identitymodel.protocols.6.8.0.nupkg.sha512"
  1751. },
  1752. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": {
  1753. "type": "package",
  1754. "serviceable": true,
  1755. "sha512": "sha512-X/PiV5l3nYYsodtrNMrNQIVlDmHpjQQ5w48E+o/D5H4es2+4niEyQf3l03chvZGWNzBRhfSstaXr25/Ye4AeYw==",
  1756. "path": "microsoft.identitymodel.protocols.openidconnect/6.8.0",
  1757. "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512"
  1758. },
  1759. "Microsoft.IdentityModel.Tokens/6.8.0": {
  1760. "type": "package",
  1761. "serviceable": true,
  1762. "sha512": "sha512-gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==",
  1763. "path": "microsoft.identitymodel.tokens/6.8.0",
  1764. "hashPath": "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512"
  1765. },
  1766. "Microsoft.NETCore.Platforms/3.1.0": {
  1767. "type": "package",
  1768. "serviceable": true,
  1769. "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
  1770. "path": "microsoft.netcore.platforms/3.1.0",
  1771. "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512"
  1772. },
  1773. "Microsoft.NETCore.Targets/1.1.0": {
  1774. "type": "package",
  1775. "serviceable": true,
  1776. "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  1777. "path": "microsoft.netcore.targets/1.1.0",
  1778. "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
  1779. },
  1780. "Microsoft.Win32.Primitives/4.3.0": {
  1781. "type": "package",
  1782. "serviceable": true,
  1783. "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  1784. "path": "microsoft.win32.primitives/4.3.0",
  1785. "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512"
  1786. },
  1787. "Microsoft.Win32.Registry/4.7.0": {
  1788. "type": "package",
  1789. "serviceable": true,
  1790. "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
  1791. "path": "microsoft.win32.registry/4.7.0",
  1792. "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512"
  1793. },
  1794. "Microsoft.Win32.SystemEvents/4.7.0": {
  1795. "type": "package",
  1796. "serviceable": true,
  1797. "sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==",
  1798. "path": "microsoft.win32.systemevents/4.7.0",
  1799. "hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512"
  1800. },
  1801. "MySql.Data/8.0.29": {
  1802. "type": "package",
  1803. "serviceable": true,
  1804. "sha512": "sha512-3I+QUbSDTknNVAWUEr8JEtXU5sk83kofwy79TROew9YMhVQAq39jZwpHQfFNG757JZFGWJ5oa5VA3tZBxJa1jw==",
  1805. "path": "mysql.data/8.0.29",
  1806. "hashPath": "mysql.data.8.0.29.nupkg.sha512"
  1807. },
  1808. "NETStandard.Library/1.6.1": {
  1809. "type": "package",
  1810. "serviceable": true,
  1811. "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  1812. "path": "netstandard.library/1.6.1",
  1813. "hashPath": "netstandard.library.1.6.1.nupkg.sha512"
  1814. },
  1815. "Newtonsoft.Json/10.0.3": {
  1816. "type": "package",
  1817. "serviceable": true,
  1818. "sha512": "sha512-hSXaFmh7hNCuEoC4XNY5DrRkLDzYHqPx/Ik23R4J86Z7PE/Y6YidhG602dFVdLBRSdG6xp9NabH3dXpcoxWvww==",
  1819. "path": "newtonsoft.json/10.0.3",
  1820. "hashPath": "newtonsoft.json.10.0.3.nupkg.sha512"
  1821. },
  1822. "Npgsql/5.0.7": {
  1823. "type": "package",
  1824. "serviceable": true,
  1825. "sha512": "sha512-EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==",
  1826. "path": "npgsql/5.0.7",
  1827. "hashPath": "npgsql.5.0.7.nupkg.sha512"
  1828. },
  1829. "Oracle.ManagedDataAccess.Core/3.21.1": {
  1830. "type": "package",
  1831. "serviceable": true,
  1832. "sha512": "sha512-SJM0qRVz6a7xMJtPPHAObq7MEzo42T+6+MImuuUK7ZCTXc2BIXbc9cenN7006FcOuX8x4OeTpPbFfQTVlhk9bw==",
  1833. "path": "oracle.manageddataaccess.core/3.21.1",
  1834. "hashPath": "oracle.manageddataaccess.core.3.21.1.nupkg.sha512"
  1835. },
  1836. "Pipelines.Sockets.Unofficial/2.2.2": {
  1837. "type": "package",
  1838. "serviceable": true,
  1839. "sha512": "sha512-Bhk0FWxH1paI+18zr1g5cTL+ebeuDcBCR+rRFO+fKEhretgjs7MF2Mc1P64FGLecWp4zKCUOPzngBNrqVyY7Zg==",
  1840. "path": "pipelines.sockets.unofficial/2.2.2",
  1841. "hashPath": "pipelines.sockets.unofficial.2.2.2.nupkg.sha512"
  1842. },
  1843. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1844. "type": "package",
  1845. "serviceable": true,
  1846. "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  1847. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1848. "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1849. },
  1850. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1851. "type": "package",
  1852. "serviceable": true,
  1853. "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  1854. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1855. "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1856. },
  1857. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1858. "type": "package",
  1859. "serviceable": true,
  1860. "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  1861. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1862. "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1863. },
  1864. "runtime.native.System/4.3.0": {
  1865. "type": "package",
  1866. "serviceable": true,
  1867. "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  1868. "path": "runtime.native.system/4.3.0",
  1869. "hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
  1870. },
  1871. "runtime.native.System.IO.Compression/4.3.0": {
  1872. "type": "package",
  1873. "serviceable": true,
  1874. "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  1875. "path": "runtime.native.system.io.compression/4.3.0",
  1876. "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512"
  1877. },
  1878. "runtime.native.System.Net.Http/4.3.0": {
  1879. "type": "package",
  1880. "serviceable": true,
  1881. "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  1882. "path": "runtime.native.system.net.http/4.3.0",
  1883. "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512"
  1884. },
  1885. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1886. "type": "package",
  1887. "serviceable": true,
  1888. "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  1889. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  1890. "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
  1891. },
  1892. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1893. "type": "package",
  1894. "serviceable": true,
  1895. "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  1896. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  1897. "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1898. },
  1899. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1900. "type": "package",
  1901. "serviceable": true,
  1902. "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  1903. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1904. "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1905. },
  1906. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1907. "type": "package",
  1908. "serviceable": true,
  1909. "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  1910. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1911. "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1912. },
  1913. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1914. "type": "package",
  1915. "serviceable": true,
  1916. "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  1917. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  1918. "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
  1919. },
  1920. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1921. "type": "package",
  1922. "serviceable": true,
  1923. "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  1924. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1925. "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1926. },
  1927. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1928. "type": "package",
  1929. "serviceable": true,
  1930. "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  1931. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1932. "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1933. },
  1934. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1935. "type": "package",
  1936. "serviceable": true,
  1937. "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  1938. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1939. "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1940. },
  1941. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1942. "type": "package",
  1943. "serviceable": true,
  1944. "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  1945. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1946. "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1947. },
  1948. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1949. "type": "package",
  1950. "serviceable": true,
  1951. "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  1952. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1953. "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1954. },
  1955. "Serilog/2.10.0": {
  1956. "type": "package",
  1957. "serviceable": true,
  1958. "sha512": "sha512-+QX0hmf37a0/OZLxM3wL7V6/ADvC1XihXN4Kq/p6d8lCPfgkRdiuhbWlMaFjR9Av0dy5F0+MBeDmDdRZN/YwQA==",
  1959. "path": "serilog/2.10.0",
  1960. "hashPath": "serilog.2.10.0.nupkg.sha512"
  1961. },
  1962. "Serilog.Sinks.File/5.0.0": {
  1963. "type": "package",
  1964. "serviceable": true,
  1965. "sha512": "sha512-uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==",
  1966. "path": "serilog.sinks.file/5.0.0",
  1967. "hashPath": "serilog.sinks.file.5.0.0.nupkg.sha512"
  1968. },
  1969. "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": {
  1970. "type": "package",
  1971. "serviceable": true,
  1972. "sha512": "sha512-f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==",
  1973. "path": "sqlitepclraw.bundle_e_sqlite3/2.0.4",
  1974. "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512"
  1975. },
  1976. "SQLitePCLRaw.core/2.0.4": {
  1977. "type": "package",
  1978. "serviceable": true,
  1979. "sha512": "sha512-4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==",
  1980. "path": "sqlitepclraw.core/2.0.4",
  1981. "hashPath": "sqlitepclraw.core.2.0.4.nupkg.sha512"
  1982. },
  1983. "SQLitePCLRaw.lib.e_sqlite3/2.0.4": {
  1984. "type": "package",
  1985. "serviceable": true,
  1986. "sha512": "sha512-oetvmtDZOE4Nnrtxd8Trapl9geBiu0rDCUXff46qGYjnUwzaU1mZ3OHnfR402tl32rx8gBWg3n5OBRaPJRbsGw==",
  1987. "path": "sqlitepclraw.lib.e_sqlite3/2.0.4",
  1988. "hashPath": "sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512"
  1989. },
  1990. "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": {
  1991. "type": "package",
  1992. "serviceable": true,
  1993. "sha512": "sha512-AY6+vv/4ji1mCkLrS6HP/88rHT9YFKRyg3LUj8RyIk6imJMUFdQDiP8rK8gq0a/0FbqspLjK1t7rtKcr7FXRYA==",
  1994. "path": "sqlitepclraw.provider.dynamic_cdecl/2.0.4",
  1995. "hashPath": "sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512"
  1996. },
  1997. "SqlSugarCore/5.1.3.32": {
  1998. "type": "package",
  1999. "serviceable": true,
  2000. "sha512": "sha512-Rd+N9idSgHMmAZ3c93UV/h2xMDqkR+0uFXxiJMKDwOEeqIVcG207OzoXt15/D4Sk6oxwksZuqK4AMft35QPSjA==",
  2001. "path": "sqlsugarcore/5.1.3.32",
  2002. "hashPath": "sqlsugarcore.5.1.3.32.nupkg.sha512"
  2003. },
  2004. "SqlSugarCore.Dm/1.0.0": {
  2005. "type": "package",
  2006. "serviceable": true,
  2007. "sha512": "sha512-TCZRpNQ21lZqTnBFbuVOKIFWMvl2IFRiU5FcSWbyOVD/F9tSwRK9BUQXtrBh3xpn2v/cUcRJgQdNEknWNjFd6w==",
  2008. "path": "sqlsugarcore.dm/1.0.0",
  2009. "hashPath": "sqlsugarcore.dm.1.0.0.nupkg.sha512"
  2010. },
  2011. "SqlSugarCore.Kdbndp/1.0.0": {
  2012. "type": "package",
  2013. "serviceable": true,
  2014. "sha512": "sha512-xQpxN40OUlg3FZnypcXBCFvNl1ndueOjW4Wc+lnk2YjCK+sKjKr/YejJY/DuT/WthY+Z5p086K6igUTX9ZHg2Q==",
  2015. "path": "sqlsugarcore.kdbndp/1.0.0",
  2016. "hashPath": "sqlsugarcore.kdbndp.1.0.0.nupkg.sha512"
  2017. },
  2018. "StackExchange.Redis/2.6.96": {
  2019. "type": "package",
  2020. "serviceable": true,
  2021. "sha512": "sha512-JDj94bTwBZ6zA1vknEYJppRXRejTnl5u2z6cRBQ0DJ+Uy94qvn0XsQZ2M+1/VkqtxQ+LUU1h4JZWwcvVojGiQg==",
  2022. "path": "stackexchange.redis/2.6.96",
  2023. "hashPath": "stackexchange.redis.2.6.96.nupkg.sha512"
  2024. },
  2025. "System.AppContext/4.3.0": {
  2026. "type": "package",
  2027. "serviceable": true,
  2028. "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  2029. "path": "system.appcontext/4.3.0",
  2030. "hashPath": "system.appcontext.4.3.0.nupkg.sha512"
  2031. },
  2032. "System.Buffers/4.5.1": {
  2033. "type": "package",
  2034. "serviceable": true,
  2035. "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  2036. "path": "system.buffers/4.5.1",
  2037. "hashPath": "system.buffers.4.5.1.nupkg.sha512"
  2038. },
  2039. "System.Collections/4.3.0": {
  2040. "type": "package",
  2041. "serviceable": true,
  2042. "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  2043. "path": "system.collections/4.3.0",
  2044. "hashPath": "system.collections.4.3.0.nupkg.sha512"
  2045. },
  2046. "System.Collections.Concurrent/4.3.0": {
  2047. "type": "package",
  2048. "serviceable": true,
  2049. "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  2050. "path": "system.collections.concurrent/4.3.0",
  2051. "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512"
  2052. },
  2053. "System.Collections.NonGeneric/4.3.0": {
  2054. "type": "package",
  2055. "serviceable": true,
  2056. "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  2057. "path": "system.collections.nongeneric/4.3.0",
  2058. "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512"
  2059. },
  2060. "System.Collections.Specialized/4.3.0": {
  2061. "type": "package",
  2062. "serviceable": true,
  2063. "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  2064. "path": "system.collections.specialized/4.3.0",
  2065. "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512"
  2066. },
  2067. "System.ComponentModel/4.3.0": {
  2068. "type": "package",
  2069. "serviceable": true,
  2070. "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  2071. "path": "system.componentmodel/4.3.0",
  2072. "hashPath": "system.componentmodel.4.3.0.nupkg.sha512"
  2073. },
  2074. "System.ComponentModel.Primitives/4.3.0": {
  2075. "type": "package",
  2076. "serviceable": true,
  2077. "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  2078. "path": "system.componentmodel.primitives/4.3.0",
  2079. "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512"
  2080. },
  2081. "System.ComponentModel.TypeConverter/4.3.0": {
  2082. "type": "package",
  2083. "serviceable": true,
  2084. "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
  2085. "path": "system.componentmodel.typeconverter/4.3.0",
  2086. "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512"
  2087. },
  2088. "System.Configuration.ConfigurationManager/4.7.0": {
  2089. "type": "package",
  2090. "serviceable": true,
  2091. "sha512": "sha512-/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==",
  2092. "path": "system.configuration.configurationmanager/4.7.0",
  2093. "hashPath": "system.configuration.configurationmanager.4.7.0.nupkg.sha512"
  2094. },
  2095. "System.Console/4.3.0": {
  2096. "type": "package",
  2097. "serviceable": true,
  2098. "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  2099. "path": "system.console/4.3.0",
  2100. "hashPath": "system.console.4.3.0.nupkg.sha512"
  2101. },
  2102. "System.Data.Common/4.3.0": {
  2103. "type": "package",
  2104. "serviceable": true,
  2105. "sha512": "sha512-lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==",
  2106. "path": "system.data.common/4.3.0",
  2107. "hashPath": "system.data.common.4.3.0.nupkg.sha512"
  2108. },
  2109. "System.Diagnostics.Debug/4.3.0": {
  2110. "type": "package",
  2111. "serviceable": true,
  2112. "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  2113. "path": "system.diagnostics.debug/4.3.0",
  2114. "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
  2115. },
  2116. "System.Diagnostics.DiagnosticSource/4.7.1": {
  2117. "type": "package",
  2118. "serviceable": true,
  2119. "sha512": "sha512-j81Lovt90PDAq8kLpaJfJKV/rWdWuEk6jfV+MBkee33vzYLEUsy4gXK8laa9V2nZlLM9VM9yA/OOQxxPEJKAMw==",
  2120. "path": "system.diagnostics.diagnosticsource/4.7.1",
  2121. "hashPath": "system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512"
  2122. },
  2123. "System.Diagnostics.PerformanceCounter/4.7.0": {
  2124. "type": "package",
  2125. "serviceable": true,
  2126. "sha512": "sha512-kE9szT4i3TYT9bDE/BPfzg9/BL6enMiZlcUmnUEBrhRtxWvurKoa8qhXkLTRhrxMzBqaDleWlRfIPE02tulU+w==",
  2127. "path": "system.diagnostics.performancecounter/4.7.0",
  2128. "hashPath": "system.diagnostics.performancecounter.4.7.0.nupkg.sha512"
  2129. },
  2130. "System.Diagnostics.Tools/4.3.0": {
  2131. "type": "package",
  2132. "serviceable": true,
  2133. "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  2134. "path": "system.diagnostics.tools/4.3.0",
  2135. "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512"
  2136. },
  2137. "System.Diagnostics.Tracing/4.3.0": {
  2138. "type": "package",
  2139. "serviceable": true,
  2140. "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  2141. "path": "system.diagnostics.tracing/4.3.0",
  2142. "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512"
  2143. },
  2144. "System.DirectoryServices/4.7.0": {
  2145. "type": "package",
  2146. "serviceable": true,
  2147. "sha512": "sha512-NRENC4ulDamI4DQtrYybxtQU3qnhGSTUdEKJkLyctHXY4RqNyS/egZpB9z8/CnFCiaQZmwLlqxfBmw80VlKBTA==",
  2148. "path": "system.directoryservices/4.7.0",
  2149. "hashPath": "system.directoryservices.4.7.0.nupkg.sha512"
  2150. },
  2151. "System.DirectoryServices.Protocols/4.7.0": {
  2152. "type": "package",
  2153. "serviceable": true,
  2154. "sha512": "sha512-yy0a+E/yksdoMWfZEmWpI5LuCbJ/E6P5d4QRbqUDj/xC4MV7Vw5DiW3KREA9LFbWedoGx90KikUfSN0xhE1j1g==",
  2155. "path": "system.directoryservices.protocols/4.7.0",
  2156. "hashPath": "system.directoryservices.protocols.4.7.0.nupkg.sha512"
  2157. },
  2158. "System.Drawing.Common/4.7.0": {
  2159. "type": "package",
  2160. "serviceable": true,
  2161. "sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==",
  2162. "path": "system.drawing.common/4.7.0",
  2163. "hashPath": "system.drawing.common.4.7.0.nupkg.sha512"
  2164. },
  2165. "System.Globalization/4.3.0": {
  2166. "type": "package",
  2167. "serviceable": true,
  2168. "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  2169. "path": "system.globalization/4.3.0",
  2170. "hashPath": "system.globalization.4.3.0.nupkg.sha512"
  2171. },
  2172. "System.Globalization.Calendars/4.3.0": {
  2173. "type": "package",
  2174. "serviceable": true,
  2175. "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  2176. "path": "system.globalization.calendars/4.3.0",
  2177. "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512"
  2178. },
  2179. "System.Globalization.Extensions/4.3.0": {
  2180. "type": "package",
  2181. "serviceable": true,
  2182. "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  2183. "path": "system.globalization.extensions/4.3.0",
  2184. "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512"
  2185. },
  2186. "System.IdentityModel.Tokens.Jwt/6.8.0": {
  2187. "type": "package",
  2188. "serviceable": true,
  2189. "sha512": "sha512-5tBCjAub2Bhd5qmcd0WhR5s354e4oLYa//kOWrkX+6/7ZbDDJjMTfwLSOiZ/MMpWdE4DWPLOfTLOq/juj9CKzA==",
  2190. "path": "system.identitymodel.tokens.jwt/6.8.0",
  2191. "hashPath": "system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512"
  2192. },
  2193. "System.IO/4.3.0": {
  2194. "type": "package",
  2195. "serviceable": true,
  2196. "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  2197. "path": "system.io/4.3.0",
  2198. "hashPath": "system.io.4.3.0.nupkg.sha512"
  2199. },
  2200. "System.IO.Compression/4.3.0": {
  2201. "type": "package",
  2202. "serviceable": true,
  2203. "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  2204. "path": "system.io.compression/4.3.0",
  2205. "hashPath": "system.io.compression.4.3.0.nupkg.sha512"
  2206. },
  2207. "System.IO.Compression.ZipFile/4.3.0": {
  2208. "type": "package",
  2209. "serviceable": true,
  2210. "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  2211. "path": "system.io.compression.zipfile/4.3.0",
  2212. "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512"
  2213. },
  2214. "System.IO.FileSystem/4.3.0": {
  2215. "type": "package",
  2216. "serviceable": true,
  2217. "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  2218. "path": "system.io.filesystem/4.3.0",
  2219. "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
  2220. },
  2221. "System.IO.FileSystem.AccessControl/4.7.0": {
  2222. "type": "package",
  2223. "serviceable": true,
  2224. "sha512": "sha512-vMToiarpU81LR1/KZtnT7VDPvqAZfw9oOS5nY6pPP78nGYz3COLsQH3OfzbR+SjTgltd31R6KmKklz/zDpTmzw==",
  2225. "path": "system.io.filesystem.accesscontrol/4.7.0",
  2226. "hashPath": "system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512"
  2227. },
  2228. "System.IO.FileSystem.Primitives/4.3.0": {
  2229. "type": "package",
  2230. "serviceable": true,
  2231. "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  2232. "path": "system.io.filesystem.primitives/4.3.0",
  2233. "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
  2234. },
  2235. "System.IO.Pipelines/5.0.1": {
  2236. "type": "package",
  2237. "serviceable": true,
  2238. "sha512": "sha512-qEePWsaq9LoEEIqhbGe6D5J8c9IqQOUuTzzV6wn1POlfdLkJliZY3OlB0j0f17uMWlqZYjH7txj+2YbyrIA8Yg==",
  2239. "path": "system.io.pipelines/5.0.1",
  2240. "hashPath": "system.io.pipelines.5.0.1.nupkg.sha512"
  2241. },
  2242. "System.Linq/4.3.0": {
  2243. "type": "package",
  2244. "serviceable": true,
  2245. "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  2246. "path": "system.linq/4.3.0",
  2247. "hashPath": "system.linq.4.3.0.nupkg.sha512"
  2248. },
  2249. "System.Linq.Expressions/4.3.0": {
  2250. "type": "package",
  2251. "serviceable": true,
  2252. "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  2253. "path": "system.linq.expressions/4.3.0",
  2254. "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
  2255. },
  2256. "System.Memory/4.5.4": {
  2257. "type": "package",
  2258. "serviceable": true,
  2259. "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
  2260. "path": "system.memory/4.5.4",
  2261. "hashPath": "system.memory.4.5.4.nupkg.sha512"
  2262. },
  2263. "System.Net.Http/4.3.0": {
  2264. "type": "package",
  2265. "serviceable": true,
  2266. "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
  2267. "path": "system.net.http/4.3.0",
  2268. "hashPath": "system.net.http.4.3.0.nupkg.sha512"
  2269. },
  2270. "System.Net.Primitives/4.3.0": {
  2271. "type": "package",
  2272. "serviceable": true,
  2273. "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  2274. "path": "system.net.primitives/4.3.0",
  2275. "hashPath": "system.net.primitives.4.3.0.nupkg.sha512"
  2276. },
  2277. "System.Net.Sockets/4.3.0": {
  2278. "type": "package",
  2279. "serviceable": true,
  2280. "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  2281. "path": "system.net.sockets/4.3.0",
  2282. "hashPath": "system.net.sockets.4.3.0.nupkg.sha512"
  2283. },
  2284. "System.ObjectModel/4.3.0": {
  2285. "type": "package",
  2286. "serviceable": true,
  2287. "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  2288. "path": "system.objectmodel/4.3.0",
  2289. "hashPath": "system.objectmodel.4.3.0.nupkg.sha512"
  2290. },
  2291. "System.Reflection/4.3.0": {
  2292. "type": "package",
  2293. "serviceable": true,
  2294. "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  2295. "path": "system.reflection/4.3.0",
  2296. "hashPath": "system.reflection.4.3.0.nupkg.sha512"
  2297. },
  2298. "System.Reflection.Emit/4.3.0": {
  2299. "type": "package",
  2300. "serviceable": true,
  2301. "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  2302. "path": "system.reflection.emit/4.3.0",
  2303. "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
  2304. },
  2305. "System.Reflection.Emit.ILGeneration/4.3.0": {
  2306. "type": "package",
  2307. "serviceable": true,
  2308. "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  2309. "path": "system.reflection.emit.ilgeneration/4.3.0",
  2310. "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
  2311. },
  2312. "System.Reflection.Emit.Lightweight/4.3.0": {
  2313. "type": "package",
  2314. "serviceable": true,
  2315. "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  2316. "path": "system.reflection.emit.lightweight/4.3.0",
  2317. "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
  2318. },
  2319. "System.Reflection.Extensions/4.3.0": {
  2320. "type": "package",
  2321. "serviceable": true,
  2322. "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  2323. "path": "system.reflection.extensions/4.3.0",
  2324. "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
  2325. },
  2326. "System.Reflection.Primitives/4.3.0": {
  2327. "type": "package",
  2328. "serviceable": true,
  2329. "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  2330. "path": "system.reflection.primitives/4.3.0",
  2331. "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
  2332. },
  2333. "System.Reflection.TypeExtensions/4.3.0": {
  2334. "type": "package",
  2335. "serviceable": true,
  2336. "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  2337. "path": "system.reflection.typeextensions/4.3.0",
  2338. "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512"
  2339. },
  2340. "System.Resources.ResourceManager/4.3.0": {
  2341. "type": "package",
  2342. "serviceable": true,
  2343. "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  2344. "path": "system.resources.resourcemanager/4.3.0",
  2345. "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
  2346. },
  2347. "System.Runtime/4.3.0": {
  2348. "type": "package",
  2349. "serviceable": true,
  2350. "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  2351. "path": "system.runtime/4.3.0",
  2352. "hashPath": "system.runtime.4.3.0.nupkg.sha512"
  2353. },
  2354. "System.Runtime.Caching/4.7.0": {
  2355. "type": "package",
  2356. "serviceable": true,
  2357. "sha512": "sha512-NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==",
  2358. "path": "system.runtime.caching/4.7.0",
  2359. "hashPath": "system.runtime.caching.4.7.0.nupkg.sha512"
  2360. },
  2361. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  2362. "type": "package",
  2363. "serviceable": true,
  2364. "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  2365. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  2366. "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512"
  2367. },
  2368. "System.Runtime.Extensions/4.3.0": {
  2369. "type": "package",
  2370. "serviceable": true,
  2371. "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  2372. "path": "system.runtime.extensions/4.3.0",
  2373. "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
  2374. },
  2375. "System.Runtime.Handles/4.3.0": {
  2376. "type": "package",
  2377. "serviceable": true,
  2378. "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  2379. "path": "system.runtime.handles/4.3.0",
  2380. "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
  2381. },
  2382. "System.Runtime.InteropServices/4.3.0": {
  2383. "type": "package",
  2384. "serviceable": true,
  2385. "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  2386. "path": "system.runtime.interopservices/4.3.0",
  2387. "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
  2388. },
  2389. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2390. "type": "package",
  2391. "serviceable": true,
  2392. "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  2393. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  2394. "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512"
  2395. },
  2396. "System.Runtime.Numerics/4.3.0": {
  2397. "type": "package",
  2398. "serviceable": true,
  2399. "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  2400. "path": "system.runtime.numerics/4.3.0",
  2401. "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512"
  2402. },
  2403. "System.Runtime.Serialization.Formatters/4.3.0": {
  2404. "type": "package",
  2405. "serviceable": true,
  2406. "sha512": "sha512-KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==",
  2407. "path": "system.runtime.serialization.formatters/4.3.0",
  2408. "hashPath": "system.runtime.serialization.formatters.4.3.0.nupkg.sha512"
  2409. },
  2410. "System.Runtime.Serialization.Primitives/4.3.0": {
  2411. "type": "package",
  2412. "serviceable": true,
  2413. "sha512": "sha512-Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
  2414. "path": "system.runtime.serialization.primitives/4.3.0",
  2415. "hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512"
  2416. },
  2417. "System.Security.AccessControl/4.7.0": {
  2418. "type": "package",
  2419. "serviceable": true,
  2420. "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  2421. "path": "system.security.accesscontrol/4.7.0",
  2422. "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512"
  2423. },
  2424. "System.Security.Cryptography.Algorithms/4.3.0": {
  2425. "type": "package",
  2426. "serviceable": true,
  2427. "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  2428. "path": "system.security.cryptography.algorithms/4.3.0",
  2429. "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512"
  2430. },
  2431. "System.Security.Cryptography.Cng/4.5.0": {
  2432. "type": "package",
  2433. "serviceable": true,
  2434. "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
  2435. "path": "system.security.cryptography.cng/4.5.0",
  2436. "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512"
  2437. },
  2438. "System.Security.Cryptography.Csp/4.3.0": {
  2439. "type": "package",
  2440. "serviceable": true,
  2441. "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  2442. "path": "system.security.cryptography.csp/4.3.0",
  2443. "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512"
  2444. },
  2445. "System.Security.Cryptography.Encoding/4.3.0": {
  2446. "type": "package",
  2447. "serviceable": true,
  2448. "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  2449. "path": "system.security.cryptography.encoding/4.3.0",
  2450. "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512"
  2451. },
  2452. "System.Security.Cryptography.OpenSsl/4.3.0": {
  2453. "type": "package",
  2454. "serviceable": true,
  2455. "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  2456. "path": "system.security.cryptography.openssl/4.3.0",
  2457. "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  2458. },
  2459. "System.Security.Cryptography.Primitives/4.3.0": {
  2460. "type": "package",
  2461. "serviceable": true,
  2462. "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  2463. "path": "system.security.cryptography.primitives/4.3.0",
  2464. "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512"
  2465. },
  2466. "System.Security.Cryptography.ProtectedData/4.7.0": {
  2467. "type": "package",
  2468. "serviceable": true,
  2469. "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==",
  2470. "path": "system.security.cryptography.protecteddata/4.7.0",
  2471. "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512"
  2472. },
  2473. "System.Security.Cryptography.X509Certificates/4.3.0": {
  2474. "type": "package",
  2475. "serviceable": true,
  2476. "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  2477. "path": "system.security.cryptography.x509certificates/4.3.0",
  2478. "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512"
  2479. },
  2480. "System.Security.Permissions/4.7.0": {
  2481. "type": "package",
  2482. "serviceable": true,
  2483. "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  2484. "path": "system.security.permissions/4.7.0",
  2485. "hashPath": "system.security.permissions.4.7.0.nupkg.sha512"
  2486. },
  2487. "System.Security.Principal.Windows/4.7.0": {
  2488. "type": "package",
  2489. "serviceable": true,
  2490. "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  2491. "path": "system.security.principal.windows/4.7.0",
  2492. "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512"
  2493. },
  2494. "System.Text.Encoding/4.3.0": {
  2495. "type": "package",
  2496. "serviceable": true,
  2497. "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  2498. "path": "system.text.encoding/4.3.0",
  2499. "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
  2500. },
  2501. "System.Text.Encoding.CodePages/4.7.0": {
  2502. "type": "package",
  2503. "serviceable": true,
  2504. "sha512": "sha512-aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==",
  2505. "path": "system.text.encoding.codepages/4.7.0",
  2506. "hashPath": "system.text.encoding.codepages.4.7.0.nupkg.sha512"
  2507. },
  2508. "System.Text.Encoding.Extensions/4.3.0": {
  2509. "type": "package",
  2510. "serviceable": true,
  2511. "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  2512. "path": "system.text.encoding.extensions/4.3.0",
  2513. "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
  2514. },
  2515. "System.Text.Encodings.Web/4.5.0": {
  2516. "type": "package",
  2517. "serviceable": true,
  2518. "sha512": "sha512-Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
  2519. "path": "system.text.encodings.web/4.5.0",
  2520. "hashPath": "system.text.encodings.web.4.5.0.nupkg.sha512"
  2521. },
  2522. "System.Text.Json/4.7.1": {
  2523. "type": "package",
  2524. "serviceable": true,
  2525. "sha512": "sha512-XwzMbct3iNepJaFylN1+l8weWlFburEzXidqleSsLvSXdHSIJHEKtRVKHPlpWcFmJX6k3goPFfVgUfp40RR+bg==",
  2526. "path": "system.text.json/4.7.1",
  2527. "hashPath": "system.text.json.4.7.1.nupkg.sha512"
  2528. },
  2529. "System.Text.RegularExpressions/4.3.0": {
  2530. "type": "package",
  2531. "serviceable": true,
  2532. "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  2533. "path": "system.text.regularexpressions/4.3.0",
  2534. "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512"
  2535. },
  2536. "System.Threading/4.3.0": {
  2537. "type": "package",
  2538. "serviceable": true,
  2539. "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  2540. "path": "system.threading/4.3.0",
  2541. "hashPath": "system.threading.4.3.0.nupkg.sha512"
  2542. },
  2543. "System.Threading.Tasks/4.3.0": {
  2544. "type": "package",
  2545. "serviceable": true,
  2546. "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  2547. "path": "system.threading.tasks/4.3.0",
  2548. "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
  2549. },
  2550. "System.Threading.Tasks.Extensions/4.3.0": {
  2551. "type": "package",
  2552. "serviceable": true,
  2553. "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
  2554. "path": "system.threading.tasks.extensions/4.3.0",
  2555. "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512"
  2556. },
  2557. "System.Threading.Timer/4.3.0": {
  2558. "type": "package",
  2559. "serviceable": true,
  2560. "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  2561. "path": "system.threading.timer/4.3.0",
  2562. "hashPath": "system.threading.timer.4.3.0.nupkg.sha512"
  2563. },
  2564. "System.Windows.Extensions/4.7.0": {
  2565. "type": "package",
  2566. "serviceable": true,
  2567. "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  2568. "path": "system.windows.extensions/4.7.0",
  2569. "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512"
  2570. },
  2571. "System.Xml.ReaderWriter/4.3.0": {
  2572. "type": "package",
  2573. "serviceable": true,
  2574. "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  2575. "path": "system.xml.readerwriter/4.3.0",
  2576. "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512"
  2577. },
  2578. "System.Xml.XDocument/4.3.0": {
  2579. "type": "package",
  2580. "serviceable": true,
  2581. "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  2582. "path": "system.xml.xdocument/4.3.0",
  2583. "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512"
  2584. },
  2585. "System.Xml.XmlDocument/4.3.0": {
  2586. "type": "package",
  2587. "serviceable": true,
  2588. "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
  2589. "path": "system.xml.xmldocument/4.3.0",
  2590. "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512"
  2591. },
  2592. "OASystem.Domain/1.0.0": {
  2593. "type": "project",
  2594. "serviceable": false,
  2595. "sha512": ""
  2596. }
  2597. }
  2598. }