project.assets.json 130 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417
  1. {
  2. "version": 3,
  3. "targets": {
  4. "net5.0": {
  5. "AdvancedStringBuilder/0.1.0": {
  6. "type": "package",
  7. "compile": {
  8. "lib/netstandard2.0/AdvancedStringBuilder.dll": {
  9. "related": ".xml"
  10. }
  11. },
  12. "runtime": {
  13. "lib/netstandard2.0/AdvancedStringBuilder.dll": {
  14. "related": ".xml"
  15. }
  16. }
  17. },
  18. "AutoMapper/10.1.1": {
  19. "type": "package",
  20. "dependencies": {
  21. "Microsoft.CSharp": "4.7.0",
  22. "System.Reflection.Emit": "4.7.0"
  23. },
  24. "compile": {
  25. "lib/netstandard2.0/AutoMapper.dll": {
  26. "related": ".xml"
  27. }
  28. },
  29. "runtime": {
  30. "lib/netstandard2.0/AutoMapper.dll": {
  31. "related": ".xml"
  32. }
  33. }
  34. },
  35. "BouncyCastle.NetCore/1.8.5": {
  36. "type": "package",
  37. "compile": {
  38. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  39. "related": ".xml"
  40. }
  41. },
  42. "runtime": {
  43. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  44. "related": ".xml"
  45. }
  46. }
  47. },
  48. "Coravel/4.2.1": {
  49. "type": "package",
  50. "dependencies": {
  51. "Microsoft.Extensions.Caching.Memory": "3.1.0",
  52. "Microsoft.Extensions.Hosting.Abstractions": "3.1.0",
  53. "Microsoft.Extensions.Logging.Abstractions": "3.1.0"
  54. },
  55. "compile": {
  56. "lib/netstandard2.0/Coravel.dll": {
  57. "related": ".xml"
  58. }
  59. },
  60. "runtime": {
  61. "lib/netstandard2.0/Coravel.dll": {
  62. "related": ".xml"
  63. }
  64. }
  65. },
  66. "FluentEmail.Core/3.0.2": {
  67. "type": "package",
  68. "dependencies": {
  69. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  70. },
  71. "compile": {
  72. "lib/netstandard2.0/FluentEmail.Core.dll": {}
  73. },
  74. "runtime": {
  75. "lib/netstandard2.0/FluentEmail.Core.dll": {}
  76. }
  77. },
  78. "FluentEmail.Smtp/3.0.2": {
  79. "type": "package",
  80. "dependencies": {
  81. "FluentEmail.Core": "3.0.2"
  82. },
  83. "compile": {
  84. "lib/netstandard2.0/FluentEmail.Smtp.dll": {}
  85. },
  86. "runtime": {
  87. "lib/netstandard2.0/FluentEmail.Smtp.dll": {}
  88. }
  89. },
  90. "Google.Protobuf/3.11.4": {
  91. "type": "package",
  92. "dependencies": {
  93. "System.Memory": "4.5.2"
  94. },
  95. "compile": {
  96. "lib/netstandard2.0/Google.Protobuf.dll": {
  97. "related": ".pdb;.xml"
  98. }
  99. },
  100. "runtime": {
  101. "lib/netstandard2.0/Google.Protobuf.dll": {
  102. "related": ".pdb;.xml"
  103. }
  104. }
  105. },
  106. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  107. "type": "package",
  108. "dependencies": {
  109. "AdvancedStringBuilder": "0.1.0",
  110. "JavaScriptEngineSwitcher.Core": "3.21.0"
  111. },
  112. "compile": {
  113. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll": {
  114. "related": ".xml"
  115. }
  116. },
  117. "runtime": {
  118. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll": {
  119. "related": ".xml"
  120. }
  121. },
  122. "resource": {
  123. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll": {
  124. "locale": "ru-RU"
  125. }
  126. }
  127. },
  128. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  129. "type": "package",
  130. "runtimeTargets": {
  131. "runtimes/linux-x64/native/libChakraCore.so": {
  132. "assetType": "native",
  133. "rid": "linux-x64"
  134. }
  135. }
  136. },
  137. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  138. "type": "package",
  139. "build": {
  140. "build/_._": {}
  141. },
  142. "runtimeTargets": {
  143. "runtimes/win-x64/native/ChakraCore.dll": {
  144. "assetType": "native",
  145. "rid": "win-x64"
  146. }
  147. }
  148. },
  149. "JavaScriptEngineSwitcher.Core/3.21.0": {
  150. "type": "package",
  151. "dependencies": {
  152. "AdvancedStringBuilder": "0.1.0"
  153. },
  154. "compile": {
  155. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll": {
  156. "related": ".xml"
  157. }
  158. },
  159. "runtime": {
  160. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll": {
  161. "related": ".xml"
  162. }
  163. },
  164. "resource": {
  165. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll": {
  166. "locale": "ru-RU"
  167. }
  168. }
  169. },
  170. "K4os.Compression.LZ4/1.1.11": {
  171. "type": "package",
  172. "dependencies": {
  173. "System.Memory": "4.5.3"
  174. },
  175. "compile": {
  176. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  177. "related": ".xml"
  178. }
  179. },
  180. "runtime": {
  181. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  182. "related": ".xml"
  183. }
  184. }
  185. },
  186. "K4os.Compression.LZ4.Streams/1.1.11": {
  187. "type": "package",
  188. "dependencies": {
  189. "K4os.Compression.LZ4": "1.1.11",
  190. "K4os.Hash.xxHash": "1.0.6"
  191. },
  192. "compile": {
  193. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  194. "related": ".xml"
  195. }
  196. },
  197. "runtime": {
  198. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  199. "related": ".xml"
  200. }
  201. }
  202. },
  203. "K4os.Hash.xxHash/1.0.6": {
  204. "type": "package",
  205. "dependencies": {
  206. "System.Memory": "4.5.3"
  207. },
  208. "compile": {
  209. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  210. "related": ".xml"
  211. }
  212. },
  213. "runtime": {
  214. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  215. "related": ".xml"
  216. }
  217. }
  218. },
  219. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  220. "type": "package",
  221. "dependencies": {
  222. "Microsoft.EntityFrameworkCore": "5.0.0"
  223. },
  224. "compile": {
  225. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll": {
  226. "related": ".xml"
  227. }
  228. },
  229. "runtime": {
  230. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll": {
  231. "related": ".xml"
  232. }
  233. }
  234. },
  235. "log4net/2.0.17": {
  236. "type": "package",
  237. "dependencies": {
  238. "System.Configuration.ConfigurationManager": "4.5.0"
  239. },
  240. "compile": {
  241. "lib/netstandard2.0/log4net.dll": {
  242. "related": ".xml"
  243. }
  244. },
  245. "runtime": {
  246. "lib/netstandard2.0/log4net.dll": {
  247. "related": ".xml"
  248. }
  249. }
  250. },
  251. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  252. "type": "package",
  253. "dependencies": {
  254. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  255. "System.Text.Encodings.Web": "4.5.0"
  256. },
  257. "compile": {
  258. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  259. "related": ".xml"
  260. }
  261. },
  262. "runtime": {
  263. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  264. "related": ".xml"
  265. }
  266. }
  267. },
  268. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  269. "type": "package",
  270. "dependencies": {
  271. "Microsoft.Extensions.Primitives": "5.0.0",
  272. "System.IO.Pipelines": "5.0.0"
  273. },
  274. "compile": {
  275. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  276. "related": ".xml"
  277. }
  278. },
  279. "runtime": {
  280. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  281. "related": ".xml"
  282. }
  283. }
  284. },
  285. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  286. "type": "package",
  287. "dependencies": {
  288. "Microsoft.Extensions.Logging.Console": "3.1.30",
  289. "Newtonsoft.Json": "13.0.1"
  290. },
  291. "compile": {
  292. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll": {}
  293. },
  294. "runtime": {
  295. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll": {}
  296. },
  297. "frameworkReferences": [
  298. "Microsoft.AspNetCore.App"
  299. ]
  300. },
  301. "Microsoft.CSharp/4.7.0": {
  302. "type": "package",
  303. "compile": {
  304. "ref/netcoreapp2.0/_._": {}
  305. },
  306. "runtime": {
  307. "lib/netcoreapp2.0/_._": {}
  308. }
  309. },
  310. "Microsoft.EntityFrameworkCore/5.0.0": {
  311. "type": "package",
  312. "dependencies": {
  313. "Microsoft.EntityFrameworkCore.Abstractions": "5.0.0",
  314. "Microsoft.EntityFrameworkCore.Analyzers": "5.0.0",
  315. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  316. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  317. "Microsoft.Extensions.Logging": "5.0.0",
  318. "System.Collections.Immutable": "5.0.0",
  319. "System.ComponentModel.Annotations": "5.0.0",
  320. "System.Diagnostics.DiagnosticSource": "5.0.0"
  321. },
  322. "compile": {
  323. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  324. "related": ".xml"
  325. }
  326. },
  327. "runtime": {
  328. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  329. "related": ".xml"
  330. }
  331. }
  332. },
  333. "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": {
  334. "type": "package",
  335. "compile": {
  336. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  337. "related": ".xml"
  338. }
  339. },
  340. "runtime": {
  341. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  342. "related": ".xml"
  343. }
  344. }
  345. },
  346. "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": {
  347. "type": "package",
  348. "compile": {
  349. "lib/netstandard2.0/_._": {}
  350. },
  351. "runtime": {
  352. "lib/netstandard2.0/_._": {}
  353. }
  354. },
  355. "Microsoft.EntityFrameworkCore.Relational/5.0.0": {
  356. "type": "package",
  357. "dependencies": {
  358. "Microsoft.EntityFrameworkCore": "5.0.0",
  359. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  360. },
  361. "compile": {
  362. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  363. "related": ".xml"
  364. }
  365. },
  366. "runtime": {
  367. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  368. "related": ".xml"
  369. }
  370. }
  371. },
  372. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  373. "type": "package",
  374. "dependencies": {
  375. "Microsoft.Extensions.Primitives": "5.0.0"
  376. },
  377. "compile": {
  378. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  379. "related": ".xml"
  380. }
  381. },
  382. "runtime": {
  383. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  384. "related": ".xml"
  385. }
  386. }
  387. },
  388. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  389. "type": "package",
  390. "dependencies": {
  391. "Microsoft.Extensions.Caching.Abstractions": "5.0.0",
  392. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  393. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  394. "Microsoft.Extensions.Options": "5.0.0",
  395. "Microsoft.Extensions.Primitives": "5.0.0"
  396. },
  397. "compile": {
  398. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  399. "related": ".xml"
  400. }
  401. },
  402. "runtime": {
  403. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  404. "related": ".xml"
  405. }
  406. }
  407. },
  408. "Microsoft.Extensions.Configuration/5.0.0": {
  409. "type": "package",
  410. "dependencies": {
  411. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  412. "Microsoft.Extensions.Primitives": "5.0.0"
  413. },
  414. "compile": {
  415. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  416. "related": ".xml"
  417. }
  418. },
  419. "runtime": {
  420. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  421. "related": ".xml"
  422. }
  423. }
  424. },
  425. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  426. "type": "package",
  427. "dependencies": {
  428. "Microsoft.Extensions.Primitives": "5.0.0"
  429. },
  430. "compile": {
  431. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  432. "related": ".xml"
  433. }
  434. },
  435. "runtime": {
  436. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  437. "related": ".xml"
  438. }
  439. }
  440. },
  441. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  442. "type": "package",
  443. "dependencies": {
  444. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  445. },
  446. "compile": {
  447. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  448. "related": ".xml"
  449. }
  450. },
  451. "runtime": {
  452. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  453. "related": ".xml"
  454. }
  455. }
  456. },
  457. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  458. "type": "package",
  459. "dependencies": {
  460. "Microsoft.Extensions.Configuration": "5.0.0",
  461. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  462. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  463. "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
  464. "Microsoft.Extensions.Primitives": "5.0.0"
  465. },
  466. "compile": {
  467. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  468. "related": ".xml"
  469. }
  470. },
  471. "runtime": {
  472. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  473. "related": ".xml"
  474. }
  475. }
  476. },
  477. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  478. "type": "package",
  479. "dependencies": {
  480. "Microsoft.Extensions.Configuration": "5.0.0",
  481. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  482. "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
  483. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
  484. },
  485. "compile": {
  486. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  487. "related": ".xml"
  488. }
  489. },
  490. "runtime": {
  491. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  492. "related": ".xml"
  493. }
  494. }
  495. },
  496. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  497. "type": "package",
  498. "dependencies": {
  499. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  500. },
  501. "compile": {
  502. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
  503. "related": ".xml"
  504. }
  505. },
  506. "runtime": {
  507. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
  508. "related": ".xml"
  509. }
  510. }
  511. },
  512. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  513. "type": "package",
  514. "compile": {
  515. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  516. "related": ".xml"
  517. }
  518. },
  519. "runtime": {
  520. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  521. "related": ".xml"
  522. }
  523. }
  524. },
  525. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  526. "type": "package",
  527. "dependencies": {
  528. "Microsoft.Extensions.Primitives": "5.0.0"
  529. },
  530. "compile": {
  531. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  532. "related": ".xml"
  533. }
  534. },
  535. "runtime": {
  536. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  537. "related": ".xml"
  538. }
  539. }
  540. },
  541. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  542. "type": "package",
  543. "dependencies": {
  544. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  545. "Microsoft.Extensions.FileSystemGlobbing": "5.0.0",
  546. "Microsoft.Extensions.Primitives": "5.0.0"
  547. },
  548. "compile": {
  549. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  550. "related": ".xml"
  551. }
  552. },
  553. "runtime": {
  554. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  555. "related": ".xml"
  556. }
  557. }
  558. },
  559. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  560. "type": "package",
  561. "compile": {
  562. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  563. "related": ".xml"
  564. }
  565. },
  566. "runtime": {
  567. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  568. "related": ".xml"
  569. }
  570. }
  571. },
  572. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  573. "type": "package",
  574. "dependencies": {
  575. "Microsoft.Extensions.Configuration.Abstractions": "3.1.0",
  576. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0",
  577. "Microsoft.Extensions.FileProviders.Abstractions": "3.1.0",
  578. "Microsoft.Extensions.Logging.Abstractions": "3.1.0"
  579. },
  580. "compile": {
  581. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  582. "related": ".xml"
  583. }
  584. },
  585. "runtime": {
  586. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  587. "related": ".xml"
  588. }
  589. }
  590. },
  591. "Microsoft.Extensions.Http/5.0.0": {
  592. "type": "package",
  593. "dependencies": {
  594. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  595. "Microsoft.Extensions.Logging": "5.0.0",
  596. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  597. "Microsoft.Extensions.Options": "5.0.0"
  598. },
  599. "compile": {
  600. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  601. "related": ".xml"
  602. }
  603. },
  604. "runtime": {
  605. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  606. "related": ".xml"
  607. }
  608. }
  609. },
  610. "Microsoft.Extensions.Logging/5.0.0": {
  611. "type": "package",
  612. "dependencies": {
  613. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  614. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  615. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  616. "Microsoft.Extensions.Options": "5.0.0"
  617. },
  618. "compile": {
  619. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  620. "related": ".xml"
  621. }
  622. },
  623. "runtime": {
  624. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  625. "related": ".xml"
  626. }
  627. }
  628. },
  629. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  630. "type": "package",
  631. "compile": {
  632. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  633. "related": ".xml"
  634. }
  635. },
  636. "runtime": {
  637. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  638. "related": ".xml"
  639. }
  640. }
  641. },
  642. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  643. "type": "package",
  644. "dependencies": {
  645. "Microsoft.Extensions.Logging": "3.1.30",
  646. "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.30"
  647. },
  648. "compile": {
  649. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
  650. "related": ".xml"
  651. }
  652. },
  653. "runtime": {
  654. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
  655. "related": ".xml"
  656. }
  657. }
  658. },
  659. "Microsoft.Extensions.Logging.Console/3.1.30": {
  660. "type": "package",
  661. "dependencies": {
  662. "Microsoft.Extensions.Configuration.Abstractions": "3.1.30",
  663. "Microsoft.Extensions.Logging": "3.1.30",
  664. "Microsoft.Extensions.Logging.Configuration": "3.1.30"
  665. },
  666. "compile": {
  667. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
  668. "related": ".xml"
  669. }
  670. },
  671. "runtime": {
  672. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
  673. "related": ".xml"
  674. }
  675. }
  676. },
  677. "Microsoft.Extensions.Options/5.0.0": {
  678. "type": "package",
  679. "dependencies": {
  680. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  681. "Microsoft.Extensions.Primitives": "5.0.0"
  682. },
  683. "compile": {
  684. "lib/net5.0/Microsoft.Extensions.Options.dll": {
  685. "related": ".xml"
  686. }
  687. },
  688. "runtime": {
  689. "lib/net5.0/Microsoft.Extensions.Options.dll": {
  690. "related": ".xml"
  691. }
  692. }
  693. },
  694. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  695. "type": "package",
  696. "dependencies": {
  697. "Microsoft.Extensions.Configuration.Abstractions": "3.1.30",
  698. "Microsoft.Extensions.Configuration.Binder": "3.1.30",
  699. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.30",
  700. "Microsoft.Extensions.Options": "3.1.30"
  701. },
  702. "compile": {
  703. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  704. "related": ".xml"
  705. }
  706. },
  707. "runtime": {
  708. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  709. "related": ".xml"
  710. }
  711. }
  712. },
  713. "Microsoft.Extensions.Primitives/5.0.0": {
  714. "type": "package",
  715. "compile": {
  716. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
  717. "related": ".xml"
  718. }
  719. },
  720. "runtime": {
  721. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
  722. "related": ".xml"
  723. }
  724. }
  725. },
  726. "Microsoft.NETCore.Platforms/5.0.0": {
  727. "type": "package",
  728. "compile": {
  729. "lib/netstandard1.0/_._": {}
  730. },
  731. "runtime": {
  732. "lib/netstandard1.0/_._": {}
  733. }
  734. },
  735. "Microsoft.Win32.SystemEvents/5.0.0": {
  736. "type": "package",
  737. "dependencies": {
  738. "Microsoft.NETCore.Platforms": "5.0.0"
  739. },
  740. "compile": {
  741. "ref/netstandard2.0/_._": {
  742. "related": ".xml"
  743. }
  744. },
  745. "runtime": {
  746. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
  747. "related": ".xml"
  748. }
  749. },
  750. "runtimeTargets": {
  751. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  752. "assetType": "runtime",
  753. "rid": "win"
  754. }
  755. }
  756. },
  757. "MySql.Data/8.0.23": {
  758. "type": "package",
  759. "dependencies": {
  760. "BouncyCastle.NetCore": "1.8.5",
  761. "Google.Protobuf": "3.11.4",
  762. "K4os.Compression.LZ4": "1.1.11",
  763. "K4os.Compression.LZ4.Streams": "1.1.11",
  764. "K4os.Hash.xxHash": "1.0.6",
  765. "SSH.NET": "2020.0.0-beta1",
  766. "System.Buffers": "4.5.1",
  767. "System.Configuration.ConfigurationManager": "4.4.1",
  768. "System.Security.Permissions": "4.7.0",
  769. "System.Text.Encoding.CodePages": "4.4.0"
  770. },
  771. "compile": {
  772. "lib/net5.0/MySql.Data.dll": {
  773. "related": ".xml"
  774. },
  775. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  776. "lib/net5.0/Zstandard.Net.dll": {}
  777. },
  778. "runtime": {
  779. "lib/net5.0/MySql.Data.dll": {
  780. "related": ".xml"
  781. },
  782. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  783. "lib/net5.0/Zstandard.Net.dll": {}
  784. }
  785. },
  786. "MySqlConnector/1.1.0": {
  787. "type": "package",
  788. "compile": {
  789. "lib/net5.0/MySqlConnector.dll": {
  790. "related": ".xml"
  791. }
  792. },
  793. "runtime": {
  794. "lib/net5.0/MySqlConnector.dll": {
  795. "related": ".xml"
  796. }
  797. }
  798. },
  799. "Newtonsoft.Json/13.0.1": {
  800. "type": "package",
  801. "compile": {
  802. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  803. "related": ".xml"
  804. }
  805. },
  806. "runtime": {
  807. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  808. "related": ".xml"
  809. }
  810. }
  811. },
  812. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  813. "type": "package",
  814. "dependencies": {
  815. "Microsoft.EntityFrameworkCore.Relational": "5.0.0",
  816. "MySqlConnector": "1.1.0"
  817. },
  818. "compile": {
  819. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  820. "related": ".xml"
  821. }
  822. },
  823. "runtime": {
  824. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  825. "related": ".xml"
  826. }
  827. }
  828. },
  829. "QRCoder/1.4.3": {
  830. "type": "package",
  831. "dependencies": {
  832. "System.Drawing.Common": "5.0.3"
  833. },
  834. "compile": {
  835. "lib/net5.0/QRCoder.dll": {}
  836. },
  837. "runtime": {
  838. "lib/net5.0/QRCoder.dll": {}
  839. }
  840. },
  841. "Quartz/3.3.3": {
  842. "type": "package",
  843. "dependencies": {
  844. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  845. "System.Configuration.ConfigurationManager": "4.7.0",
  846. "System.Diagnostics.DiagnosticSource": "4.7.1"
  847. },
  848. "compile": {
  849. "lib/netstandard2.0/Quartz.dll": {
  850. "related": ".xml"
  851. }
  852. },
  853. "runtime": {
  854. "lib/netstandard2.0/Quartz.dll": {
  855. "related": ".xml"
  856. }
  857. }
  858. },
  859. "RabbitMQ.Client/6.8.1": {
  860. "type": "package",
  861. "dependencies": {
  862. "System.Memory": "4.5.5",
  863. "System.Threading.Channels": "7.0.0"
  864. },
  865. "compile": {
  866. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  867. "related": ".xml"
  868. }
  869. },
  870. "runtime": {
  871. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  872. "related": ".xml"
  873. }
  874. }
  875. },
  876. "SixLabors.ImageSharp/2.1.6": {
  877. "type": "package",
  878. "dependencies": {
  879. "System.Runtime.CompilerServices.Unsafe": "5.0.0",
  880. "System.Text.Encoding.CodePages": "5.0.0"
  881. },
  882. "compile": {
  883. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  884. "related": ".xml"
  885. }
  886. },
  887. "runtime": {
  888. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  889. "related": ".xml"
  890. }
  891. }
  892. },
  893. "SSH.NET/2020.0.0-beta1": {
  894. "type": "package",
  895. "dependencies": {
  896. "SshNet.Security.Cryptography": "[1.3.0]"
  897. },
  898. "compile": {
  899. "lib/netstandard2.0/Renci.SshNet.dll": {
  900. "related": ".xml"
  901. }
  902. },
  903. "runtime": {
  904. "lib/netstandard2.0/Renci.SshNet.dll": {
  905. "related": ".xml"
  906. }
  907. }
  908. },
  909. "SshNet.Security.Cryptography/1.3.0": {
  910. "type": "package",
  911. "compile": {
  912. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  913. "related": ".xml"
  914. }
  915. },
  916. "runtime": {
  917. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  918. "related": ".xml"
  919. }
  920. }
  921. },
  922. "System.Buffers/4.5.1": {
  923. "type": "package",
  924. "compile": {
  925. "ref/netcoreapp2.0/_._": {}
  926. },
  927. "runtime": {
  928. "lib/netcoreapp2.0/_._": {}
  929. }
  930. },
  931. "System.Collections.Immutable/5.0.0": {
  932. "type": "package",
  933. "compile": {
  934. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  935. "related": ".xml"
  936. }
  937. },
  938. "runtime": {
  939. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  940. "related": ".xml"
  941. }
  942. }
  943. },
  944. "System.ComponentModel.Annotations/5.0.0": {
  945. "type": "package",
  946. "compile": {
  947. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {
  948. "related": ".xml"
  949. }
  950. },
  951. "runtime": {
  952. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
  953. "related": ".xml"
  954. }
  955. }
  956. },
  957. "System.Configuration.ConfigurationManager/4.7.0": {
  958. "type": "package",
  959. "dependencies": {
  960. "System.Security.Cryptography.ProtectedData": "4.7.0",
  961. "System.Security.Permissions": "4.7.0"
  962. },
  963. "compile": {
  964. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  965. "related": ".xml"
  966. }
  967. },
  968. "runtime": {
  969. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  970. "related": ".xml"
  971. }
  972. }
  973. },
  974. "System.Diagnostics.DiagnosticSource/5.0.0": {
  975. "type": "package",
  976. "compile": {
  977. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  978. "related": ".xml"
  979. }
  980. },
  981. "runtime": {
  982. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  983. "related": ".xml"
  984. }
  985. }
  986. },
  987. "System.Drawing.Common/5.0.3": {
  988. "type": "package",
  989. "dependencies": {
  990. "Microsoft.Win32.SystemEvents": "5.0.0"
  991. },
  992. "compile": {
  993. "ref/netcoreapp3.0/System.Drawing.Common.dll": {
  994. "related": ".xml"
  995. }
  996. },
  997. "runtime": {
  998. "lib/netcoreapp3.0/System.Drawing.Common.dll": {
  999. "related": ".xml"
  1000. }
  1001. },
  1002. "runtimeTargets": {
  1003. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1004. "assetType": "runtime",
  1005. "rid": "unix"
  1006. },
  1007. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1008. "assetType": "runtime",
  1009. "rid": "win"
  1010. }
  1011. }
  1012. },
  1013. "System.IO.Pipelines/5.0.0": {
  1014. "type": "package",
  1015. "compile": {
  1016. "ref/netcoreapp2.0/System.IO.Pipelines.dll": {
  1017. "related": ".xml"
  1018. }
  1019. },
  1020. "runtime": {
  1021. "lib/netcoreapp3.0/System.IO.Pipelines.dll": {
  1022. "related": ".xml"
  1023. }
  1024. }
  1025. },
  1026. "System.Memory/4.5.5": {
  1027. "type": "package",
  1028. "compile": {
  1029. "ref/netcoreapp2.1/_._": {}
  1030. },
  1031. "runtime": {
  1032. "lib/netcoreapp2.1/_._": {}
  1033. }
  1034. },
  1035. "System.Reflection.Emit/4.7.0": {
  1036. "type": "package",
  1037. "compile": {
  1038. "ref/netcoreapp2.0/_._": {}
  1039. },
  1040. "runtime": {
  1041. "lib/netcoreapp2.0/_._": {}
  1042. }
  1043. },
  1044. "System.Runtime.CompilerServices.Unsafe/5.0.0": {
  1045. "type": "package",
  1046. "compile": {
  1047. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll": {
  1048. "related": ".xml"
  1049. }
  1050. },
  1051. "runtime": {
  1052. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {
  1053. "related": ".xml"
  1054. }
  1055. }
  1056. },
  1057. "System.Security.AccessControl/4.7.0": {
  1058. "type": "package",
  1059. "dependencies": {
  1060. "Microsoft.NETCore.Platforms": "3.1.0",
  1061. "System.Security.Principal.Windows": "4.7.0"
  1062. },
  1063. "compile": {
  1064. "ref/netstandard2.0/System.Security.AccessControl.dll": {
  1065. "related": ".xml"
  1066. }
  1067. },
  1068. "runtime": {
  1069. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  1070. "related": ".xml"
  1071. }
  1072. },
  1073. "runtimeTargets": {
  1074. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  1075. "assetType": "runtime",
  1076. "rid": "win"
  1077. }
  1078. }
  1079. },
  1080. "System.Security.Cryptography.ProtectedData/4.7.0": {
  1081. "type": "package",
  1082. "compile": {
  1083. "ref/netstandard2.0/_._": {
  1084. "related": ".xml"
  1085. }
  1086. },
  1087. "runtime": {
  1088. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  1089. "related": ".xml"
  1090. }
  1091. },
  1092. "runtimeTargets": {
  1093. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  1094. "assetType": "runtime",
  1095. "rid": "win"
  1096. }
  1097. }
  1098. },
  1099. "System.Security.Permissions/4.7.0": {
  1100. "type": "package",
  1101. "dependencies": {
  1102. "System.Security.AccessControl": "4.7.0",
  1103. "System.Windows.Extensions": "4.7.0"
  1104. },
  1105. "compile": {
  1106. "ref/netcoreapp3.0/System.Security.Permissions.dll": {
  1107. "related": ".xml"
  1108. }
  1109. },
  1110. "runtime": {
  1111. "lib/netcoreapp3.0/System.Security.Permissions.dll": {
  1112. "related": ".xml"
  1113. }
  1114. }
  1115. },
  1116. "System.Security.Principal.Windows/4.7.0": {
  1117. "type": "package",
  1118. "compile": {
  1119. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
  1120. "related": ".xml"
  1121. }
  1122. },
  1123. "runtime": {
  1124. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  1125. "related": ".xml"
  1126. }
  1127. },
  1128. "runtimeTargets": {
  1129. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  1130. "assetType": "runtime",
  1131. "rid": "unix"
  1132. },
  1133. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  1134. "assetType": "runtime",
  1135. "rid": "win"
  1136. }
  1137. }
  1138. },
  1139. "System.Text.Encoding.CodePages/5.0.0": {
  1140. "type": "package",
  1141. "dependencies": {
  1142. "Microsoft.NETCore.Platforms": "5.0.0"
  1143. },
  1144. "compile": {
  1145. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  1146. "related": ".xml"
  1147. }
  1148. },
  1149. "runtime": {
  1150. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  1151. "related": ".xml"
  1152. }
  1153. },
  1154. "runtimeTargets": {
  1155. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  1156. "assetType": "runtime",
  1157. "rid": "win"
  1158. }
  1159. }
  1160. },
  1161. "System.Text.Encodings.Web/4.5.0": {
  1162. "type": "package",
  1163. "compile": {
  1164. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  1165. "related": ".xml"
  1166. }
  1167. },
  1168. "runtime": {
  1169. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  1170. "related": ".xml"
  1171. }
  1172. }
  1173. },
  1174. "System.Threading.Channels/7.0.0": {
  1175. "type": "package",
  1176. "compile": {
  1177. "lib/netstandard2.1/System.Threading.Channels.dll": {
  1178. "related": ".xml"
  1179. }
  1180. },
  1181. "runtime": {
  1182. "lib/netstandard2.1/System.Threading.Channels.dll": {
  1183. "related": ".xml"
  1184. }
  1185. },
  1186. "build": {
  1187. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets": {}
  1188. }
  1189. },
  1190. "System.Windows.Extensions/4.7.0": {
  1191. "type": "package",
  1192. "dependencies": {
  1193. "System.Drawing.Common": "4.7.0"
  1194. },
  1195. "compile": {
  1196. "ref/netcoreapp3.0/System.Windows.Extensions.dll": {
  1197. "related": ".xml"
  1198. }
  1199. },
  1200. "runtime": {
  1201. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  1202. "related": ".xml"
  1203. }
  1204. },
  1205. "runtimeTargets": {
  1206. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  1207. "assetType": "runtime",
  1208. "rid": "win"
  1209. }
  1210. }
  1211. },
  1212. "ZXing.Net/0.16.9": {
  1213. "type": "package",
  1214. "compile": {
  1215. "lib/net5.0/zxing.dll": {
  1216. "related": ".XML"
  1217. }
  1218. },
  1219. "runtime": {
  1220. "lib/net5.0/zxing.dll": {
  1221. "related": ".XML"
  1222. }
  1223. }
  1224. },
  1225. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  1226. "type": "package",
  1227. "dependencies": {
  1228. "SixLabors.ImageSharp": "2.1.3",
  1229. "ZXing.Net": "0.16.9"
  1230. },
  1231. "compile": {
  1232. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  1233. "related": ".pdb;.xml"
  1234. }
  1235. },
  1236. "runtime": {
  1237. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  1238. "related": ".pdb;.xml"
  1239. }
  1240. }
  1241. },
  1242. "Ropin.Core.Common/1.0.0": {
  1243. "type": "project",
  1244. "framework": ".NETCoreApp,Version=v5.0",
  1245. "dependencies": {
  1246. "Coravel": "4.2.1",
  1247. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  1248. "Newtonsoft.Json": "13.0.1",
  1249. "QRCoder": "1.4.3",
  1250. "SixLabors.ImageSharp": "2.1.6",
  1251. "ZXing.Net.Bindings.ImageSharp.V2": "0.16.15"
  1252. },
  1253. "compile": {
  1254. "bin/placeholder/Ropin.Core.Common.dll": {}
  1255. },
  1256. "runtime": {
  1257. "bin/placeholder/Ropin.Core.Common.dll": {}
  1258. }
  1259. },
  1260. "Ropin.Inspection.Common/1.0.0": {
  1261. "type": "project",
  1262. "framework": ".NETCoreApp,Version=v5.0",
  1263. "dependencies": {
  1264. "FluentEmail.Smtp": "3.0.2",
  1265. "JavaScriptEngineSwitcher.ChakraCore": "3.21.0",
  1266. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64": "3.21.0",
  1267. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64": "3.21.0",
  1268. "JavaScriptEngineSwitcher.Core": "3.21.0",
  1269. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  1270. "Microsoft.AspNetCore.NodeServices": "3.1.30",
  1271. "Microsoft.Extensions.Configuration": "5.0.0",
  1272. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  1273. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  1274. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  1275. "Microsoft.Extensions.Http": "5.0.0",
  1276. "Newtonsoft.Json": "13.0.1",
  1277. "RabbitMQ.Client": "6.8.1",
  1278. "log4net": "2.0.17"
  1279. },
  1280. "compile": {
  1281. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  1282. },
  1283. "runtime": {
  1284. "bin/placeholder/Ropin.Inspection.Common.dll": {}
  1285. }
  1286. },
  1287. "Ropin.Inspection.Model/1.0.0": {
  1288. "type": "project",
  1289. "framework": ".NETCoreApp,Version=v5.0",
  1290. "dependencies": {
  1291. "Microsoft.AspNetCore.Http.Features": "5.0.0",
  1292. "Microsoft.EntityFrameworkCore": "5.0.0",
  1293. "MySql.Data": "8.0.23",
  1294. "Pomelo.EntityFrameworkCore.MySql": "5.0.0-alpha.2",
  1295. "Ropin.Inspection.Common": "1.0.0"
  1296. },
  1297. "compile": {
  1298. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  1299. },
  1300. "runtime": {
  1301. "bin/placeholder/Ropin.Inspection.Model.dll": {}
  1302. }
  1303. },
  1304. "Ropin.Inspection.Repository/1.0.0": {
  1305. "type": "project",
  1306. "framework": ".NETCoreApp,Version=v5.0",
  1307. "dependencies": {
  1308. "LinqKit.Microsoft.EntityFrameworkCore": "5.0.24",
  1309. "Microsoft.EntityFrameworkCore": "5.0.0",
  1310. "Ropin.Inspection.Model": "1.0.0"
  1311. },
  1312. "compile": {
  1313. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  1314. },
  1315. "runtime": {
  1316. "bin/placeholder/Ropin.Inspection.Repository.dll": {}
  1317. }
  1318. },
  1319. "Ropin.Inspection.Service/1.0.0": {
  1320. "type": "project",
  1321. "framework": ".NETCoreApp,Version=v5.0",
  1322. "dependencies": {
  1323. "AutoMapper": "10.1.1",
  1324. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  1325. "Newtonsoft.Json": "13.0.1",
  1326. "Ropin.Core.Common": "1.0.0",
  1327. "Ropin.Inspection.Common": "1.0.0",
  1328. "Ropin.Inspection.Model": "1.0.0",
  1329. "Ropin.Inspection.Repository": "1.0.0",
  1330. "log4net": "2.0.17"
  1331. },
  1332. "compile": {
  1333. "bin/placeholder/Ropin.Inspection.Service.dll": {}
  1334. },
  1335. "runtime": {
  1336. "bin/placeholder/Ropin.Inspection.Service.dll": {}
  1337. }
  1338. }
  1339. }
  1340. },
  1341. "libraries": {
  1342. "AdvancedStringBuilder/0.1.0": {
  1343. "sha512": "IbN3r5whlJvi8MhCDPVpIb+NVScyUcKSdcJZrnoXFDyzPDISl3AbWouNBYIHRdZdfGuzqCQEhM1vkxbIKqQVaQ==",
  1344. "type": "package",
  1345. "path": "advancedstringbuilder/0.1.0",
  1346. "files": [
  1347. ".nupkg.metadata",
  1348. ".signature.p7s",
  1349. "advancedstringbuilder.0.1.0.nupkg.sha512",
  1350. "advancedstringbuilder.nuspec",
  1351. "lib/net40-client/AdvancedStringBuilder.dll",
  1352. "lib/net40-client/AdvancedStringBuilder.xml",
  1353. "lib/net45/AdvancedStringBuilder.dll",
  1354. "lib/net45/AdvancedStringBuilder.xml",
  1355. "lib/netstandard1.0/AdvancedStringBuilder.dll",
  1356. "lib/netstandard1.0/AdvancedStringBuilder.xml",
  1357. "lib/netstandard2.0/AdvancedStringBuilder.dll",
  1358. "lib/netstandard2.0/AdvancedStringBuilder.xml"
  1359. ]
  1360. },
  1361. "AutoMapper/10.1.1": {
  1362. "sha512": "uMgbqOdu9ZG5cIOty0C85hzzayBH2i9BthnS5FlMqKtMSHDv4ts81a2jS1VFaDBVhlBeIqJ/kQKjQY95BZde9w==",
  1363. "type": "package",
  1364. "path": "automapper/10.1.1",
  1365. "files": [
  1366. ".nupkg.metadata",
  1367. ".signature.p7s",
  1368. "automapper.10.1.1.nupkg.sha512",
  1369. "automapper.nuspec",
  1370. "icon.png",
  1371. "lib/net461/AutoMapper.dll",
  1372. "lib/net461/AutoMapper.xml",
  1373. "lib/netstandard2.0/AutoMapper.dll",
  1374. "lib/netstandard2.0/AutoMapper.xml"
  1375. ]
  1376. },
  1377. "BouncyCastle.NetCore/1.8.5": {
  1378. "sha512": "6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==",
  1379. "type": "package",
  1380. "path": "bouncycastle.netcore/1.8.5",
  1381. "files": [
  1382. ".nupkg.metadata",
  1383. ".signature.p7s",
  1384. "bouncycastle.netcore.1.8.5.nupkg.sha512",
  1385. "bouncycastle.netcore.nuspec",
  1386. "lib/Mono/BouncyCastle.Crypto.dll",
  1387. "lib/Mono/BouncyCastle.Crypto.xml",
  1388. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  1389. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  1390. "lib/MonoMac/BouncyCastle.Crypto.dll",
  1391. "lib/MonoMac/BouncyCastle.Crypto.xml",
  1392. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  1393. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  1394. "lib/net20/BouncyCastle.Crypto.dll",
  1395. "lib/net20/BouncyCastle.Crypto.xml",
  1396. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  1397. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  1398. "lib/xamarinios/BouncyCastle.Crypto.dll",
  1399. "lib/xamarinios/BouncyCastle.Crypto.xml"
  1400. ]
  1401. },
  1402. "Coravel/4.2.1": {
  1403. "sha512": "goj2P5yivyj5e3UwHyA9ET1s11US0V73Labc+KBT7fF+sZK5Uts/CE0lPAxgtWj+/uwM1bRpFDdAFNh+z7U2kw==",
  1404. "type": "package",
  1405. "path": "coravel/4.2.1",
  1406. "files": [
  1407. ".nupkg.metadata",
  1408. ".signature.p7s",
  1409. "coravel.4.2.1.nupkg.sha512",
  1410. "coravel.nuspec",
  1411. "lib/netstandard2.0/Coravel.dll",
  1412. "lib/netstandard2.0/Coravel.xml",
  1413. "logo.png",
  1414. "readme.md"
  1415. ]
  1416. },
  1417. "FluentEmail.Core/3.0.2": {
  1418. "sha512": "uQFFbJgMhhCFUti7pfMi429fMNi7fLGMj+7uDtD7POlQzLxlhXJ6tmt4Y1SI51sZsA36GO5b7+o29eY/dKiICQ==",
  1419. "type": "package",
  1420. "path": "fluentemail.core/3.0.2",
  1421. "files": [
  1422. ".nupkg.metadata",
  1423. ".signature.p7s",
  1424. "fluentemail.core.3.0.2.nupkg.sha512",
  1425. "fluentemail.core.nuspec",
  1426. "fluentemail_logo_64x64.png",
  1427. "lib/netstandard2.0/FluentEmail.Core.dll"
  1428. ]
  1429. },
  1430. "FluentEmail.Smtp/3.0.2": {
  1431. "sha512": "Y5pZKS/mXSl7D5WJWecvfo1kpIMDc6U0VRU6wRbE9wEv2IqMH3cQXa/97Pwi+m31COepIqc6dMhGMtAJ2Qh7rw==",
  1432. "type": "package",
  1433. "path": "fluentemail.smtp/3.0.2",
  1434. "files": [
  1435. ".nupkg.metadata",
  1436. ".signature.p7s",
  1437. "fluentemail.smtp.3.0.2.nupkg.sha512",
  1438. "fluentemail.smtp.nuspec",
  1439. "fluentemail_logo_64x64.png",
  1440. "lib/netstandard2.0/FluentEmail.Smtp.dll"
  1441. ]
  1442. },
  1443. "Google.Protobuf/3.11.4": {
  1444. "sha512": "dajCxjDCiPyZuqwZCkFJTwhn/0TJ5VesIs4fXvs56ez1VUi68JjhYMMsPjnJ9gcPqJwTMtXMU1WqUdXYiG1x4w==",
  1445. "type": "package",
  1446. "path": "google.protobuf/3.11.4",
  1447. "files": [
  1448. ".nupkg.metadata",
  1449. ".signature.p7s",
  1450. "google.protobuf.3.11.4.nupkg.sha512",
  1451. "google.protobuf.nuspec",
  1452. "lib/net45/Google.Protobuf.dll",
  1453. "lib/net45/Google.Protobuf.pdb",
  1454. "lib/net45/Google.Protobuf.xml",
  1455. "lib/netstandard1.0/Google.Protobuf.dll",
  1456. "lib/netstandard1.0/Google.Protobuf.pdb",
  1457. "lib/netstandard1.0/Google.Protobuf.xml",
  1458. "lib/netstandard2.0/Google.Protobuf.dll",
  1459. "lib/netstandard2.0/Google.Protobuf.pdb",
  1460. "lib/netstandard2.0/Google.Protobuf.xml"
  1461. ]
  1462. },
  1463. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  1464. "sha512": "rJLy5KuyC9EJI6sKwG9w3fXWEXKX767ewJuP45VgjWxaFqamPO6hhzI19u7TXj3d9/bKQIUD9Vwc54PCYOKDtA==",
  1465. "type": "package",
  1466. "path": "javascriptengineswitcher.chakracore/3.21.0",
  1467. "files": [
  1468. ".nupkg.metadata",
  1469. ".signature.p7s",
  1470. "LICENSE.txt",
  1471. "advanced-string-builder-license.txt",
  1472. "chakra-samples-license.txt",
  1473. "icon.png",
  1474. "javascriptengineswitcher.chakracore.3.21.0.nupkg.sha512",
  1475. "javascriptengineswitcher.chakracore.nuspec",
  1476. "jsrt-dotnet-license.txt",
  1477. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.dll",
  1478. "lib/net40-client/JavaScriptEngineSwitcher.ChakraCore.xml",
  1479. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  1480. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.dll",
  1481. "lib/net45/JavaScriptEngineSwitcher.ChakraCore.xml",
  1482. "lib/net45/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  1483. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.dll",
  1484. "lib/net471/JavaScriptEngineSwitcher.ChakraCore.xml",
  1485. "lib/net471/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  1486. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.dll",
  1487. "lib/netstandard1.3/JavaScriptEngineSwitcher.ChakraCore.xml",
  1488. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  1489. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.dll",
  1490. "lib/netstandard2.0/JavaScriptEngineSwitcher.ChakraCore.xml",
  1491. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  1492. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll",
  1493. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.xml",
  1494. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll",
  1495. "polyfills-for-old-dot-net-license.txt",
  1496. "readme.txt"
  1497. ]
  1498. },
  1499. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  1500. "sha512": "490LVkaKSX9OUJmuEhcC3zuCNxq4q10n4nYNrKYJyX91hWE0PJQKK9dVmk33dSG19o8Vo5sYU5xZ3J1ugAflBw==",
  1501. "type": "package",
  1502. "path": "javascriptengineswitcher.chakracore.native.linux-x64/3.21.0",
  1503. "files": [
  1504. ".nupkg.metadata",
  1505. ".signature.p7s",
  1506. "LICENSE.txt",
  1507. "chakra-core-license.txt",
  1508. "icon.png",
  1509. "javascriptengineswitcher.chakracore.native.linux-x64.3.21.0.nupkg.sha512",
  1510. "javascriptengineswitcher.chakracore.native.linux-x64.nuspec",
  1511. "readme.txt",
  1512. "runtimes/linux-x64/native/libChakraCore.so"
  1513. ]
  1514. },
  1515. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  1516. "sha512": "RVUj0ZcsQns8HC0jhyEC6lvSHKH+AtK8p5JTPTL/fe2lIx1RVq7d+Hn3/t3bDbSDGP7afY1kmETJFchmwNc/3Q==",
  1517. "type": "package",
  1518. "path": "javascriptengineswitcher.chakracore.native.win-x64/3.21.0",
  1519. "hasTools": true,
  1520. "files": [
  1521. ".nupkg.metadata",
  1522. ".signature.p7s",
  1523. "LICENSE.txt",
  1524. "build/JavaScriptEngineSwitcher.ChakraCore.Native.win-x64.props",
  1525. "chakra-core-license.txt",
  1526. "icon.png",
  1527. "javascriptengineswitcher.chakracore.native.win-x64.3.21.0.nupkg.sha512",
  1528. "javascriptengineswitcher.chakracore.native.win-x64.nuspec",
  1529. "readme.txt",
  1530. "runtimes/win-x64/native/ChakraCore.dll",
  1531. "tools/Install.ps1",
  1532. "tools/Uninstall.ps1"
  1533. ]
  1534. },
  1535. "JavaScriptEngineSwitcher.Core/3.21.0": {
  1536. "sha512": "/gXflCb9CMjXkoY84mOZcVoezfT6/pIPvgAsaSm+ADrOE4PSFCVyMg5/e9JRuGCHPnQRo6Cj34WgAVJ0BKJVLw==",
  1537. "type": "package",
  1538. "path": "javascriptengineswitcher.core/3.21.0",
  1539. "files": [
  1540. ".nupkg.metadata",
  1541. ".signature.p7s",
  1542. "LICENSE.txt",
  1543. "advanced-string-builder-license.txt",
  1544. "icon.png",
  1545. "javascriptengineswitcher.core.3.21.0.nupkg.sha512",
  1546. "javascriptengineswitcher.core.nuspec",
  1547. "lib/net40-client/JavaScriptEngineSwitcher.Core.dll",
  1548. "lib/net40-client/JavaScriptEngineSwitcher.Core.xml",
  1549. "lib/net40-client/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  1550. "lib/net45/JavaScriptEngineSwitcher.Core.dll",
  1551. "lib/net45/JavaScriptEngineSwitcher.Core.xml",
  1552. "lib/net45/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  1553. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.dll",
  1554. "lib/netstandard1.3/JavaScriptEngineSwitcher.Core.xml",
  1555. "lib/netstandard1.3/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  1556. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll",
  1557. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.xml",
  1558. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll",
  1559. "readme.txt"
  1560. ]
  1561. },
  1562. "K4os.Compression.LZ4/1.1.11": {
  1563. "sha512": "RNvJw0UGkedPhCqVBNIogtfQebY+bQt0PN7xDbVe5LWLra0ZEqPfjPSl7iStj3rgDnkqkkTTpm+vCX3hU1qKmA==",
  1564. "type": "package",
  1565. "path": "k4os.compression.lz4/1.1.11",
  1566. "files": [
  1567. ".nupkg.metadata",
  1568. ".signature.p7s",
  1569. "k4os.compression.lz4.1.1.11.nupkg.sha512",
  1570. "k4os.compression.lz4.nuspec",
  1571. "lib/net45/K4os.Compression.LZ4.dll",
  1572. "lib/net45/K4os.Compression.LZ4.xml",
  1573. "lib/net46/K4os.Compression.LZ4.dll",
  1574. "lib/net46/K4os.Compression.LZ4.xml",
  1575. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  1576. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  1577. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  1578. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  1579. ]
  1580. },
  1581. "K4os.Compression.LZ4.Streams/1.1.11": {
  1582. "sha512": "x+BidXriYsNP4HNTHKx+5cVQguHHwbfs6nM79fDHOCOrcNwnaBms4dwzAV/ZALmKsNKcHmY74PeUZiCC4qLKwQ==",
  1583. "type": "package",
  1584. "path": "k4os.compression.lz4.streams/1.1.11",
  1585. "files": [
  1586. ".nupkg.metadata",
  1587. ".signature.p7s",
  1588. "k4os.compression.lz4.streams.1.1.11.nupkg.sha512",
  1589. "k4os.compression.lz4.streams.nuspec",
  1590. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  1591. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  1592. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  1593. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  1594. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  1595. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  1596. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  1597. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml"
  1598. ]
  1599. },
  1600. "K4os.Hash.xxHash/1.0.6": {
  1601. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  1602. "type": "package",
  1603. "path": "k4os.hash.xxhash/1.0.6",
  1604. "files": [
  1605. ".nupkg.metadata",
  1606. ".signature.p7s",
  1607. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  1608. "k4os.hash.xxhash.nuspec",
  1609. "lib/net45/K4os.Hash.xxHash.dll",
  1610. "lib/net45/K4os.Hash.xxHash.xml",
  1611. "lib/net46/K4os.Hash.xxHash.dll",
  1612. "lib/net46/K4os.Hash.xxHash.xml",
  1613. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  1614. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  1615. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  1616. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  1617. ]
  1618. },
  1619. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  1620. "sha512": "PemexcITl6b0EWnZczQG3fEHFoMxUKHRoe54rHFVOlIu3b4sXzZ10pa7KBByaK5O5UGmqCdWS6K1AjXQpF+JOg==",
  1621. "type": "package",
  1622. "path": "linqkit.microsoft.entityframeworkcore/5.0.24",
  1623. "files": [
  1624. ".nupkg.metadata",
  1625. ".signature.p7s",
  1626. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll",
  1627. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.xml",
  1628. "linqkit.microsoft.entityframeworkcore.5.0.24.nupkg.sha512",
  1629. "linqkit.microsoft.entityframeworkcore.nuspec"
  1630. ]
  1631. },
  1632. "log4net/2.0.17": {
  1633. "sha512": "qnnDf/ubJzwm2i1xH7nRMjEDoD+ctse7nZDqb+p7L1PvZc6ykpMoEesWr1/9hFqlsbII2v9e8yyQHJhoDQh7ZA==",
  1634. "type": "package",
  1635. "path": "log4net/2.0.17",
  1636. "files": [
  1637. ".nupkg.metadata",
  1638. ".signature.p7s",
  1639. "lib/net20/log4net.dll",
  1640. "lib/net20/log4net.xml",
  1641. "lib/net35/log4net.dll",
  1642. "lib/net35/log4net.xml",
  1643. "lib/net40-client/log4net.dll",
  1644. "lib/net40-client/log4net.xml",
  1645. "lib/net40/log4net.dll",
  1646. "lib/net40/log4net.xml",
  1647. "lib/net45/log4net.dll",
  1648. "lib/net45/log4net.xml",
  1649. "lib/netstandard1.3/log4net.dll",
  1650. "lib/netstandard1.3/log4net.xml",
  1651. "lib/netstandard2.0/log4net.dll",
  1652. "lib/netstandard2.0/log4net.xml",
  1653. "log4net.2.0.17.nupkg.sha512",
  1654. "log4net.nuspec",
  1655. "package-icon.png"
  1656. ]
  1657. },
  1658. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  1659. "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  1660. "type": "package",
  1661. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  1662. "files": [
  1663. ".nupkg.metadata",
  1664. ".signature.p7s",
  1665. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
  1666. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
  1667. "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
  1668. "microsoft.aspnetcore.http.abstractions.nuspec"
  1669. ]
  1670. },
  1671. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  1672. "sha512": "6sVnhFwtsjEVL09FsYpAttQ3Og6Jxg1dQFLF9XQUThi1myq64imjhj1swd92TXMLCp5wmt8szDixZXXdx64qhg==",
  1673. "type": "package",
  1674. "path": "microsoft.aspnetcore.http.features/5.0.0",
  1675. "files": [
  1676. ".nupkg.metadata",
  1677. ".signature.p7s",
  1678. "Icon.png",
  1679. "THIRD-PARTY-NOTICES.TXT",
  1680. "lib/net461/Microsoft.AspNetCore.Http.Features.dll",
  1681. "lib/net461/Microsoft.AspNetCore.Http.Features.xml",
  1682. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll",
  1683. "lib/net5.0/Microsoft.AspNetCore.Http.Features.xml",
  1684. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  1685. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  1686. "microsoft.aspnetcore.http.features.5.0.0.nupkg.sha512",
  1687. "microsoft.aspnetcore.http.features.nuspec"
  1688. ]
  1689. },
  1690. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  1691. "sha512": "hFSZxykx1tk2lC5u7T/SfGrOglTGlHZu1Oqz1JCBvR/8GPbMSLBNHUZb+MAq3OTM00pRLTWsri9g3HeEVytsmQ==",
  1692. "type": "package",
  1693. "path": "microsoft.aspnetcore.nodeservices/3.1.30",
  1694. "files": [
  1695. ".nupkg.metadata",
  1696. ".signature.p7s",
  1697. "Icon.png",
  1698. "THIRD-PARTY-NOTICES.TXT",
  1699. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll",
  1700. "microsoft.aspnetcore.nodeservices.3.1.30.nupkg.sha512",
  1701. "microsoft.aspnetcore.nodeservices.nuspec"
  1702. ]
  1703. },
  1704. "Microsoft.CSharp/4.7.0": {
  1705. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  1706. "type": "package",
  1707. "path": "microsoft.csharp/4.7.0",
  1708. "files": [
  1709. ".nupkg.metadata",
  1710. ".signature.p7s",
  1711. "LICENSE.TXT",
  1712. "THIRD-PARTY-NOTICES.TXT",
  1713. "lib/MonoAndroid10/_._",
  1714. "lib/MonoTouch10/_._",
  1715. "lib/net45/_._",
  1716. "lib/netcore50/Microsoft.CSharp.dll",
  1717. "lib/netcoreapp2.0/_._",
  1718. "lib/netstandard1.3/Microsoft.CSharp.dll",
  1719. "lib/netstandard2.0/Microsoft.CSharp.dll",
  1720. "lib/netstandard2.0/Microsoft.CSharp.xml",
  1721. "lib/portable-net45+win8+wp8+wpa81/_._",
  1722. "lib/uap10.0.16299/_._",
  1723. "lib/win8/_._",
  1724. "lib/wp80/_._",
  1725. "lib/wpa81/_._",
  1726. "lib/xamarinios10/_._",
  1727. "lib/xamarinmac20/_._",
  1728. "lib/xamarintvos10/_._",
  1729. "lib/xamarinwatchos10/_._",
  1730. "microsoft.csharp.4.7.0.nupkg.sha512",
  1731. "microsoft.csharp.nuspec",
  1732. "ref/MonoAndroid10/_._",
  1733. "ref/MonoTouch10/_._",
  1734. "ref/net45/_._",
  1735. "ref/netcore50/Microsoft.CSharp.dll",
  1736. "ref/netcore50/Microsoft.CSharp.xml",
  1737. "ref/netcore50/de/Microsoft.CSharp.xml",
  1738. "ref/netcore50/es/Microsoft.CSharp.xml",
  1739. "ref/netcore50/fr/Microsoft.CSharp.xml",
  1740. "ref/netcore50/it/Microsoft.CSharp.xml",
  1741. "ref/netcore50/ja/Microsoft.CSharp.xml",
  1742. "ref/netcore50/ko/Microsoft.CSharp.xml",
  1743. "ref/netcore50/ru/Microsoft.CSharp.xml",
  1744. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  1745. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  1746. "ref/netcoreapp2.0/_._",
  1747. "ref/netstandard1.0/Microsoft.CSharp.dll",
  1748. "ref/netstandard1.0/Microsoft.CSharp.xml",
  1749. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  1750. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  1751. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  1752. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  1753. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  1754. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  1755. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  1756. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  1757. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  1758. "ref/netstandard2.0/Microsoft.CSharp.dll",
  1759. "ref/netstandard2.0/Microsoft.CSharp.xml",
  1760. "ref/portable-net45+win8+wp8+wpa81/_._",
  1761. "ref/uap10.0.16299/_._",
  1762. "ref/win8/_._",
  1763. "ref/wp80/_._",
  1764. "ref/wpa81/_._",
  1765. "ref/xamarinios10/_._",
  1766. "ref/xamarinmac20/_._",
  1767. "ref/xamarintvos10/_._",
  1768. "ref/xamarinwatchos10/_._",
  1769. "useSharedDesignerContext.txt",
  1770. "version.txt"
  1771. ]
  1772. },
  1773. "Microsoft.EntityFrameworkCore/5.0.0": {
  1774. "sha512": "QJk6pwN5wCriRdaNXQQxifeDNYephqqDMSXAQFX1nZjHwz/hChD0kDwklX20FexN9IAwQftepMbglcjwTX3l4Q==",
  1775. "type": "package",
  1776. "path": "microsoft.entityframeworkcore/5.0.0",
  1777. "files": [
  1778. ".nupkg.metadata",
  1779. ".signature.p7s",
  1780. "Icon.png",
  1781. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll",
  1782. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.xml",
  1783. "microsoft.entityframeworkcore.5.0.0.nupkg.sha512",
  1784. "microsoft.entityframeworkcore.nuspec"
  1785. ]
  1786. },
  1787. "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": {
  1788. "sha512": "PCDiskNvB+1rs+d3ET0Itm3mPj6+CpFO7V1nPXfVL6ipS6+27vKs9mnEP4C8vTr2BhSpyvKQetp4Z0ktrqv+wg==",
  1789. "type": "package",
  1790. "path": "microsoft.entityframeworkcore.abstractions/5.0.0",
  1791. "files": [
  1792. ".nupkg.metadata",
  1793. ".signature.p7s",
  1794. "Icon.png",
  1795. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll",
  1796. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.xml",
  1797. "microsoft.entityframeworkcore.abstractions.5.0.0.nupkg.sha512",
  1798. "microsoft.entityframeworkcore.abstractions.nuspec"
  1799. ]
  1800. },
  1801. "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": {
  1802. "sha512": "l1c/1ge8ymXgLqtstTyX3PZOLRuFo1jn0FQ9H4ag3Bwz70KTMyEOXwkKBZZ1gDlCibETrooflMis8wvvXFh5YQ==",
  1803. "type": "package",
  1804. "path": "microsoft.entityframeworkcore.analyzers/5.0.0",
  1805. "files": [
  1806. ".nupkg.metadata",
  1807. ".signature.p7s",
  1808. "Icon.png",
  1809. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  1810. "lib/netstandard2.0/_._",
  1811. "microsoft.entityframeworkcore.analyzers.5.0.0.nupkg.sha512",
  1812. "microsoft.entityframeworkcore.analyzers.nuspec"
  1813. ]
  1814. },
  1815. "Microsoft.EntityFrameworkCore.Relational/5.0.0": {
  1816. "sha512": "UMhoo0t3eii73AUwsvbGpYMGXS0ga/uA/cukgJza+IJ4EtcuNfdhGsA3emzf9nYpQ7urJzWzU6VOfG59h935Ag==",
  1817. "type": "package",
  1818. "path": "microsoft.entityframeworkcore.relational/5.0.0",
  1819. "files": [
  1820. ".nupkg.metadata",
  1821. ".signature.p7s",
  1822. "Icon.png",
  1823. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll",
  1824. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.xml",
  1825. "microsoft.entityframeworkcore.relational.5.0.0.nupkg.sha512",
  1826. "microsoft.entityframeworkcore.relational.nuspec"
  1827. ]
  1828. },
  1829. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  1830. "sha512": "bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==",
  1831. "type": "package",
  1832. "path": "microsoft.extensions.caching.abstractions/5.0.0",
  1833. "files": [
  1834. ".nupkg.metadata",
  1835. ".signature.p7s",
  1836. "Icon.png",
  1837. "LICENSE.TXT",
  1838. "THIRD-PARTY-NOTICES.TXT",
  1839. "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll",
  1840. "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml",
  1841. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  1842. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  1843. "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512",
  1844. "microsoft.extensions.caching.abstractions.nuspec",
  1845. "useSharedDesignerContext.txt",
  1846. "version.txt"
  1847. ]
  1848. },
  1849. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  1850. "sha512": "/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==",
  1851. "type": "package",
  1852. "path": "microsoft.extensions.caching.memory/5.0.0",
  1853. "files": [
  1854. ".nupkg.metadata",
  1855. ".signature.p7s",
  1856. "Icon.png",
  1857. "LICENSE.TXT",
  1858. "THIRD-PARTY-NOTICES.TXT",
  1859. "lib/net461/Microsoft.Extensions.Caching.Memory.dll",
  1860. "lib/net461/Microsoft.Extensions.Caching.Memory.xml",
  1861. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  1862. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  1863. "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512",
  1864. "microsoft.extensions.caching.memory.nuspec",
  1865. "useSharedDesignerContext.txt",
  1866. "version.txt"
  1867. ]
  1868. },
  1869. "Microsoft.Extensions.Configuration/5.0.0": {
  1870. "sha512": "LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
  1871. "type": "package",
  1872. "path": "microsoft.extensions.configuration/5.0.0",
  1873. "files": [
  1874. ".nupkg.metadata",
  1875. ".signature.p7s",
  1876. "Icon.png",
  1877. "LICENSE.TXT",
  1878. "THIRD-PARTY-NOTICES.TXT",
  1879. "lib/net461/Microsoft.Extensions.Configuration.dll",
  1880. "lib/net461/Microsoft.Extensions.Configuration.xml",
  1881. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  1882. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  1883. "microsoft.extensions.configuration.5.0.0.nupkg.sha512",
  1884. "microsoft.extensions.configuration.nuspec",
  1885. "useSharedDesignerContext.txt",
  1886. "version.txt"
  1887. ]
  1888. },
  1889. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  1890. "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
  1891. "type": "package",
  1892. "path": "microsoft.extensions.configuration.abstractions/5.0.0",
  1893. "files": [
  1894. ".nupkg.metadata",
  1895. ".signature.p7s",
  1896. "Icon.png",
  1897. "LICENSE.TXT",
  1898. "THIRD-PARTY-NOTICES.TXT",
  1899. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
  1900. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
  1901. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  1902. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  1903. "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
  1904. "microsoft.extensions.configuration.abstractions.nuspec",
  1905. "useSharedDesignerContext.txt",
  1906. "version.txt"
  1907. ]
  1908. },
  1909. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  1910. "sha512": "Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
  1911. "type": "package",
  1912. "path": "microsoft.extensions.configuration.binder/5.0.0",
  1913. "files": [
  1914. ".nupkg.metadata",
  1915. ".signature.p7s",
  1916. "Icon.png",
  1917. "LICENSE.TXT",
  1918. "THIRD-PARTY-NOTICES.TXT",
  1919. "lib/net461/Microsoft.Extensions.Configuration.Binder.dll",
  1920. "lib/net461/Microsoft.Extensions.Configuration.Binder.xml",
  1921. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  1922. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  1923. "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512",
  1924. "microsoft.extensions.configuration.binder.nuspec",
  1925. "useSharedDesignerContext.txt",
  1926. "version.txt"
  1927. ]
  1928. },
  1929. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  1930. "sha512": "rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
  1931. "type": "package",
  1932. "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
  1933. "files": [
  1934. ".nupkg.metadata",
  1935. ".signature.p7s",
  1936. "Icon.png",
  1937. "LICENSE.TXT",
  1938. "THIRD-PARTY-NOTICES.TXT",
  1939. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll",
  1940. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml",
  1941. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  1942. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  1943. "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512",
  1944. "microsoft.extensions.configuration.fileextensions.nuspec",
  1945. "useSharedDesignerContext.txt",
  1946. "version.txt"
  1947. ]
  1948. },
  1949. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  1950. "sha512": "Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
  1951. "type": "package",
  1952. "path": "microsoft.extensions.configuration.json/5.0.0",
  1953. "files": [
  1954. ".nupkg.metadata",
  1955. ".signature.p7s",
  1956. "Icon.png",
  1957. "LICENSE.TXT",
  1958. "THIRD-PARTY-NOTICES.TXT",
  1959. "lib/net461/Microsoft.Extensions.Configuration.Json.dll",
  1960. "lib/net461/Microsoft.Extensions.Configuration.Json.xml",
  1961. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  1962. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  1963. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
  1964. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
  1965. "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512",
  1966. "microsoft.extensions.configuration.json.nuspec",
  1967. "useSharedDesignerContext.txt",
  1968. "version.txt"
  1969. ]
  1970. },
  1971. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  1972. "sha512": "Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==",
  1973. "type": "package",
  1974. "path": "microsoft.extensions.dependencyinjection/5.0.0",
  1975. "files": [
  1976. ".nupkg.metadata",
  1977. ".signature.p7s",
  1978. "Icon.png",
  1979. "LICENSE.TXT",
  1980. "THIRD-PARTY-NOTICES.TXT",
  1981. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  1982. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  1983. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll",
  1984. "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml",
  1985. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  1986. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  1987. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  1988. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  1989. "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512",
  1990. "microsoft.extensions.dependencyinjection.nuspec",
  1991. "useSharedDesignerContext.txt",
  1992. "version.txt"
  1993. ]
  1994. },
  1995. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  1996. "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
  1997. "type": "package",
  1998. "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
  1999. "files": [
  2000. ".nupkg.metadata",
  2001. ".signature.p7s",
  2002. "Icon.png",
  2003. "LICENSE.TXT",
  2004. "THIRD-PARTY-NOTICES.TXT",
  2005. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2006. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2007. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2008. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2009. "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
  2010. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  2011. "useSharedDesignerContext.txt",
  2012. "version.txt"
  2013. ]
  2014. },
  2015. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  2016. "sha512": "iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
  2017. "type": "package",
  2018. "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
  2019. "files": [
  2020. ".nupkg.metadata",
  2021. ".signature.p7s",
  2022. "Icon.png",
  2023. "LICENSE.TXT",
  2024. "THIRD-PARTY-NOTICES.TXT",
  2025. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll",
  2026. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml",
  2027. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  2028. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  2029. "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512",
  2030. "microsoft.extensions.fileproviders.abstractions.nuspec",
  2031. "useSharedDesignerContext.txt",
  2032. "version.txt"
  2033. ]
  2034. },
  2035. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  2036. "sha512": "1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
  2037. "type": "package",
  2038. "path": "microsoft.extensions.fileproviders.physical/5.0.0",
  2039. "files": [
  2040. ".nupkg.metadata",
  2041. ".signature.p7s",
  2042. "Icon.png",
  2043. "LICENSE.TXT",
  2044. "THIRD-PARTY-NOTICES.TXT",
  2045. "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll",
  2046. "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml",
  2047. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  2048. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  2049. "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512",
  2050. "microsoft.extensions.fileproviders.physical.nuspec",
  2051. "useSharedDesignerContext.txt",
  2052. "version.txt"
  2053. ]
  2054. },
  2055. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  2056. "sha512": "ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
  2057. "type": "package",
  2058. "path": "microsoft.extensions.filesystemglobbing/5.0.0",
  2059. "files": [
  2060. ".nupkg.metadata",
  2061. ".signature.p7s",
  2062. "Icon.png",
  2063. "LICENSE.TXT",
  2064. "THIRD-PARTY-NOTICES.TXT",
  2065. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll",
  2066. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml",
  2067. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  2068. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  2069. "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512",
  2070. "microsoft.extensions.filesystemglobbing.nuspec",
  2071. "useSharedDesignerContext.txt",
  2072. "version.txt"
  2073. ]
  2074. },
  2075. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  2076. "sha512": "LiOP1ceFaPBxaE28SOjtORzOVCJk33TT5VQ/Cg5EoatZh1dxpPAgAV/0ruzWKQE7WAHU3F1H9Z6rFgsQwIb9uQ==",
  2077. "type": "package",
  2078. "path": "microsoft.extensions.hosting.abstractions/3.1.0",
  2079. "files": [
  2080. ".nupkg.metadata",
  2081. ".signature.p7s",
  2082. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll",
  2083. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.xml",
  2084. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  2085. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  2086. "microsoft.extensions.hosting.abstractions.3.1.0.nupkg.sha512",
  2087. "microsoft.extensions.hosting.abstractions.nuspec",
  2088. "packageIcon.png"
  2089. ]
  2090. },
  2091. "Microsoft.Extensions.Http/5.0.0": {
  2092. "sha512": "kT1ijDKZuSUhBtYoC1sXrmVKP7mA08h9Xrsr4VrS/QOtiKCEtUTTd7dd3XI9dwAb46tZSak13q/zdIcr4jqbyg==",
  2093. "type": "package",
  2094. "path": "microsoft.extensions.http/5.0.0",
  2095. "files": [
  2096. ".nupkg.metadata",
  2097. ".signature.p7s",
  2098. "Icon.png",
  2099. "LICENSE.TXT",
  2100. "THIRD-PARTY-NOTICES.TXT",
  2101. "lib/net461/Microsoft.Extensions.Http.dll",
  2102. "lib/net461/Microsoft.Extensions.Http.xml",
  2103. "lib/netstandard2.0/Microsoft.Extensions.Http.dll",
  2104. "lib/netstandard2.0/Microsoft.Extensions.Http.xml",
  2105. "microsoft.extensions.http.5.0.0.nupkg.sha512",
  2106. "microsoft.extensions.http.nuspec",
  2107. "useSharedDesignerContext.txt",
  2108. "version.txt"
  2109. ]
  2110. },
  2111. "Microsoft.Extensions.Logging/5.0.0": {
  2112. "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
  2113. "type": "package",
  2114. "path": "microsoft.extensions.logging/5.0.0",
  2115. "files": [
  2116. ".nupkg.metadata",
  2117. ".signature.p7s",
  2118. "Icon.png",
  2119. "LICENSE.TXT",
  2120. "THIRD-PARTY-NOTICES.TXT",
  2121. "lib/net461/Microsoft.Extensions.Logging.dll",
  2122. "lib/net461/Microsoft.Extensions.Logging.xml",
  2123. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  2124. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  2125. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  2126. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  2127. "microsoft.extensions.logging.5.0.0.nupkg.sha512",
  2128. "microsoft.extensions.logging.nuspec",
  2129. "useSharedDesignerContext.txt",
  2130. "version.txt"
  2131. ]
  2132. },
  2133. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  2134. "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
  2135. "type": "package",
  2136. "path": "microsoft.extensions.logging.abstractions/5.0.0",
  2137. "files": [
  2138. ".nupkg.metadata",
  2139. ".signature.p7s",
  2140. "Icon.png",
  2141. "LICENSE.TXT",
  2142. "THIRD-PARTY-NOTICES.TXT",
  2143. "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
  2144. "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
  2145. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  2146. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  2147. "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
  2148. "microsoft.extensions.logging.abstractions.nuspec",
  2149. "useSharedDesignerContext.txt",
  2150. "version.txt"
  2151. ]
  2152. },
  2153. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  2154. "sha512": "Ms9XEgRwnT4WEBGOYQj2+QrfO2sSSiDXKyI+zk8lhP2gfxg6zPjkCWVakNg5JDFdtnxQVKtRtKvL4UaR946WXw==",
  2155. "type": "package",
  2156. "path": "microsoft.extensions.logging.configuration/3.1.30",
  2157. "files": [
  2158. ".nupkg.metadata",
  2159. ".signature.p7s",
  2160. "Icon.png",
  2161. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll",
  2162. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.xml",
  2163. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll",
  2164. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml",
  2165. "microsoft.extensions.logging.configuration.3.1.30.nupkg.sha512",
  2166. "microsoft.extensions.logging.configuration.nuspec"
  2167. ]
  2168. },
  2169. "Microsoft.Extensions.Logging.Console/3.1.30": {
  2170. "sha512": "eZzNLp84etekzfKngW6rdZkt2qeTI0EhQ1kS8t2bfbYhJRCUwOPooYn7/lP+KkIoI7SaimKD1Q1RTm0FO8V/iw==",
  2171. "type": "package",
  2172. "path": "microsoft.extensions.logging.console/3.1.30",
  2173. "files": [
  2174. ".nupkg.metadata",
  2175. ".signature.p7s",
  2176. "Icon.png",
  2177. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll",
  2178. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.xml",
  2179. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll",
  2180. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml",
  2181. "microsoft.extensions.logging.console.3.1.30.nupkg.sha512",
  2182. "microsoft.extensions.logging.console.nuspec"
  2183. ]
  2184. },
  2185. "Microsoft.Extensions.Options/5.0.0": {
  2186. "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
  2187. "type": "package",
  2188. "path": "microsoft.extensions.options/5.0.0",
  2189. "files": [
  2190. ".nupkg.metadata",
  2191. ".signature.p7s",
  2192. "Icon.png",
  2193. "LICENSE.TXT",
  2194. "THIRD-PARTY-NOTICES.TXT",
  2195. "lib/net461/Microsoft.Extensions.Options.dll",
  2196. "lib/net461/Microsoft.Extensions.Options.xml",
  2197. "lib/net5.0/Microsoft.Extensions.Options.dll",
  2198. "lib/net5.0/Microsoft.Extensions.Options.xml",
  2199. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  2200. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  2201. "microsoft.extensions.options.5.0.0.nupkg.sha512",
  2202. "microsoft.extensions.options.nuspec",
  2203. "useSharedDesignerContext.txt",
  2204. "version.txt"
  2205. ]
  2206. },
  2207. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  2208. "sha512": "mncFsagGHBUlkdZYiZ5A35Ni4564ryXI8//Zrthd80WcjBm7A7By6707CQqBEWRz2nnAwO++UgOdXPLaFO9yaw==",
  2209. "type": "package",
  2210. "path": "microsoft.extensions.options.configurationextensions/3.1.30",
  2211. "files": [
  2212. ".nupkg.metadata",
  2213. ".signature.p7s",
  2214. "Icon.png",
  2215. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  2216. "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  2217. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  2218. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  2219. "microsoft.extensions.options.configurationextensions.3.1.30.nupkg.sha512",
  2220. "microsoft.extensions.options.configurationextensions.nuspec"
  2221. ]
  2222. },
  2223. "Microsoft.Extensions.Primitives/5.0.0": {
  2224. "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
  2225. "type": "package",
  2226. "path": "microsoft.extensions.primitives/5.0.0",
  2227. "files": [
  2228. ".nupkg.metadata",
  2229. ".signature.p7s",
  2230. "Icon.png",
  2231. "LICENSE.TXT",
  2232. "THIRD-PARTY-NOTICES.TXT",
  2233. "lib/net461/Microsoft.Extensions.Primitives.dll",
  2234. "lib/net461/Microsoft.Extensions.Primitives.xml",
  2235. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll",
  2236. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml",
  2237. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  2238. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  2239. "microsoft.extensions.primitives.5.0.0.nupkg.sha512",
  2240. "microsoft.extensions.primitives.nuspec",
  2241. "useSharedDesignerContext.txt",
  2242. "version.txt"
  2243. ]
  2244. },
  2245. "Microsoft.NETCore.Platforms/5.0.0": {
  2246. "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  2247. "type": "package",
  2248. "path": "microsoft.netcore.platforms/5.0.0",
  2249. "files": [
  2250. ".nupkg.metadata",
  2251. ".signature.p7s",
  2252. "Icon.png",
  2253. "LICENSE.TXT",
  2254. "THIRD-PARTY-NOTICES.TXT",
  2255. "lib/netstandard1.0/_._",
  2256. "microsoft.netcore.platforms.5.0.0.nupkg.sha512",
  2257. "microsoft.netcore.platforms.nuspec",
  2258. "runtime.json",
  2259. "useSharedDesignerContext.txt",
  2260. "version.txt"
  2261. ]
  2262. },
  2263. "Microsoft.Win32.SystemEvents/5.0.0": {
  2264. "sha512": "Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==",
  2265. "type": "package",
  2266. "path": "microsoft.win32.systemevents/5.0.0",
  2267. "files": [
  2268. ".nupkg.metadata",
  2269. ".signature.p7s",
  2270. "Icon.png",
  2271. "LICENSE.TXT",
  2272. "THIRD-PARTY-NOTICES.TXT",
  2273. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  2274. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  2275. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  2276. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  2277. "microsoft.win32.systemevents.5.0.0.nupkg.sha512",
  2278. "microsoft.win32.systemevents.nuspec",
  2279. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  2280. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  2281. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  2282. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  2283. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  2284. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  2285. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  2286. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  2287. "useSharedDesignerContext.txt",
  2288. "version.txt"
  2289. ]
  2290. },
  2291. "MySql.Data/8.0.23": {
  2292. "sha512": "5UPKd+OX5aSR8fTTfWzAifYg8YKOWMVX39bkdGbI3/SB3khdE13DZVMrk6CzjXvo2BjXic9emf2lwgvJTVWnyg==",
  2293. "type": "package",
  2294. "path": "mysql.data/8.0.23",
  2295. "files": [
  2296. ".nupkg.metadata",
  2297. ".signature.p7s",
  2298. "lib/net452/MySql.Data.dll",
  2299. "lib/net452/MySql.Data.xml",
  2300. "lib/net452/Ubiety.Dns.Core.dll",
  2301. "lib/net452/Zstandard.Net.dll",
  2302. "lib/net48/MySql.Data.dll",
  2303. "lib/net48/MySql.Data.xml",
  2304. "lib/net48/Ubiety.Dns.Core.dll",
  2305. "lib/net48/Zstandard.Net.dll",
  2306. "lib/net5.0/MySql.Data.dll",
  2307. "lib/net5.0/MySql.Data.xml",
  2308. "lib/net5.0/Ubiety.Dns.Core.dll",
  2309. "lib/net5.0/Zstandard.Net.dll",
  2310. "lib/netstandard2.0/MySql.Data.dll",
  2311. "lib/netstandard2.0/MySql.Data.xml",
  2312. "lib/netstandard2.0/Ubiety.Dns.Core.dll",
  2313. "lib/netstandard2.0/Zstandard.Net.dll",
  2314. "lib/netstandard2.1/MySql.Data.dll",
  2315. "lib/netstandard2.1/MySql.Data.xml",
  2316. "lib/netstandard2.1/Ubiety.Dns.Core.dll",
  2317. "lib/netstandard2.1/Zstandard.Net.dll",
  2318. "mysql.data.8.0.23.nupkg.sha512",
  2319. "mysql.data.nuspec"
  2320. ]
  2321. },
  2322. "MySqlConnector/1.1.0": {
  2323. "sha512": "RQPR2vkQjSiyGH2mV17K4+gDcgI8hidxgD2qli3OcRupvqpQjoL6S35M3ZjIM6CXC0TgImvJo3HA/fLSOG+oBA==",
  2324. "type": "package",
  2325. "path": "mysqlconnector/1.1.0",
  2326. "files": [
  2327. ".nupkg.metadata",
  2328. ".signature.p7s",
  2329. "lib/net45/MySqlConnector.dll",
  2330. "lib/net45/MySqlConnector.xml",
  2331. "lib/net461/MySqlConnector.dll",
  2332. "lib/net461/MySqlConnector.xml",
  2333. "lib/net471/MySqlConnector.dll",
  2334. "lib/net471/MySqlConnector.xml",
  2335. "lib/net5.0/MySqlConnector.dll",
  2336. "lib/net5.0/MySqlConnector.xml",
  2337. "lib/netcoreapp2.1/MySqlConnector.dll",
  2338. "lib/netcoreapp2.1/MySqlConnector.xml",
  2339. "lib/netcoreapp3.1/MySqlConnector.dll",
  2340. "lib/netcoreapp3.1/MySqlConnector.xml",
  2341. "lib/netstandard1.3/MySqlConnector.dll",
  2342. "lib/netstandard1.3/MySqlConnector.xml",
  2343. "lib/netstandard2.0/MySqlConnector.dll",
  2344. "lib/netstandard2.0/MySqlConnector.xml",
  2345. "lib/netstandard2.1/MySqlConnector.dll",
  2346. "lib/netstandard2.1/MySqlConnector.xml",
  2347. "logo.png",
  2348. "mysqlconnector.1.1.0.nupkg.sha512",
  2349. "mysqlconnector.nuspec"
  2350. ]
  2351. },
  2352. "Newtonsoft.Json/13.0.1": {
  2353. "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
  2354. "type": "package",
  2355. "path": "newtonsoft.json/13.0.1",
  2356. "files": [
  2357. ".nupkg.metadata",
  2358. ".signature.p7s",
  2359. "LICENSE.md",
  2360. "lib/net20/Newtonsoft.Json.dll",
  2361. "lib/net20/Newtonsoft.Json.xml",
  2362. "lib/net35/Newtonsoft.Json.dll",
  2363. "lib/net35/Newtonsoft.Json.xml",
  2364. "lib/net40/Newtonsoft.Json.dll",
  2365. "lib/net40/Newtonsoft.Json.xml",
  2366. "lib/net45/Newtonsoft.Json.dll",
  2367. "lib/net45/Newtonsoft.Json.xml",
  2368. "lib/netstandard1.0/Newtonsoft.Json.dll",
  2369. "lib/netstandard1.0/Newtonsoft.Json.xml",
  2370. "lib/netstandard1.3/Newtonsoft.Json.dll",
  2371. "lib/netstandard1.3/Newtonsoft.Json.xml",
  2372. "lib/netstandard2.0/Newtonsoft.Json.dll",
  2373. "lib/netstandard2.0/Newtonsoft.Json.xml",
  2374. "newtonsoft.json.13.0.1.nupkg.sha512",
  2375. "newtonsoft.json.nuspec",
  2376. "packageIcon.png"
  2377. ]
  2378. },
  2379. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  2380. "sha512": "g2+otNSXHxzmWUJI7+KfoL9C35V8BAKC1fqfriHNNghMQiwrUkK+xaN+3w5r5+YUKA1qfiJH6+Wwc+Kkcsr3Og==",
  2381. "type": "package",
  2382. "path": "pomelo.entityframeworkcore.mysql/5.0.0-alpha.2",
  2383. "files": [
  2384. ".nupkg.metadata",
  2385. ".signature.p7s",
  2386. "icon.png",
  2387. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll",
  2388. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.xml",
  2389. "pomelo.entityframeworkcore.mysql.5.0.0-alpha.2.nupkg.sha512",
  2390. "pomelo.entityframeworkcore.mysql.nuspec"
  2391. ]
  2392. },
  2393. "QRCoder/1.4.3": {
  2394. "sha512": "fWuFqjm8GTlEb2GqBl3Hi8HZZeZQwBSHxvRPtPjyNbT82H0ff0JwavKRBmMaXCno1Av6McPC8aJzri0Mj2w9Jw==",
  2395. "type": "package",
  2396. "path": "qrcoder/1.4.3",
  2397. "files": [
  2398. ".nupkg.metadata",
  2399. ".signature.p7s",
  2400. "lib/net35/QRCoder.dll",
  2401. "lib/net40/QRCoder.dll",
  2402. "lib/net5.0-windows7.0/QRCoder.dll",
  2403. "lib/net5.0/QRCoder.dll",
  2404. "lib/net6.0-windows7.0/QRCoder.dll",
  2405. "lib/net6.0/QRCoder.dll",
  2406. "lib/netstandard1.3/QRCoder.dll",
  2407. "lib/netstandard2.0/QRCoder.dll",
  2408. "nuget-icon.png",
  2409. "nuget-readme.md",
  2410. "qrcoder.1.4.3.nupkg.sha512",
  2411. "qrcoder.nuspec"
  2412. ]
  2413. },
  2414. "Quartz/3.3.3": {
  2415. "sha512": "waM2gyFQ/JOuvyHmlEnN2jpAiqJAEMEaPq6K6rT/mmLKlW0qvxCIYARDRfWaenJ6qQBHH2/J6cx+bCPVZb8z1Q==",
  2416. "type": "package",
  2417. "path": "quartz/3.3.3",
  2418. "files": [
  2419. ".nupkg.metadata",
  2420. ".signature.p7s",
  2421. "lib/net461/Quartz.dll",
  2422. "lib/net461/Quartz.xml",
  2423. "lib/net472/Quartz.dll",
  2424. "lib/net472/Quartz.xml",
  2425. "lib/netstandard2.0/Quartz.dll",
  2426. "lib/netstandard2.0/Quartz.xml",
  2427. "quartz-logo-small.png",
  2428. "quartz.3.3.3.nupkg.sha512",
  2429. "quartz.nuspec"
  2430. ]
  2431. },
  2432. "RabbitMQ.Client/6.8.1": {
  2433. "sha512": "jNsmGgmCNw2S/NzskeN2ijtGywtH4Sk/G6jWUTD5sY9SrC27Xz6BsLIiB8hdsfjeyWCa4j4GvCIGkpE8wrjU1Q==",
  2434. "type": "package",
  2435. "path": "rabbitmq.client/6.8.1",
  2436. "files": [
  2437. ".nupkg.metadata",
  2438. ".signature.p7s",
  2439. "README.md",
  2440. "icon.png",
  2441. "lib/net462/RabbitMQ.Client.dll",
  2442. "lib/net462/RabbitMQ.Client.xml",
  2443. "lib/netstandard2.0/RabbitMQ.Client.dll",
  2444. "lib/netstandard2.0/RabbitMQ.Client.xml",
  2445. "rabbitmq.client.6.8.1.nupkg.sha512",
  2446. "rabbitmq.client.nuspec"
  2447. ]
  2448. },
  2449. "SixLabors.ImageSharp/2.1.6": {
  2450. "sha512": "zgCyj3F3U19A/YpmhZAplH5dyh7BTCjLutzbVbHGd7zzPfSMA0Tm+DFqQEb/V52Y8EW1FH5wZ91PaEDSrUaNOw==",
  2451. "type": "package",
  2452. "path": "sixlabors.imagesharp/2.1.6",
  2453. "files": [
  2454. ".nupkg.metadata",
  2455. ".signature.p7s",
  2456. "lib/net472/SixLabors.ImageSharp.dll",
  2457. "lib/net472/SixLabors.ImageSharp.xml",
  2458. "lib/netcoreapp2.1/SixLabors.ImageSharp.dll",
  2459. "lib/netcoreapp2.1/SixLabors.ImageSharp.xml",
  2460. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll",
  2461. "lib/netcoreapp3.1/SixLabors.ImageSharp.xml",
  2462. "lib/netstandard2.0/SixLabors.ImageSharp.dll",
  2463. "lib/netstandard2.0/SixLabors.ImageSharp.xml",
  2464. "lib/netstandard2.1/SixLabors.ImageSharp.dll",
  2465. "lib/netstandard2.1/SixLabors.ImageSharp.xml",
  2466. "sixlabors.imagesharp.128.png",
  2467. "sixlabors.imagesharp.2.1.6.nupkg.sha512",
  2468. "sixlabors.imagesharp.nuspec"
  2469. ]
  2470. },
  2471. "SSH.NET/2020.0.0-beta1": {
  2472. "sha512": "GdgJ3eFSEXkGIror8SfxbXKJM/g0Eofm4bM6LIYANSM1foOJc640adnr1dqs2BTf/MKwL+9NqOUm3RvQm1CxtA==",
  2473. "type": "package",
  2474. "path": "ssh.net/2020.0.0-beta1",
  2475. "files": [
  2476. ".nupkg.metadata",
  2477. ".signature.p7s",
  2478. "lib/net35/Renci.SshNet.dll",
  2479. "lib/net35/Renci.SshNet.xml",
  2480. "lib/net40/Renci.SshNet.dll",
  2481. "lib/net40/Renci.SshNet.xml",
  2482. "lib/netstandard1.3/Renci.SshNet.dll",
  2483. "lib/netstandard1.3/Renci.SshNet.xml",
  2484. "lib/netstandard2.0/Renci.SshNet.dll",
  2485. "lib/netstandard2.0/Renci.SshNet.xml",
  2486. "lib/sl4/Renci.SshNet.dll",
  2487. "lib/sl4/Renci.SshNet.xml",
  2488. "lib/sl5/Renci.SshNet.dll",
  2489. "lib/sl5/Renci.SshNet.xml",
  2490. "lib/uap10/Renci.SshNet.dll",
  2491. "lib/uap10/Renci.SshNet.xml",
  2492. "lib/wp71/Renci.SshNet.dll",
  2493. "lib/wp71/Renci.SshNet.xml",
  2494. "lib/wp8/Renci.SshNet.dll",
  2495. "lib/wp8/Renci.SshNet.xml",
  2496. "ssh.net.2020.0.0-beta1.nupkg.sha512",
  2497. "ssh.net.nuspec"
  2498. ]
  2499. },
  2500. "SshNet.Security.Cryptography/1.3.0": {
  2501. "sha512": "5pBIXRjcSO/amY8WztpmNOhaaCNHY/B6CcYDI7FSTgqSyo/ZUojlLiKcsl+YGbxQuLX439qIkMfP0PHqxqJi/Q==",
  2502. "type": "package",
  2503. "path": "sshnet.security.cryptography/1.3.0",
  2504. "files": [
  2505. ".nupkg.metadata",
  2506. ".signature.p7s",
  2507. "lib/net20/SshNet.Security.Cryptography.dll",
  2508. "lib/net20/SshNet.Security.Cryptography.xml",
  2509. "lib/net40/SshNet.Security.Cryptography.dll",
  2510. "lib/net40/SshNet.Security.Cryptography.xml",
  2511. "lib/net45/SshNet.Security.Cryptography.dll",
  2512. "lib/net45/SshNet.Security.Cryptography.xml",
  2513. "lib/netstandard1.0/SshNet.Security.Cryptography.dll",
  2514. "lib/netstandard1.0/SshNet.Security.Cryptography.xml",
  2515. "lib/netstandard1.3/SshNet.Security.Cryptography.dll",
  2516. "lib/netstandard1.3/SshNet.Security.Cryptography.xml",
  2517. "lib/netstandard2.0/SshNet.Security.Cryptography.dll",
  2518. "lib/netstandard2.0/SshNet.Security.Cryptography.xml",
  2519. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.dll",
  2520. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.xml",
  2521. "lib/sl4/SshNet.Security.Cryptography.dll",
  2522. "lib/sl4/SshNet.Security.Cryptography.xml",
  2523. "lib/sl5/SshNet.Security.Cryptography.dll",
  2524. "lib/sl5/SshNet.Security.Cryptography.xml",
  2525. "lib/uap10.0/SshNet.Security.Cryptography.dll",
  2526. "lib/uap10.0/SshNet.Security.Cryptography.xml",
  2527. "lib/wp71/SshNet.Security.Cryptography.dll",
  2528. "lib/wp71/SshNet.Security.Cryptography.xml",
  2529. "lib/wp8/SshNet.Security.Cryptography.dll",
  2530. "lib/wp8/SshNet.Security.Cryptography.xml",
  2531. "sshnet.security.cryptography.1.3.0.nupkg.sha512",
  2532. "sshnet.security.cryptography.nuspec"
  2533. ]
  2534. },
  2535. "System.Buffers/4.5.1": {
  2536. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  2537. "type": "package",
  2538. "path": "system.buffers/4.5.1",
  2539. "files": [
  2540. ".nupkg.metadata",
  2541. ".signature.p7s",
  2542. "LICENSE.TXT",
  2543. "THIRD-PARTY-NOTICES.TXT",
  2544. "lib/net461/System.Buffers.dll",
  2545. "lib/net461/System.Buffers.xml",
  2546. "lib/netcoreapp2.0/_._",
  2547. "lib/netstandard1.1/System.Buffers.dll",
  2548. "lib/netstandard1.1/System.Buffers.xml",
  2549. "lib/netstandard2.0/System.Buffers.dll",
  2550. "lib/netstandard2.0/System.Buffers.xml",
  2551. "lib/uap10.0.16299/_._",
  2552. "ref/net45/System.Buffers.dll",
  2553. "ref/net45/System.Buffers.xml",
  2554. "ref/netcoreapp2.0/_._",
  2555. "ref/netstandard1.1/System.Buffers.dll",
  2556. "ref/netstandard1.1/System.Buffers.xml",
  2557. "ref/netstandard2.0/System.Buffers.dll",
  2558. "ref/netstandard2.0/System.Buffers.xml",
  2559. "ref/uap10.0.16299/_._",
  2560. "system.buffers.4.5.1.nupkg.sha512",
  2561. "system.buffers.nuspec",
  2562. "useSharedDesignerContext.txt",
  2563. "version.txt"
  2564. ]
  2565. },
  2566. "System.Collections.Immutable/5.0.0": {
  2567. "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
  2568. "type": "package",
  2569. "path": "system.collections.immutable/5.0.0",
  2570. "files": [
  2571. ".nupkg.metadata",
  2572. ".signature.p7s",
  2573. "Icon.png",
  2574. "LICENSE.TXT",
  2575. "THIRD-PARTY-NOTICES.TXT",
  2576. "lib/net461/System.Collections.Immutable.dll",
  2577. "lib/net461/System.Collections.Immutable.xml",
  2578. "lib/netstandard1.0/System.Collections.Immutable.dll",
  2579. "lib/netstandard1.0/System.Collections.Immutable.xml",
  2580. "lib/netstandard1.3/System.Collections.Immutable.dll",
  2581. "lib/netstandard1.3/System.Collections.Immutable.xml",
  2582. "lib/netstandard2.0/System.Collections.Immutable.dll",
  2583. "lib/netstandard2.0/System.Collections.Immutable.xml",
  2584. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  2585. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  2586. "system.collections.immutable.5.0.0.nupkg.sha512",
  2587. "system.collections.immutable.nuspec",
  2588. "useSharedDesignerContext.txt",
  2589. "version.txt"
  2590. ]
  2591. },
  2592. "System.ComponentModel.Annotations/5.0.0": {
  2593. "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  2594. "type": "package",
  2595. "path": "system.componentmodel.annotations/5.0.0",
  2596. "files": [
  2597. ".nupkg.metadata",
  2598. ".signature.p7s",
  2599. "Icon.png",
  2600. "LICENSE.TXT",
  2601. "THIRD-PARTY-NOTICES.TXT",
  2602. "lib/MonoAndroid10/_._",
  2603. "lib/MonoTouch10/_._",
  2604. "lib/net45/_._",
  2605. "lib/net461/System.ComponentModel.Annotations.dll",
  2606. "lib/netcore50/System.ComponentModel.Annotations.dll",
  2607. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  2608. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  2609. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  2610. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  2611. "lib/portable-net45+win8/_._",
  2612. "lib/win8/_._",
  2613. "lib/xamarinios10/_._",
  2614. "lib/xamarinmac20/_._",
  2615. "lib/xamarintvos10/_._",
  2616. "lib/xamarinwatchos10/_._",
  2617. "ref/MonoAndroid10/_._",
  2618. "ref/MonoTouch10/_._",
  2619. "ref/net45/_._",
  2620. "ref/net461/System.ComponentModel.Annotations.dll",
  2621. "ref/net461/System.ComponentModel.Annotations.xml",
  2622. "ref/netcore50/System.ComponentModel.Annotations.dll",
  2623. "ref/netcore50/System.ComponentModel.Annotations.xml",
  2624. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  2625. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  2626. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  2627. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  2628. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  2629. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  2630. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  2631. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  2632. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  2633. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  2634. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  2635. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  2636. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  2637. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  2638. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  2639. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  2640. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  2641. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  2642. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  2643. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  2644. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  2645. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  2646. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  2647. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  2648. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  2649. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  2650. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  2651. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  2652. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  2653. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  2654. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  2655. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  2656. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  2657. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  2658. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  2659. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  2660. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  2661. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  2662. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  2663. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  2664. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  2665. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  2666. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  2667. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  2668. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  2669. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  2670. "ref/portable-net45+win8/_._",
  2671. "ref/win8/_._",
  2672. "ref/xamarinios10/_._",
  2673. "ref/xamarinmac20/_._",
  2674. "ref/xamarintvos10/_._",
  2675. "ref/xamarinwatchos10/_._",
  2676. "system.componentmodel.annotations.5.0.0.nupkg.sha512",
  2677. "system.componentmodel.annotations.nuspec",
  2678. "useSharedDesignerContext.txt",
  2679. "version.txt"
  2680. ]
  2681. },
  2682. "System.Configuration.ConfigurationManager/4.7.0": {
  2683. "sha512": "/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==",
  2684. "type": "package",
  2685. "path": "system.configuration.configurationmanager/4.7.0",
  2686. "files": [
  2687. ".nupkg.metadata",
  2688. ".signature.p7s",
  2689. "LICENSE.TXT",
  2690. "THIRD-PARTY-NOTICES.TXT",
  2691. "lib/net461/System.Configuration.ConfigurationManager.dll",
  2692. "lib/net461/System.Configuration.ConfigurationManager.xml",
  2693. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  2694. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  2695. "ref/net461/System.Configuration.ConfigurationManager.dll",
  2696. "ref/net461/System.Configuration.ConfigurationManager.xml",
  2697. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  2698. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  2699. "system.configuration.configurationmanager.4.7.0.nupkg.sha512",
  2700. "system.configuration.configurationmanager.nuspec",
  2701. "useSharedDesignerContext.txt",
  2702. "version.txt"
  2703. ]
  2704. },
  2705. "System.Diagnostics.DiagnosticSource/5.0.0": {
  2706. "sha512": "tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==",
  2707. "type": "package",
  2708. "path": "system.diagnostics.diagnosticsource/5.0.0",
  2709. "files": [
  2710. ".nupkg.metadata",
  2711. ".signature.p7s",
  2712. "Icon.png",
  2713. "LICENSE.TXT",
  2714. "THIRD-PARTY-NOTICES.TXT",
  2715. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  2716. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  2717. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  2718. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  2719. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  2720. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  2721. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  2722. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  2723. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  2724. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  2725. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  2726. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  2727. "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512",
  2728. "system.diagnostics.diagnosticsource.nuspec",
  2729. "useSharedDesignerContext.txt",
  2730. "version.txt"
  2731. ]
  2732. },
  2733. "System.Drawing.Common/5.0.3": {
  2734. "sha512": "rEQZuslijqdsO0pkJn7LtGBaMc//YVA8de0meGihkg9oLPaN+w+/Pb5d71lgp0YjPoKgBKNMvdq0IPnoW4PEng==",
  2735. "type": "package",
  2736. "path": "system.drawing.common/5.0.3",
  2737. "files": [
  2738. ".nupkg.metadata",
  2739. ".signature.p7s",
  2740. "Icon.png",
  2741. "LICENSE.TXT",
  2742. "THIRD-PARTY-NOTICES.TXT",
  2743. "lib/MonoAndroid10/_._",
  2744. "lib/MonoTouch10/_._",
  2745. "lib/net461/System.Drawing.Common.dll",
  2746. "lib/netcoreapp3.0/System.Drawing.Common.dll",
  2747. "lib/netcoreapp3.0/System.Drawing.Common.xml",
  2748. "lib/netstandard2.0/System.Drawing.Common.dll",
  2749. "lib/xamarinios10/_._",
  2750. "lib/xamarinmac20/_._",
  2751. "lib/xamarintvos10/_._",
  2752. "lib/xamarinwatchos10/_._",
  2753. "ref/MonoAndroid10/_._",
  2754. "ref/MonoTouch10/_._",
  2755. "ref/net461/System.Drawing.Common.dll",
  2756. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  2757. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  2758. "ref/netstandard2.0/System.Drawing.Common.dll",
  2759. "ref/xamarinios10/_._",
  2760. "ref/xamarinmac20/_._",
  2761. "ref/xamarintvos10/_._",
  2762. "ref/xamarinwatchos10/_._",
  2763. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  2764. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  2765. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  2766. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  2767. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  2768. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  2769. "system.drawing.common.5.0.3.nupkg.sha512",
  2770. "system.drawing.common.nuspec",
  2771. "useSharedDesignerContext.txt",
  2772. "version.txt"
  2773. ]
  2774. },
  2775. "System.IO.Pipelines/5.0.0": {
  2776. "sha512": "irMYm3vhVgRsYvHTU5b2gsT2CwT/SMM6LZFzuJjpIvT5Z4CshxNsaoBC1X/LltwuR3Opp8d6jOS/60WwOb7Q2Q==",
  2777. "type": "package",
  2778. "path": "system.io.pipelines/5.0.0",
  2779. "files": [
  2780. ".nupkg.metadata",
  2781. ".signature.p7s",
  2782. "Icon.png",
  2783. "LICENSE.TXT",
  2784. "THIRD-PARTY-NOTICES.TXT",
  2785. "lib/net461/System.IO.Pipelines.dll",
  2786. "lib/net461/System.IO.Pipelines.xml",
  2787. "lib/netcoreapp3.0/System.IO.Pipelines.dll",
  2788. "lib/netcoreapp3.0/System.IO.Pipelines.xml",
  2789. "lib/netstandard1.3/System.IO.Pipelines.dll",
  2790. "lib/netstandard1.3/System.IO.Pipelines.xml",
  2791. "lib/netstandard2.0/System.IO.Pipelines.dll",
  2792. "lib/netstandard2.0/System.IO.Pipelines.xml",
  2793. "ref/netcoreapp2.0/System.IO.Pipelines.dll",
  2794. "ref/netcoreapp2.0/System.IO.Pipelines.xml",
  2795. "system.io.pipelines.5.0.0.nupkg.sha512",
  2796. "system.io.pipelines.nuspec",
  2797. "useSharedDesignerContext.txt",
  2798. "version.txt"
  2799. ]
  2800. },
  2801. "System.Memory/4.5.5": {
  2802. "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
  2803. "type": "package",
  2804. "path": "system.memory/4.5.5",
  2805. "files": [
  2806. ".nupkg.metadata",
  2807. ".signature.p7s",
  2808. "LICENSE.TXT",
  2809. "THIRD-PARTY-NOTICES.TXT",
  2810. "lib/net461/System.Memory.dll",
  2811. "lib/net461/System.Memory.xml",
  2812. "lib/netcoreapp2.1/_._",
  2813. "lib/netstandard1.1/System.Memory.dll",
  2814. "lib/netstandard1.1/System.Memory.xml",
  2815. "lib/netstandard2.0/System.Memory.dll",
  2816. "lib/netstandard2.0/System.Memory.xml",
  2817. "ref/netcoreapp2.1/_._",
  2818. "system.memory.4.5.5.nupkg.sha512",
  2819. "system.memory.nuspec",
  2820. "useSharedDesignerContext.txt",
  2821. "version.txt"
  2822. ]
  2823. },
  2824. "System.Reflection.Emit/4.7.0": {
  2825. "sha512": "VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==",
  2826. "type": "package",
  2827. "path": "system.reflection.emit/4.7.0",
  2828. "files": [
  2829. ".nupkg.metadata",
  2830. ".signature.p7s",
  2831. "LICENSE.TXT",
  2832. "THIRD-PARTY-NOTICES.TXT",
  2833. "lib/MonoAndroid10/_._",
  2834. "lib/MonoTouch10/_._",
  2835. "lib/net45/_._",
  2836. "lib/netcore50/System.Reflection.Emit.dll",
  2837. "lib/netcoreapp2.0/_._",
  2838. "lib/netstandard1.1/System.Reflection.Emit.dll",
  2839. "lib/netstandard1.1/System.Reflection.Emit.xml",
  2840. "lib/netstandard1.3/System.Reflection.Emit.dll",
  2841. "lib/netstandard2.0/System.Reflection.Emit.dll",
  2842. "lib/netstandard2.0/System.Reflection.Emit.xml",
  2843. "lib/netstandard2.1/_._",
  2844. "lib/xamarinios10/_._",
  2845. "lib/xamarinmac20/_._",
  2846. "lib/xamarintvos10/_._",
  2847. "lib/xamarinwatchos10/_._",
  2848. "ref/MonoAndroid10/_._",
  2849. "ref/MonoTouch10/_._",
  2850. "ref/net45/_._",
  2851. "ref/netcoreapp2.0/_._",
  2852. "ref/netstandard1.1/System.Reflection.Emit.dll",
  2853. "ref/netstandard1.1/System.Reflection.Emit.xml",
  2854. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  2855. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  2856. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  2857. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  2858. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  2859. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  2860. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  2861. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  2862. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  2863. "ref/netstandard2.0/System.Reflection.Emit.dll",
  2864. "ref/netstandard2.0/System.Reflection.Emit.xml",
  2865. "ref/netstandard2.1/_._",
  2866. "ref/xamarinios10/_._",
  2867. "ref/xamarinmac20/_._",
  2868. "ref/xamarintvos10/_._",
  2869. "ref/xamarinwatchos10/_._",
  2870. "runtimes/aot/lib/netcore50/System.Reflection.Emit.dll",
  2871. "runtimes/aot/lib/netcore50/System.Reflection.Emit.xml",
  2872. "system.reflection.emit.4.7.0.nupkg.sha512",
  2873. "system.reflection.emit.nuspec",
  2874. "useSharedDesignerContext.txt",
  2875. "version.txt"
  2876. ]
  2877. },
  2878. "System.Runtime.CompilerServices.Unsafe/5.0.0": {
  2879. "sha512": "ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
  2880. "type": "package",
  2881. "path": "system.runtime.compilerservices.unsafe/5.0.0",
  2882. "files": [
  2883. ".nupkg.metadata",
  2884. ".signature.p7s",
  2885. "Icon.png",
  2886. "LICENSE.TXT",
  2887. "THIRD-PARTY-NOTICES.TXT",
  2888. "lib/net45/System.Runtime.CompilerServices.Unsafe.dll",
  2889. "lib/net45/System.Runtime.CompilerServices.Unsafe.xml",
  2890. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
  2891. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
  2892. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  2893. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  2894. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  2895. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  2896. "ref/net461/System.Runtime.CompilerServices.Unsafe.dll",
  2897. "ref/net461/System.Runtime.CompilerServices.Unsafe.xml",
  2898. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  2899. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  2900. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  2901. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  2902. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll",
  2903. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.xml",
  2904. "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512",
  2905. "system.runtime.compilerservices.unsafe.nuspec",
  2906. "useSharedDesignerContext.txt",
  2907. "version.txt"
  2908. ]
  2909. },
  2910. "System.Security.AccessControl/4.7.0": {
  2911. "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  2912. "type": "package",
  2913. "path": "system.security.accesscontrol/4.7.0",
  2914. "files": [
  2915. ".nupkg.metadata",
  2916. ".signature.p7s",
  2917. "LICENSE.TXT",
  2918. "THIRD-PARTY-NOTICES.TXT",
  2919. "lib/net46/System.Security.AccessControl.dll",
  2920. "lib/net461/System.Security.AccessControl.dll",
  2921. "lib/net461/System.Security.AccessControl.xml",
  2922. "lib/netstandard1.3/System.Security.AccessControl.dll",
  2923. "lib/netstandard2.0/System.Security.AccessControl.dll",
  2924. "lib/netstandard2.0/System.Security.AccessControl.xml",
  2925. "lib/uap10.0.16299/_._",
  2926. "ref/net46/System.Security.AccessControl.dll",
  2927. "ref/net461/System.Security.AccessControl.dll",
  2928. "ref/net461/System.Security.AccessControl.xml",
  2929. "ref/netstandard1.3/System.Security.AccessControl.dll",
  2930. "ref/netstandard1.3/System.Security.AccessControl.xml",
  2931. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  2932. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  2933. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  2934. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  2935. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  2936. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  2937. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  2938. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  2939. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  2940. "ref/netstandard2.0/System.Security.AccessControl.dll",
  2941. "ref/netstandard2.0/System.Security.AccessControl.xml",
  2942. "ref/uap10.0.16299/_._",
  2943. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  2944. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  2945. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  2946. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  2947. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  2948. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  2949. "runtimes/win/lib/uap10.0.16299/_._",
  2950. "system.security.accesscontrol.4.7.0.nupkg.sha512",
  2951. "system.security.accesscontrol.nuspec",
  2952. "useSharedDesignerContext.txt",
  2953. "version.txt"
  2954. ]
  2955. },
  2956. "System.Security.Cryptography.ProtectedData/4.7.0": {
  2957. "sha512": "ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==",
  2958. "type": "package",
  2959. "path": "system.security.cryptography.protecteddata/4.7.0",
  2960. "files": [
  2961. ".nupkg.metadata",
  2962. ".signature.p7s",
  2963. "LICENSE.TXT",
  2964. "THIRD-PARTY-NOTICES.TXT",
  2965. "lib/MonoAndroid10/_._",
  2966. "lib/MonoTouch10/_._",
  2967. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  2968. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  2969. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  2970. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  2971. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  2972. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  2973. "lib/xamarinios10/_._",
  2974. "lib/xamarinmac20/_._",
  2975. "lib/xamarintvos10/_._",
  2976. "lib/xamarinwatchos10/_._",
  2977. "ref/MonoAndroid10/_._",
  2978. "ref/MonoTouch10/_._",
  2979. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  2980. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  2981. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  2982. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  2983. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  2984. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  2985. "ref/xamarinios10/_._",
  2986. "ref/xamarinmac20/_._",
  2987. "ref/xamarintvos10/_._",
  2988. "ref/xamarinwatchos10/_._",
  2989. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  2990. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  2991. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  2992. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  2993. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  2994. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  2995. "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512",
  2996. "system.security.cryptography.protecteddata.nuspec",
  2997. "useSharedDesignerContext.txt",
  2998. "version.txt"
  2999. ]
  3000. },
  3001. "System.Security.Permissions/4.7.0": {
  3002. "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  3003. "type": "package",
  3004. "path": "system.security.permissions/4.7.0",
  3005. "files": [
  3006. ".nupkg.metadata",
  3007. ".signature.p7s",
  3008. "LICENSE.TXT",
  3009. "THIRD-PARTY-NOTICES.TXT",
  3010. "lib/net461/System.Security.Permissions.dll",
  3011. "lib/net461/System.Security.Permissions.xml",
  3012. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  3013. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  3014. "lib/netstandard2.0/System.Security.Permissions.dll",
  3015. "lib/netstandard2.0/System.Security.Permissions.xml",
  3016. "ref/net461/System.Security.Permissions.dll",
  3017. "ref/net461/System.Security.Permissions.xml",
  3018. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  3019. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  3020. "ref/netstandard2.0/System.Security.Permissions.dll",
  3021. "ref/netstandard2.0/System.Security.Permissions.xml",
  3022. "system.security.permissions.4.7.0.nupkg.sha512",
  3023. "system.security.permissions.nuspec",
  3024. "useSharedDesignerContext.txt",
  3025. "version.txt"
  3026. ]
  3027. },
  3028. "System.Security.Principal.Windows/4.7.0": {
  3029. "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  3030. "type": "package",
  3031. "path": "system.security.principal.windows/4.7.0",
  3032. "files": [
  3033. ".nupkg.metadata",
  3034. ".signature.p7s",
  3035. "LICENSE.TXT",
  3036. "THIRD-PARTY-NOTICES.TXT",
  3037. "lib/net46/System.Security.Principal.Windows.dll",
  3038. "lib/net461/System.Security.Principal.Windows.dll",
  3039. "lib/net461/System.Security.Principal.Windows.xml",
  3040. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  3041. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  3042. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  3043. "lib/uap10.0.16299/_._",
  3044. "ref/net46/System.Security.Principal.Windows.dll",
  3045. "ref/net461/System.Security.Principal.Windows.dll",
  3046. "ref/net461/System.Security.Principal.Windows.xml",
  3047. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  3048. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  3049. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  3050. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  3051. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  3052. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  3053. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  3054. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  3055. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  3056. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  3057. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  3058. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  3059. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  3060. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  3061. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  3062. "ref/uap10.0.16299/_._",
  3063. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  3064. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  3065. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  3066. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  3067. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  3068. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  3069. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  3070. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  3071. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  3072. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  3073. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  3074. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  3075. "runtimes/win/lib/uap10.0.16299/_._",
  3076. "system.security.principal.windows.4.7.0.nupkg.sha512",
  3077. "system.security.principal.windows.nuspec",
  3078. "useSharedDesignerContext.txt",
  3079. "version.txt"
  3080. ]
  3081. },
  3082. "System.Text.Encoding.CodePages/5.0.0": {
  3083. "sha512": "NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==",
  3084. "type": "package",
  3085. "path": "system.text.encoding.codepages/5.0.0",
  3086. "files": [
  3087. ".nupkg.metadata",
  3088. ".signature.p7s",
  3089. "Icon.png",
  3090. "LICENSE.TXT",
  3091. "THIRD-PARTY-NOTICES.TXT",
  3092. "lib/MonoAndroid10/_._",
  3093. "lib/MonoTouch10/_._",
  3094. "lib/net46/System.Text.Encoding.CodePages.dll",
  3095. "lib/net461/System.Text.Encoding.CodePages.dll",
  3096. "lib/net461/System.Text.Encoding.CodePages.xml",
  3097. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  3098. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  3099. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  3100. "lib/xamarinios10/_._",
  3101. "lib/xamarinmac20/_._",
  3102. "lib/xamarintvos10/_._",
  3103. "lib/xamarinwatchos10/_._",
  3104. "ref/MonoAndroid10/_._",
  3105. "ref/MonoTouch10/_._",
  3106. "ref/xamarinios10/_._",
  3107. "ref/xamarinmac20/_._",
  3108. "ref/xamarintvos10/_._",
  3109. "ref/xamarinwatchos10/_._",
  3110. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  3111. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  3112. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  3113. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  3114. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  3115. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  3116. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  3117. "system.text.encoding.codepages.5.0.0.nupkg.sha512",
  3118. "system.text.encoding.codepages.nuspec",
  3119. "useSharedDesignerContext.txt",
  3120. "version.txt"
  3121. ]
  3122. },
  3123. "System.Text.Encodings.Web/4.5.0": {
  3124. "sha512": "Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
  3125. "type": "package",
  3126. "path": "system.text.encodings.web/4.5.0",
  3127. "files": [
  3128. ".nupkg.metadata",
  3129. ".signature.p7s",
  3130. "LICENSE.TXT",
  3131. "THIRD-PARTY-NOTICES.TXT",
  3132. "lib/netstandard1.0/System.Text.Encodings.Web.dll",
  3133. "lib/netstandard1.0/System.Text.Encodings.Web.xml",
  3134. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  3135. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  3136. "system.text.encodings.web.4.5.0.nupkg.sha512",
  3137. "system.text.encodings.web.nuspec",
  3138. "useSharedDesignerContext.txt",
  3139. "version.txt"
  3140. ]
  3141. },
  3142. "System.Threading.Channels/7.0.0": {
  3143. "sha512": "qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==",
  3144. "type": "package",
  3145. "path": "system.threading.channels/7.0.0",
  3146. "files": [
  3147. ".nupkg.metadata",
  3148. ".signature.p7s",
  3149. "Icon.png",
  3150. "LICENSE.TXT",
  3151. "THIRD-PARTY-NOTICES.TXT",
  3152. "buildTransitive/net461/System.Threading.Channels.targets",
  3153. "buildTransitive/net462/_._",
  3154. "buildTransitive/net6.0/_._",
  3155. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets",
  3156. "lib/net462/System.Threading.Channels.dll",
  3157. "lib/net462/System.Threading.Channels.xml",
  3158. "lib/net6.0/System.Threading.Channels.dll",
  3159. "lib/net6.0/System.Threading.Channels.xml",
  3160. "lib/net7.0/System.Threading.Channels.dll",
  3161. "lib/net7.0/System.Threading.Channels.xml",
  3162. "lib/netstandard2.0/System.Threading.Channels.dll",
  3163. "lib/netstandard2.0/System.Threading.Channels.xml",
  3164. "lib/netstandard2.1/System.Threading.Channels.dll",
  3165. "lib/netstandard2.1/System.Threading.Channels.xml",
  3166. "system.threading.channels.7.0.0.nupkg.sha512",
  3167. "system.threading.channels.nuspec",
  3168. "useSharedDesignerContext.txt"
  3169. ]
  3170. },
  3171. "System.Windows.Extensions/4.7.0": {
  3172. "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  3173. "type": "package",
  3174. "path": "system.windows.extensions/4.7.0",
  3175. "files": [
  3176. ".nupkg.metadata",
  3177. ".signature.p7s",
  3178. "LICENSE.TXT",
  3179. "THIRD-PARTY-NOTICES.TXT",
  3180. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  3181. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  3182. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  3183. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  3184. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  3185. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  3186. "system.windows.extensions.4.7.0.nupkg.sha512",
  3187. "system.windows.extensions.nuspec",
  3188. "useSharedDesignerContext.txt",
  3189. "version.txt"
  3190. ]
  3191. },
  3192. "ZXing.Net/0.16.9": {
  3193. "sha512": "7WaVMHklpT3Ye2ragqRIwlFRsb6kOk63BOGADV0fan3ulVfGLUYkDi5yNUsZS/7FVNkWbtHAlDLmu4WnHGfqvQ==",
  3194. "type": "package",
  3195. "path": "zxing.net/0.16.9",
  3196. "files": [
  3197. ".nupkg.metadata",
  3198. ".signature.p7s",
  3199. "lib/native/zxing.XML",
  3200. "lib/native/zxing.pri",
  3201. "lib/native/zxing.winmd",
  3202. "lib/net20-cf/zxing.ce2.0.dll",
  3203. "lib/net20-cf/zxing.ce2.0.xml",
  3204. "lib/net20/zxing.XML",
  3205. "lib/net20/zxing.dll",
  3206. "lib/net35-cf/zxing.ce3.5.dll",
  3207. "lib/net35-cf/zxing.ce3.5.xml",
  3208. "lib/net35/zxing.XML",
  3209. "lib/net35/zxing.dll",
  3210. "lib/net40/zxing.XML",
  3211. "lib/net40/zxing.dll",
  3212. "lib/net40/zxing.presentation.XML",
  3213. "lib/net40/zxing.presentation.dll",
  3214. "lib/net45/zxing.XML",
  3215. "lib/net45/zxing.dll",
  3216. "lib/net45/zxing.presentation.XML",
  3217. "lib/net45/zxing.presentation.dll",
  3218. "lib/net461/zxing.XML",
  3219. "lib/net461/zxing.dll",
  3220. "lib/net461/zxing.presentation.XML",
  3221. "lib/net461/zxing.presentation.dll",
  3222. "lib/net47/zxing.XML",
  3223. "lib/net47/zxing.dll",
  3224. "lib/net47/zxing.presentation.XML",
  3225. "lib/net47/zxing.presentation.dll",
  3226. "lib/net48/zxing.XML",
  3227. "lib/net48/zxing.dll",
  3228. "lib/net48/zxing.presentation.XML",
  3229. "lib/net48/zxing.presentation.dll",
  3230. "lib/net5.0/zxing.XML",
  3231. "lib/net5.0/zxing.dll",
  3232. "lib/net6.0/zxing.XML",
  3233. "lib/net6.0/zxing.dll",
  3234. "lib/net7.0/zxing.XML",
  3235. "lib/net7.0/zxing.dll",
  3236. "lib/netcoreapp3.0/zxing.dll",
  3237. "lib/netcoreapp3.0/zxing.xml",
  3238. "lib/netcoreapp3.1/zxing.dll",
  3239. "lib/netcoreapp3.1/zxing.xml",
  3240. "lib/netstandard1.0/zxing.dll",
  3241. "lib/netstandard1.0/zxing.xml",
  3242. "lib/netstandard1.1/zxing.dll",
  3243. "lib/netstandard1.1/zxing.xml",
  3244. "lib/netstandard1.3/zxing.dll",
  3245. "lib/netstandard1.3/zxing.xml",
  3246. "lib/netstandard2.0/zxing.dll",
  3247. "lib/netstandard2.0/zxing.xml",
  3248. "lib/netstandard2.1/zxing.dll",
  3249. "lib/netstandard2.1/zxing.xml",
  3250. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.XML",
  3251. "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.dll",
  3252. "lib/sl3-wp/zxing.wp7.0.XML",
  3253. "lib/sl3-wp/zxing.wp7.0.dll",
  3254. "lib/sl4-wp71/zxing.wp7.1.XML",
  3255. "lib/sl4-wp71/zxing.wp7.1.dll",
  3256. "lib/sl4/zxing.sl4.XML",
  3257. "lib/sl4/zxing.sl4.dll",
  3258. "lib/sl5/zxing.sl5.XML",
  3259. "lib/sl5/zxing.sl5.dll",
  3260. "lib/uap10/zxing.dll",
  3261. "lib/uap10/zxing.pri",
  3262. "lib/uap10/zxing.xml",
  3263. "lib/windows8-managed/zxing.winrt.XML",
  3264. "lib/windows8-managed/zxing.winrt.dll",
  3265. "lib/windows8/zxing.XML",
  3266. "lib/windows8/zxing.pri",
  3267. "lib/windows8/zxing.winmd",
  3268. "lib/wp8/zxing.wp8.0.XML",
  3269. "lib/wp8/zxing.wp8.0.dll",
  3270. "logo.jpg",
  3271. "zxing.net.0.16.9.nupkg.sha512",
  3272. "zxing.net.nuspec"
  3273. ]
  3274. },
  3275. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  3276. "sha512": "f+oesw0O/KH3YoL1j9ktw65O5Ilx932sS98xrFbdRRgQVxuMdTZ/AP9A7qll3e2ygO1YL3JFtRsZeiFPqzBZkw==",
  3277. "type": "package",
  3278. "path": "zxing.net.bindings.imagesharp.v2/0.16.15",
  3279. "files": [
  3280. ".nupkg.metadata",
  3281. ".signature.p7s",
  3282. "lib/net472/ZXing.ImageSharp.V2.dll",
  3283. "lib/net472/ZXing.ImageSharp.V2.pdb",
  3284. "lib/net472/ZXing.ImageSharp.V2.xml",
  3285. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.dll",
  3286. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.pdb",
  3287. "lib/netcoreapp2.1/ZXing.ImageSharp.V2.xml",
  3288. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll",
  3289. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.pdb",
  3290. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.xml",
  3291. "lib/netstandard2.0/ZXing.ImageSharp.V2.dll",
  3292. "lib/netstandard2.0/ZXing.ImageSharp.V2.pdb",
  3293. "lib/netstandard2.0/ZXing.ImageSharp.V2.xml",
  3294. "lib/netstandard2.1/ZXing.ImageSharp.V2.dll",
  3295. "lib/netstandard2.1/ZXing.ImageSharp.V2.pdb",
  3296. "lib/netstandard2.1/ZXing.ImageSharp.V2.xml",
  3297. "logo.jpg",
  3298. "readme.md",
  3299. "zxing.net.bindings.imagesharp.v2.0.16.15.nupkg.sha512",
  3300. "zxing.net.bindings.imagesharp.v2.nuspec"
  3301. ]
  3302. },
  3303. "Ropin.Core.Common/1.0.0": {
  3304. "type": "project",
  3305. "path": "../Ropin.Core.Common/Ropin.Core.Common.csproj",
  3306. "msbuildProject": "../Ropin.Core.Common/Ropin.Core.Common.csproj"
  3307. },
  3308. "Ropin.Inspection.Common/1.0.0": {
  3309. "type": "project",
  3310. "path": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj",
  3311. "msbuildProject": "../Ropin.Inspection.Common/Ropin.Inspection.Common.csproj"
  3312. },
  3313. "Ropin.Inspection.Model/1.0.0": {
  3314. "type": "project",
  3315. "path": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj",
  3316. "msbuildProject": "../Ropin.Inspection.Model/Ropin.Inspection.Model.csproj"
  3317. },
  3318. "Ropin.Inspection.Repository/1.0.0": {
  3319. "type": "project",
  3320. "path": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj",
  3321. "msbuildProject": "../Ropin.Inspection.Repository/Ropin.Inspection.Repository.csproj"
  3322. },
  3323. "Ropin.Inspection.Service/1.0.0": {
  3324. "type": "project",
  3325. "path": "../Ropin.Inspection.Service/Ropin.Inspection.Service.csproj",
  3326. "msbuildProject": "../Ropin.Inspection.Service/Ropin.Inspection.Service.csproj"
  3327. }
  3328. },
  3329. "projectFileDependencyGroups": {
  3330. "net5.0": [
  3331. "Quartz >= 3.3.3",
  3332. "Ropin.Inspection.Common >= 1.0.0",
  3333. "Ropin.Inspection.Model >= 1.0.0",
  3334. "Ropin.Inspection.Service >= 1.0.0"
  3335. ]
  3336. },
  3337. "packageFolders": {
  3338. "D:\\.nuget\\packages": {},
  3339. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
  3340. },
  3341. "project": {
  3342. "version": "1.0.0",
  3343. "restore": {
  3344. "projectUniqueName": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Tasks\\Ropin.Inspection.Tasks.csproj",
  3345. "projectName": "Ropin.Inspection.Tasks",
  3346. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Tasks\\Ropin.Inspection.Tasks.csproj",
  3347. "packagesPath": "D:\\.nuget\\packages",
  3348. "outputPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Tasks\\obj\\",
  3349. "projectStyle": "PackageReference",
  3350. "fallbackFolders": [
  3351. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
  3352. ],
  3353. "configFilePaths": [
  3354. "C:\\Users\\hp\\AppData\\Roaming\\NuGet\\NuGet.Config",
  3355. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  3356. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  3357. ],
  3358. "originalTargetFrameworks": [
  3359. "net5.0"
  3360. ],
  3361. "sources": {
  3362. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  3363. "C:\\Program Files\\dotnet\\library-packs": {},
  3364. "https://api.nuget.org/v3/index.json": {}
  3365. },
  3366. "frameworks": {
  3367. "net5.0": {
  3368. "targetAlias": "net5.0",
  3369. "projectReferences": {
  3370. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Common\\Ropin.Inspection.Common.csproj": {
  3371. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Common\\Ropin.Inspection.Common.csproj"
  3372. },
  3373. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj": {
  3374. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Model\\Ropin.Inspection.Model.csproj"
  3375. },
  3376. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Service\\Ropin.Inspection.Service.csproj": {
  3377. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.Inspection.Service\\Ropin.Inspection.Service.csproj"
  3378. }
  3379. }
  3380. }
  3381. },
  3382. "warningProperties": {
  3383. "warnAsError": [
  3384. "NU1605"
  3385. ]
  3386. }
  3387. },
  3388. "frameworks": {
  3389. "net5.0": {
  3390. "targetAlias": "net5.0",
  3391. "dependencies": {
  3392. "Quartz": {
  3393. "target": "Package",
  3394. "version": "[3.3.3, )"
  3395. }
  3396. },
  3397. "imports": [
  3398. "net461",
  3399. "net462",
  3400. "net47",
  3401. "net471",
  3402. "net472",
  3403. "net48",
  3404. "net481"
  3405. ],
  3406. "assetTargetFallback": true,
  3407. "warn": true,
  3408. "frameworkReferences": {
  3409. "Microsoft.NETCore.App": {
  3410. "privateAssets": "all"
  3411. }
  3412. },
  3413. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
  3414. }
  3415. }
  3416. }
  3417. }