project.assets.json 108 KB

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