project.assets.json 145 KB

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