project.assets.json 167 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038
  1. {
  2. "version": 3,
  3. "targets": {
  4. "net5.0": {
  5. "AdysTech.InfluxDB.Client.Net/0.15.0": {
  6. "type": "package",
  7. "compile": {
  8. "lib/net46/AdysTech.InfluxDB.Client.Net.dll": {}
  9. },
  10. "runtime": {
  11. "lib/net46/AdysTech.InfluxDB.Client.Net.dll": {}
  12. }
  13. },
  14. "InfluxData.Net/8.0.1": {
  15. "type": "package",
  16. "dependencies": {
  17. "Newtonsoft.Json": "10.0.3",
  18. "System.Net.Http": "4.3.2"
  19. },
  20. "compile": {
  21. "lib/netstandard2.0/InfluxData.Net.Common.dll": {
  22. "related": ".dll.config;.pdb"
  23. },
  24. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll": {
  25. "related": ".dll.config;.pdb"
  26. },
  27. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll": {
  28. "related": ".dll.config;.pdb"
  29. },
  30. "lib/netstandard2.0/InfluxData.Net.dll": {
  31. "related": ".Common.dll.config;.Common.pdb;.deps.json;.dll.config;.InfluxDb.dll.config;.InfluxDb.pdb;.Kapacitor.dll.config;.Kapacitor.pdb;.pdb"
  32. }
  33. },
  34. "runtime": {
  35. "lib/netstandard2.0/InfluxData.Net.Common.dll": {
  36. "related": ".dll.config;.pdb"
  37. },
  38. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll": {
  39. "related": ".dll.config;.pdb"
  40. },
  41. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll": {
  42. "related": ".dll.config;.pdb"
  43. },
  44. "lib/netstandard2.0/InfluxData.Net.dll": {
  45. "related": ".Common.dll.config;.Common.pdb;.deps.json;.dll.config;.InfluxDb.dll.config;.InfluxDb.pdb;.Kapacitor.dll.config;.Kapacitor.pdb;.pdb"
  46. }
  47. }
  48. },
  49. "Microsoft.Bcl.Numerics/8.0.0": {
  50. "type": "package",
  51. "compile": {
  52. "lib/netstandard2.1/Microsoft.Bcl.Numerics.dll": {
  53. "related": ".xml"
  54. }
  55. },
  56. "runtime": {
  57. "lib/netstandard2.1/Microsoft.Bcl.Numerics.dll": {
  58. "related": ".xml"
  59. }
  60. }
  61. },
  62. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  63. "type": "package",
  64. "build": {
  65. "build/Microsoft.Extensions.ApiDescription.Server.props": {},
  66. "build/Microsoft.Extensions.ApiDescription.Server.targets": {}
  67. },
  68. "buildMultiTargeting": {
  69. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {},
  70. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {}
  71. }
  72. },
  73. "Microsoft.ML/4.0.2": {
  74. "type": "package",
  75. "dependencies": {
  76. "Microsoft.ML.CpuMath": "4.0.2",
  77. "Microsoft.ML.DataView": "4.0.2",
  78. "Newtonsoft.Json": "13.0.3",
  79. "System.CodeDom": "8.0.0",
  80. "System.Collections.Immutable": "8.0.0",
  81. "System.Memory": "4.6.0",
  82. "System.Reflection.Emit.Lightweight": "4.7.0",
  83. "System.Threading.Channels": "8.0.0"
  84. },
  85. "compile": {
  86. "lib/netstandard2.0/Microsoft.ML.Core.dll": {
  87. "related": ".xml"
  88. },
  89. "lib/netstandard2.0/Microsoft.ML.Data.dll": {
  90. "related": ".xml"
  91. },
  92. "lib/netstandard2.0/Microsoft.ML.KMeansClustering.dll": {
  93. "related": ".xml"
  94. },
  95. "lib/netstandard2.0/Microsoft.ML.PCA.dll": {
  96. "related": ".xml"
  97. },
  98. "lib/netstandard2.0/Microsoft.ML.StandardTrainers.dll": {
  99. "related": ".xml"
  100. },
  101. "lib/netstandard2.0/Microsoft.ML.Transforms.dll": {
  102. "related": ".xml"
  103. }
  104. },
  105. "runtime": {
  106. "lib/netstandard2.0/Microsoft.ML.Core.dll": {
  107. "related": ".xml"
  108. },
  109. "lib/netstandard2.0/Microsoft.ML.Data.dll": {
  110. "related": ".xml"
  111. },
  112. "lib/netstandard2.0/Microsoft.ML.KMeansClustering.dll": {
  113. "related": ".xml"
  114. },
  115. "lib/netstandard2.0/Microsoft.ML.PCA.dll": {
  116. "related": ".xml"
  117. },
  118. "lib/netstandard2.0/Microsoft.ML.StandardTrainers.dll": {
  119. "related": ".xml"
  120. },
  121. "lib/netstandard2.0/Microsoft.ML.Transforms.dll": {
  122. "related": ".xml"
  123. }
  124. },
  125. "build": {
  126. "build/netstandard2.0/Microsoft.ML.props": {},
  127. "build/netstandard2.0/Microsoft.ML.targets": {}
  128. },
  129. "runtimeTargets": {
  130. "runtimes/linux-arm/native/libLdaNative.so": {
  131. "assetType": "native",
  132. "rid": "linux-arm"
  133. },
  134. "runtimes/linux-arm/native/libLdaNative.so.dbg": {
  135. "assetType": "native",
  136. "rid": "linux-arm"
  137. },
  138. "runtimes/linux-arm64/native/libLdaNative.so": {
  139. "assetType": "native",
  140. "rid": "linux-arm64"
  141. },
  142. "runtimes/linux-arm64/native/libLdaNative.so.dbg": {
  143. "assetType": "native",
  144. "rid": "linux-arm64"
  145. },
  146. "runtimes/linux-x64/native/libLdaNative.so": {
  147. "assetType": "native",
  148. "rid": "linux-x64"
  149. },
  150. "runtimes/linux-x64/native/libLdaNative.so.dbg": {
  151. "assetType": "native",
  152. "rid": "linux-x64"
  153. },
  154. "runtimes/osx-arm64/native/libLdaNative.dylib": {
  155. "assetType": "native",
  156. "rid": "osx-arm64"
  157. },
  158. "runtimes/osx-arm64/native/libLdaNative.dylib.dwarf": {
  159. "assetType": "native",
  160. "rid": "osx-arm64"
  161. },
  162. "runtimes/osx-x64/native/libLdaNative.dylib": {
  163. "assetType": "native",
  164. "rid": "osx-x64"
  165. },
  166. "runtimes/osx-x64/native/libLdaNative.dylib.dwarf": {
  167. "assetType": "native",
  168. "rid": "osx-x64"
  169. },
  170. "runtimes/win-arm64/native/LdaNative.dll": {
  171. "assetType": "native",
  172. "rid": "win-arm64"
  173. },
  174. "runtimes/win-x64/native/LdaNative.dll": {
  175. "assetType": "native",
  176. "rid": "win-x64"
  177. },
  178. "runtimes/win-x86/native/LdaNative.dll": {
  179. "assetType": "native",
  180. "rid": "win-x86"
  181. }
  182. }
  183. },
  184. "Microsoft.ML.CpuMath/4.0.2": {
  185. "type": "package",
  186. "dependencies": {
  187. "System.Memory": "4.6.0",
  188. "System.Numerics.Tensors": "8.0.0"
  189. },
  190. "compile": {
  191. "lib/netstandard2.0/Microsoft.ML.CpuMath.dll": {
  192. "related": ".xml"
  193. }
  194. },
  195. "runtime": {
  196. "lib/netstandard2.0/Microsoft.ML.CpuMath.dll": {
  197. "related": ".xml"
  198. }
  199. },
  200. "build": {
  201. "build/netstandard2.0/_._": {}
  202. },
  203. "runtimeTargets": {
  204. "runtimes/linux-x64/nativeassets/netstandard2.0/libCpuMathNative.so": {
  205. "assetType": "native",
  206. "rid": "linux-x64"
  207. },
  208. "runtimes/linux-x64/nativeassets/netstandard2.0/libCpuMathNative.so.dbg": {
  209. "assetType": "native",
  210. "rid": "linux-x64"
  211. },
  212. "runtimes/osx-x64/nativeassets/netstandard2.0/libCpuMathNative.dylib": {
  213. "assetType": "native",
  214. "rid": "osx-x64"
  215. },
  216. "runtimes/osx-x64/nativeassets/netstandard2.0/libCpuMathNative.dylib.dwarf": {
  217. "assetType": "native",
  218. "rid": "osx-x64"
  219. },
  220. "runtimes/win-x64/nativeassets/netstandard2.0/CpuMathNative.dll": {
  221. "assetType": "native",
  222. "rid": "win-x64"
  223. },
  224. "runtimes/win-x86/nativeassets/netstandard2.0/CpuMathNative.dll": {
  225. "assetType": "native",
  226. "rid": "win-x86"
  227. }
  228. }
  229. },
  230. "Microsoft.ML.DataView/4.0.2": {
  231. "type": "package",
  232. "dependencies": {
  233. "System.Collections.Immutable": "8.0.0",
  234. "System.Memory": "4.6.0"
  235. },
  236. "compile": {
  237. "lib/netstandard2.0/Microsoft.ML.DataView.dll": {
  238. "related": ".xml"
  239. }
  240. },
  241. "runtime": {
  242. "lib/netstandard2.0/Microsoft.ML.DataView.dll": {
  243. "related": ".xml"
  244. }
  245. }
  246. },
  247. "Microsoft.NETCore.Platforms/1.1.0": {
  248. "type": "package",
  249. "compile": {
  250. "lib/netstandard1.0/_._": {}
  251. },
  252. "runtime": {
  253. "lib/netstandard1.0/_._": {}
  254. }
  255. },
  256. "Microsoft.NETCore.Targets/1.1.0": {
  257. "type": "package",
  258. "compile": {
  259. "lib/netstandard1.0/_._": {}
  260. },
  261. "runtime": {
  262. "lib/netstandard1.0/_._": {}
  263. }
  264. },
  265. "Microsoft.OpenApi/1.2.3": {
  266. "type": "package",
  267. "compile": {
  268. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  269. "related": ".pdb;.xml"
  270. }
  271. },
  272. "runtime": {
  273. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  274. "related": ".pdb;.xml"
  275. }
  276. }
  277. },
  278. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.17.2": {
  279. "type": "package",
  280. "build": {
  281. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props": {},
  282. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets": {}
  283. }
  284. },
  285. "Newtonsoft.Json/13.0.3": {
  286. "type": "package",
  287. "compile": {
  288. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  289. "related": ".xml"
  290. }
  291. },
  292. "runtime": {
  293. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  294. "related": ".xml"
  295. }
  296. }
  297. },
  298. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  299. "type": "package",
  300. "runtimeTargets": {
  301. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  302. "assetType": "native",
  303. "rid": "debian.8-x64"
  304. }
  305. }
  306. },
  307. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  308. "type": "package",
  309. "runtimeTargets": {
  310. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  311. "assetType": "native",
  312. "rid": "fedora.23-x64"
  313. }
  314. }
  315. },
  316. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  317. "type": "package",
  318. "runtimeTargets": {
  319. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  320. "assetType": "native",
  321. "rid": "fedora.24-x64"
  322. }
  323. }
  324. },
  325. "runtime.native.System/4.3.0": {
  326. "type": "package",
  327. "dependencies": {
  328. "Microsoft.NETCore.Platforms": "1.1.0",
  329. "Microsoft.NETCore.Targets": "1.1.0"
  330. },
  331. "compile": {
  332. "lib/netstandard1.0/_._": {}
  333. },
  334. "runtime": {
  335. "lib/netstandard1.0/_._": {}
  336. }
  337. },
  338. "runtime.native.System.Net.Http/4.3.0": {
  339. "type": "package",
  340. "dependencies": {
  341. "Microsoft.NETCore.Platforms": "1.1.0",
  342. "Microsoft.NETCore.Targets": "1.1.0"
  343. },
  344. "compile": {
  345. "lib/netstandard1.0/_._": {}
  346. },
  347. "runtime": {
  348. "lib/netstandard1.0/_._": {}
  349. }
  350. },
  351. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  352. "type": "package",
  353. "dependencies": {
  354. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  355. },
  356. "compile": {
  357. "lib/netstandard1.0/_._": {}
  358. },
  359. "runtime": {
  360. "lib/netstandard1.0/_._": {}
  361. }
  362. },
  363. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  364. "type": "package",
  365. "dependencies": {
  366. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  367. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  368. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  369. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  370. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  371. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  372. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  373. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  374. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  375. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  376. },
  377. "compile": {
  378. "lib/netstandard1.0/_._": {}
  379. },
  380. "runtime": {
  381. "lib/netstandard1.0/_._": {}
  382. }
  383. },
  384. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  385. "type": "package",
  386. "runtimeTargets": {
  387. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  388. "assetType": "native",
  389. "rid": "opensuse.13.2-x64"
  390. }
  391. }
  392. },
  393. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  394. "type": "package",
  395. "runtimeTargets": {
  396. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  397. "assetType": "native",
  398. "rid": "opensuse.42.1-x64"
  399. }
  400. }
  401. },
  402. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  403. "type": "package",
  404. "runtimeTargets": {
  405. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  406. "assetType": "native",
  407. "rid": "osx.10.10-x64"
  408. }
  409. }
  410. },
  411. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  412. "type": "package",
  413. "runtimeTargets": {
  414. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  415. "assetType": "native",
  416. "rid": "osx.10.10-x64"
  417. }
  418. }
  419. },
  420. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  421. "type": "package",
  422. "runtimeTargets": {
  423. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  424. "assetType": "native",
  425. "rid": "rhel.7-x64"
  426. }
  427. }
  428. },
  429. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  430. "type": "package",
  431. "runtimeTargets": {
  432. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  433. "assetType": "native",
  434. "rid": "ubuntu.14.04-x64"
  435. }
  436. }
  437. },
  438. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  439. "type": "package",
  440. "runtimeTargets": {
  441. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  442. "assetType": "native",
  443. "rid": "ubuntu.16.04-x64"
  444. }
  445. }
  446. },
  447. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  448. "type": "package",
  449. "runtimeTargets": {
  450. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  451. "assetType": "native",
  452. "rid": "ubuntu.16.10-x64"
  453. }
  454. }
  455. },
  456. "Swashbuckle.AspNetCore/5.6.3": {
  457. "type": "package",
  458. "dependencies": {
  459. "Microsoft.Extensions.ApiDescription.Server": "3.0.0",
  460. "Swashbuckle.AspNetCore.Swagger": "5.6.3",
  461. "Swashbuckle.AspNetCore.SwaggerGen": "5.6.3",
  462. "Swashbuckle.AspNetCore.SwaggerUI": "5.6.3"
  463. },
  464. "build": {
  465. "build/Swashbuckle.AspNetCore.props": {}
  466. }
  467. },
  468. "Swashbuckle.AspNetCore.Swagger/5.6.3": {
  469. "type": "package",
  470. "dependencies": {
  471. "Microsoft.OpenApi": "1.2.3"
  472. },
  473. "compile": {
  474. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {
  475. "related": ".pdb;.xml"
  476. }
  477. },
  478. "runtime": {
  479. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {
  480. "related": ".pdb;.xml"
  481. }
  482. },
  483. "frameworkReferences": [
  484. "Microsoft.AspNetCore.App"
  485. ]
  486. },
  487. "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": {
  488. "type": "package",
  489. "dependencies": {
  490. "Swashbuckle.AspNetCore.Swagger": "5.6.3"
  491. },
  492. "compile": {
  493. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  494. "related": ".pdb;.xml"
  495. }
  496. },
  497. "runtime": {
  498. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  499. "related": ".pdb;.xml"
  500. }
  501. },
  502. "frameworkReferences": [
  503. "Microsoft.AspNetCore.App"
  504. ]
  505. },
  506. "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": {
  507. "type": "package",
  508. "compile": {
  509. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  510. "related": ".pdb;.xml"
  511. }
  512. },
  513. "runtime": {
  514. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  515. "related": ".pdb;.xml"
  516. }
  517. },
  518. "frameworkReferences": [
  519. "Microsoft.AspNetCore.App"
  520. ]
  521. },
  522. "System.CodeDom/8.0.0": {
  523. "type": "package",
  524. "compile": {
  525. "lib/netstandard2.0/System.CodeDom.dll": {
  526. "related": ".xml"
  527. }
  528. },
  529. "runtime": {
  530. "lib/netstandard2.0/System.CodeDom.dll": {
  531. "related": ".xml"
  532. }
  533. },
  534. "build": {
  535. "buildTransitive/netcoreapp2.0/System.CodeDom.targets": {}
  536. }
  537. },
  538. "System.Collections/4.3.0": {
  539. "type": "package",
  540. "dependencies": {
  541. "Microsoft.NETCore.Platforms": "1.1.0",
  542. "Microsoft.NETCore.Targets": "1.1.0",
  543. "System.Runtime": "4.3.0"
  544. },
  545. "compile": {
  546. "ref/netstandard1.3/_._": {
  547. "related": ".xml"
  548. }
  549. }
  550. },
  551. "System.Collections.Concurrent/4.3.0": {
  552. "type": "package",
  553. "dependencies": {
  554. "System.Collections": "4.3.0",
  555. "System.Diagnostics.Debug": "4.3.0",
  556. "System.Diagnostics.Tracing": "4.3.0",
  557. "System.Globalization": "4.3.0",
  558. "System.Reflection": "4.3.0",
  559. "System.Resources.ResourceManager": "4.3.0",
  560. "System.Runtime": "4.3.0",
  561. "System.Runtime.Extensions": "4.3.0",
  562. "System.Threading": "4.3.0",
  563. "System.Threading.Tasks": "4.3.0"
  564. },
  565. "compile": {
  566. "ref/netstandard1.3/_._": {
  567. "related": ".xml"
  568. }
  569. },
  570. "runtime": {
  571. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  572. }
  573. },
  574. "System.Collections.Immutable/8.0.0": {
  575. "type": "package",
  576. "dependencies": {
  577. "System.Memory": "4.5.5",
  578. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  579. },
  580. "compile": {
  581. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  582. "related": ".xml"
  583. }
  584. },
  585. "runtime": {
  586. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  587. "related": ".xml"
  588. }
  589. },
  590. "build": {
  591. "buildTransitive/netcoreapp2.0/System.Collections.Immutable.targets": {}
  592. }
  593. },
  594. "System.Diagnostics.Debug/4.3.0": {
  595. "type": "package",
  596. "dependencies": {
  597. "Microsoft.NETCore.Platforms": "1.1.0",
  598. "Microsoft.NETCore.Targets": "1.1.0",
  599. "System.Runtime": "4.3.0"
  600. },
  601. "compile": {
  602. "ref/netstandard1.3/_._": {
  603. "related": ".xml"
  604. }
  605. }
  606. },
  607. "System.Diagnostics.DiagnosticSource/4.3.0": {
  608. "type": "package",
  609. "dependencies": {
  610. "System.Collections": "4.3.0",
  611. "System.Diagnostics.Tracing": "4.3.0",
  612. "System.Reflection": "4.3.0",
  613. "System.Runtime": "4.3.0",
  614. "System.Threading": "4.3.0"
  615. },
  616. "compile": {
  617. "lib/netstandard1.3/_._": {
  618. "related": ".xml"
  619. }
  620. },
  621. "runtime": {
  622. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {
  623. "related": ".xml"
  624. }
  625. }
  626. },
  627. "System.Diagnostics.Tracing/4.3.0": {
  628. "type": "package",
  629. "dependencies": {
  630. "Microsoft.NETCore.Platforms": "1.1.0",
  631. "Microsoft.NETCore.Targets": "1.1.0",
  632. "System.Runtime": "4.3.0"
  633. },
  634. "compile": {
  635. "ref/netstandard1.5/_._": {
  636. "related": ".xml"
  637. }
  638. }
  639. },
  640. "System.Globalization/4.3.0": {
  641. "type": "package",
  642. "dependencies": {
  643. "Microsoft.NETCore.Platforms": "1.1.0",
  644. "Microsoft.NETCore.Targets": "1.1.0",
  645. "System.Runtime": "4.3.0"
  646. },
  647. "compile": {
  648. "ref/netstandard1.3/_._": {
  649. "related": ".xml"
  650. }
  651. }
  652. },
  653. "System.Globalization.Calendars/4.3.0": {
  654. "type": "package",
  655. "dependencies": {
  656. "Microsoft.NETCore.Platforms": "1.1.0",
  657. "Microsoft.NETCore.Targets": "1.1.0",
  658. "System.Globalization": "4.3.0",
  659. "System.Runtime": "4.3.0"
  660. },
  661. "compile": {
  662. "ref/netstandard1.3/_._": {
  663. "related": ".xml"
  664. }
  665. }
  666. },
  667. "System.Globalization.Extensions/4.3.0": {
  668. "type": "package",
  669. "dependencies": {
  670. "Microsoft.NETCore.Platforms": "1.1.0",
  671. "System.Globalization": "4.3.0",
  672. "System.Resources.ResourceManager": "4.3.0",
  673. "System.Runtime": "4.3.0",
  674. "System.Runtime.Extensions": "4.3.0",
  675. "System.Runtime.InteropServices": "4.3.0"
  676. },
  677. "compile": {
  678. "ref/netstandard1.3/_._": {
  679. "related": ".xml"
  680. }
  681. },
  682. "runtimeTargets": {
  683. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  684. "assetType": "runtime",
  685. "rid": "unix"
  686. },
  687. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  688. "assetType": "runtime",
  689. "rid": "win"
  690. }
  691. }
  692. },
  693. "System.IO/4.3.0": {
  694. "type": "package",
  695. "dependencies": {
  696. "Microsoft.NETCore.Platforms": "1.1.0",
  697. "Microsoft.NETCore.Targets": "1.1.0",
  698. "System.Runtime": "4.3.0",
  699. "System.Text.Encoding": "4.3.0",
  700. "System.Threading.Tasks": "4.3.0"
  701. },
  702. "compile": {
  703. "ref/netstandard1.5/System.IO.dll": {
  704. "related": ".xml"
  705. }
  706. }
  707. },
  708. "System.IO.FileSystem/4.3.0": {
  709. "type": "package",
  710. "dependencies": {
  711. "Microsoft.NETCore.Platforms": "1.1.0",
  712. "Microsoft.NETCore.Targets": "1.1.0",
  713. "System.IO": "4.3.0",
  714. "System.IO.FileSystem.Primitives": "4.3.0",
  715. "System.Runtime": "4.3.0",
  716. "System.Runtime.Handles": "4.3.0",
  717. "System.Text.Encoding": "4.3.0",
  718. "System.Threading.Tasks": "4.3.0"
  719. },
  720. "compile": {
  721. "ref/netstandard1.3/_._": {
  722. "related": ".xml"
  723. }
  724. }
  725. },
  726. "System.IO.FileSystem.Primitives/4.3.0": {
  727. "type": "package",
  728. "dependencies": {
  729. "System.Runtime": "4.3.0"
  730. },
  731. "compile": {
  732. "ref/netstandard1.3/_._": {
  733. "related": ".xml"
  734. }
  735. },
  736. "runtime": {
  737. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  738. }
  739. },
  740. "System.Linq/4.3.0": {
  741. "type": "package",
  742. "dependencies": {
  743. "System.Collections": "4.3.0",
  744. "System.Diagnostics.Debug": "4.3.0",
  745. "System.Resources.ResourceManager": "4.3.0",
  746. "System.Runtime": "4.3.0",
  747. "System.Runtime.Extensions": "4.3.0"
  748. },
  749. "compile": {
  750. "ref/netstandard1.6/_._": {
  751. "related": ".xml"
  752. }
  753. },
  754. "runtime": {
  755. "lib/netstandard1.6/System.Linq.dll": {}
  756. }
  757. },
  758. "System.Memory/4.6.0": {
  759. "type": "package",
  760. "compile": {
  761. "lib/netcoreapp2.1/_._": {}
  762. },
  763. "runtime": {
  764. "lib/netcoreapp2.1/_._": {}
  765. }
  766. },
  767. "System.Net.Http/4.3.2": {
  768. "type": "package",
  769. "dependencies": {
  770. "Microsoft.NETCore.Platforms": "1.1.0",
  771. "System.Collections": "4.3.0",
  772. "System.Diagnostics.Debug": "4.3.0",
  773. "System.Diagnostics.DiagnosticSource": "4.3.0",
  774. "System.Diagnostics.Tracing": "4.3.0",
  775. "System.Globalization": "4.3.0",
  776. "System.Globalization.Extensions": "4.3.0",
  777. "System.IO": "4.3.0",
  778. "System.IO.FileSystem": "4.3.0",
  779. "System.Net.Primitives": "4.3.0",
  780. "System.Resources.ResourceManager": "4.3.0",
  781. "System.Runtime": "4.3.0",
  782. "System.Runtime.Extensions": "4.3.0",
  783. "System.Runtime.Handles": "4.3.0",
  784. "System.Runtime.InteropServices": "4.3.0",
  785. "System.Security.Cryptography.Algorithms": "4.3.0",
  786. "System.Security.Cryptography.Encoding": "4.3.0",
  787. "System.Security.Cryptography.OpenSsl": "4.3.0",
  788. "System.Security.Cryptography.Primitives": "4.3.0",
  789. "System.Security.Cryptography.X509Certificates": "4.3.0",
  790. "System.Text.Encoding": "4.3.0",
  791. "System.Threading": "4.3.0",
  792. "System.Threading.Tasks": "4.3.0",
  793. "runtime.native.System": "4.3.0",
  794. "runtime.native.System.Net.Http": "4.3.0",
  795. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  796. },
  797. "compile": {
  798. "ref/netstandard1.3/System.Net.Http.dll": {}
  799. },
  800. "runtimeTargets": {
  801. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  802. "assetType": "runtime",
  803. "rid": "unix"
  804. },
  805. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  806. "assetType": "runtime",
  807. "rid": "win"
  808. }
  809. }
  810. },
  811. "System.Net.Primitives/4.3.0": {
  812. "type": "package",
  813. "dependencies": {
  814. "Microsoft.NETCore.Platforms": "1.1.0",
  815. "Microsoft.NETCore.Targets": "1.1.0",
  816. "System.Runtime": "4.3.0",
  817. "System.Runtime.Handles": "4.3.0"
  818. },
  819. "compile": {
  820. "ref/netstandard1.3/System.Net.Primitives.dll": {
  821. "related": ".xml"
  822. }
  823. }
  824. },
  825. "System.Numerics.Tensors/8.0.0": {
  826. "type": "package",
  827. "dependencies": {
  828. "Microsoft.Bcl.Numerics": "8.0.0",
  829. "System.Memory": "4.5.5"
  830. },
  831. "compile": {
  832. "lib/netstandard2.0/System.Numerics.Tensors.dll": {
  833. "related": ".xml"
  834. }
  835. },
  836. "runtime": {
  837. "lib/netstandard2.0/System.Numerics.Tensors.dll": {
  838. "related": ".xml"
  839. }
  840. },
  841. "build": {
  842. "buildTransitive/netcoreapp2.0/System.Numerics.Tensors.targets": {}
  843. }
  844. },
  845. "System.Reflection/4.3.0": {
  846. "type": "package",
  847. "dependencies": {
  848. "Microsoft.NETCore.Platforms": "1.1.0",
  849. "Microsoft.NETCore.Targets": "1.1.0",
  850. "System.IO": "4.3.0",
  851. "System.Reflection.Primitives": "4.3.0",
  852. "System.Runtime": "4.3.0"
  853. },
  854. "compile": {
  855. "ref/netstandard1.5/_._": {
  856. "related": ".xml"
  857. }
  858. }
  859. },
  860. "System.Reflection.Emit.Lightweight/4.7.0": {
  861. "type": "package",
  862. "compile": {
  863. "ref/netcoreapp2.0/_._": {}
  864. },
  865. "runtime": {
  866. "lib/netcoreapp2.0/_._": {}
  867. }
  868. },
  869. "System.Reflection.Primitives/4.3.0": {
  870. "type": "package",
  871. "dependencies": {
  872. "Microsoft.NETCore.Platforms": "1.1.0",
  873. "Microsoft.NETCore.Targets": "1.1.0",
  874. "System.Runtime": "4.3.0"
  875. },
  876. "compile": {
  877. "ref/netstandard1.0/_._": {
  878. "related": ".xml"
  879. }
  880. }
  881. },
  882. "System.Resources.ResourceManager/4.3.0": {
  883. "type": "package",
  884. "dependencies": {
  885. "Microsoft.NETCore.Platforms": "1.1.0",
  886. "Microsoft.NETCore.Targets": "1.1.0",
  887. "System.Globalization": "4.3.0",
  888. "System.Reflection": "4.3.0",
  889. "System.Runtime": "4.3.0"
  890. },
  891. "compile": {
  892. "ref/netstandard1.0/_._": {
  893. "related": ".xml"
  894. }
  895. }
  896. },
  897. "System.Runtime/4.3.0": {
  898. "type": "package",
  899. "dependencies": {
  900. "Microsoft.NETCore.Platforms": "1.1.0",
  901. "Microsoft.NETCore.Targets": "1.1.0"
  902. },
  903. "compile": {
  904. "ref/netstandard1.5/System.Runtime.dll": {
  905. "related": ".xml"
  906. }
  907. }
  908. },
  909. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  910. "type": "package",
  911. "compile": {
  912. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {
  913. "related": ".xml"
  914. }
  915. },
  916. "runtime": {
  917. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {
  918. "related": ".xml"
  919. }
  920. },
  921. "build": {
  922. "buildTransitive/netcoreapp3.1/_._": {}
  923. }
  924. },
  925. "System.Runtime.Extensions/4.3.0": {
  926. "type": "package",
  927. "dependencies": {
  928. "Microsoft.NETCore.Platforms": "1.1.0",
  929. "Microsoft.NETCore.Targets": "1.1.0",
  930. "System.Runtime": "4.3.0"
  931. },
  932. "compile": {
  933. "ref/netstandard1.5/_._": {
  934. "related": ".xml"
  935. }
  936. }
  937. },
  938. "System.Runtime.Handles/4.3.0": {
  939. "type": "package",
  940. "dependencies": {
  941. "Microsoft.NETCore.Platforms": "1.1.0",
  942. "Microsoft.NETCore.Targets": "1.1.0",
  943. "System.Runtime": "4.3.0"
  944. },
  945. "compile": {
  946. "ref/netstandard1.3/System.Runtime.Handles.dll": {
  947. "related": ".xml"
  948. }
  949. }
  950. },
  951. "System.Runtime.InteropServices/4.3.0": {
  952. "type": "package",
  953. "dependencies": {
  954. "Microsoft.NETCore.Platforms": "1.1.0",
  955. "Microsoft.NETCore.Targets": "1.1.0",
  956. "System.Reflection": "4.3.0",
  957. "System.Reflection.Primitives": "4.3.0",
  958. "System.Runtime": "4.3.0",
  959. "System.Runtime.Handles": "4.3.0"
  960. },
  961. "compile": {
  962. "ref/netcoreapp1.1/_._": {}
  963. }
  964. },
  965. "System.Runtime.Numerics/4.3.0": {
  966. "type": "package",
  967. "dependencies": {
  968. "System.Globalization": "4.3.0",
  969. "System.Resources.ResourceManager": "4.3.0",
  970. "System.Runtime": "4.3.0",
  971. "System.Runtime.Extensions": "4.3.0"
  972. },
  973. "compile": {
  974. "ref/netstandard1.1/_._": {
  975. "related": ".xml"
  976. }
  977. },
  978. "runtime": {
  979. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  980. }
  981. },
  982. "System.Security.Cryptography.Algorithms/4.3.0": {
  983. "type": "package",
  984. "dependencies": {
  985. "Microsoft.NETCore.Platforms": "1.1.0",
  986. "System.Collections": "4.3.0",
  987. "System.IO": "4.3.0",
  988. "System.Resources.ResourceManager": "4.3.0",
  989. "System.Runtime": "4.3.0",
  990. "System.Runtime.Extensions": "4.3.0",
  991. "System.Runtime.Handles": "4.3.0",
  992. "System.Runtime.InteropServices": "4.3.0",
  993. "System.Runtime.Numerics": "4.3.0",
  994. "System.Security.Cryptography.Encoding": "4.3.0",
  995. "System.Security.Cryptography.Primitives": "4.3.0",
  996. "System.Text.Encoding": "4.3.0",
  997. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  998. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  999. },
  1000. "compile": {
  1001. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  1002. },
  1003. "runtimeTargets": {
  1004. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  1005. "assetType": "runtime",
  1006. "rid": "osx"
  1007. },
  1008. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  1009. "assetType": "runtime",
  1010. "rid": "unix"
  1011. },
  1012. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  1013. "assetType": "runtime",
  1014. "rid": "win"
  1015. }
  1016. }
  1017. },
  1018. "System.Security.Cryptography.Cng/4.3.0": {
  1019. "type": "package",
  1020. "dependencies": {
  1021. "Microsoft.NETCore.Platforms": "1.1.0",
  1022. "System.IO": "4.3.0",
  1023. "System.Resources.ResourceManager": "4.3.0",
  1024. "System.Runtime": "4.3.0",
  1025. "System.Runtime.Extensions": "4.3.0",
  1026. "System.Runtime.Handles": "4.3.0",
  1027. "System.Runtime.InteropServices": "4.3.0",
  1028. "System.Security.Cryptography.Algorithms": "4.3.0",
  1029. "System.Security.Cryptography.Encoding": "4.3.0",
  1030. "System.Security.Cryptography.Primitives": "4.3.0",
  1031. "System.Text.Encoding": "4.3.0"
  1032. },
  1033. "compile": {
  1034. "ref/netstandard1.6/_._": {}
  1035. },
  1036. "runtimeTargets": {
  1037. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  1038. "assetType": "runtime",
  1039. "rid": "unix"
  1040. },
  1041. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  1042. "assetType": "runtime",
  1043. "rid": "win"
  1044. }
  1045. }
  1046. },
  1047. "System.Security.Cryptography.Csp/4.3.0": {
  1048. "type": "package",
  1049. "dependencies": {
  1050. "Microsoft.NETCore.Platforms": "1.1.0",
  1051. "System.IO": "4.3.0",
  1052. "System.Reflection": "4.3.0",
  1053. "System.Resources.ResourceManager": "4.3.0",
  1054. "System.Runtime": "4.3.0",
  1055. "System.Runtime.Extensions": "4.3.0",
  1056. "System.Runtime.Handles": "4.3.0",
  1057. "System.Runtime.InteropServices": "4.3.0",
  1058. "System.Security.Cryptography.Algorithms": "4.3.0",
  1059. "System.Security.Cryptography.Encoding": "4.3.0",
  1060. "System.Security.Cryptography.Primitives": "4.3.0",
  1061. "System.Text.Encoding": "4.3.0",
  1062. "System.Threading": "4.3.0"
  1063. },
  1064. "compile": {
  1065. "ref/netstandard1.3/_._": {}
  1066. },
  1067. "runtimeTargets": {
  1068. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  1069. "assetType": "runtime",
  1070. "rid": "unix"
  1071. },
  1072. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  1073. "assetType": "runtime",
  1074. "rid": "win"
  1075. }
  1076. }
  1077. },
  1078. "System.Security.Cryptography.Encoding/4.3.0": {
  1079. "type": "package",
  1080. "dependencies": {
  1081. "Microsoft.NETCore.Platforms": "1.1.0",
  1082. "System.Collections": "4.3.0",
  1083. "System.Collections.Concurrent": "4.3.0",
  1084. "System.Linq": "4.3.0",
  1085. "System.Resources.ResourceManager": "4.3.0",
  1086. "System.Runtime": "4.3.0",
  1087. "System.Runtime.Extensions": "4.3.0",
  1088. "System.Runtime.Handles": "4.3.0",
  1089. "System.Runtime.InteropServices": "4.3.0",
  1090. "System.Security.Cryptography.Primitives": "4.3.0",
  1091. "System.Text.Encoding": "4.3.0",
  1092. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1093. },
  1094. "compile": {
  1095. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  1096. "related": ".xml"
  1097. }
  1098. },
  1099. "runtimeTargets": {
  1100. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  1101. "assetType": "runtime",
  1102. "rid": "unix"
  1103. },
  1104. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  1105. "assetType": "runtime",
  1106. "rid": "win"
  1107. }
  1108. }
  1109. },
  1110. "System.Security.Cryptography.OpenSsl/4.3.0": {
  1111. "type": "package",
  1112. "dependencies": {
  1113. "System.Collections": "4.3.0",
  1114. "System.IO": "4.3.0",
  1115. "System.Resources.ResourceManager": "4.3.0",
  1116. "System.Runtime": "4.3.0",
  1117. "System.Runtime.Extensions": "4.3.0",
  1118. "System.Runtime.Handles": "4.3.0",
  1119. "System.Runtime.InteropServices": "4.3.0",
  1120. "System.Runtime.Numerics": "4.3.0",
  1121. "System.Security.Cryptography.Algorithms": "4.3.0",
  1122. "System.Security.Cryptography.Encoding": "4.3.0",
  1123. "System.Security.Cryptography.Primitives": "4.3.0",
  1124. "System.Text.Encoding": "4.3.0",
  1125. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1126. },
  1127. "compile": {
  1128. "ref/netstandard1.6/_._": {}
  1129. },
  1130. "runtime": {
  1131. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  1132. },
  1133. "runtimeTargets": {
  1134. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  1135. "assetType": "runtime",
  1136. "rid": "unix"
  1137. }
  1138. }
  1139. },
  1140. "System.Security.Cryptography.Primitives/4.3.0": {
  1141. "type": "package",
  1142. "dependencies": {
  1143. "System.Diagnostics.Debug": "4.3.0",
  1144. "System.Globalization": "4.3.0",
  1145. "System.IO": "4.3.0",
  1146. "System.Resources.ResourceManager": "4.3.0",
  1147. "System.Runtime": "4.3.0",
  1148. "System.Threading": "4.3.0",
  1149. "System.Threading.Tasks": "4.3.0"
  1150. },
  1151. "compile": {
  1152. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  1153. },
  1154. "runtime": {
  1155. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  1156. }
  1157. },
  1158. "System.Security.Cryptography.X509Certificates/4.3.0": {
  1159. "type": "package",
  1160. "dependencies": {
  1161. "Microsoft.NETCore.Platforms": "1.1.0",
  1162. "System.Collections": "4.3.0",
  1163. "System.Diagnostics.Debug": "4.3.0",
  1164. "System.Globalization": "4.3.0",
  1165. "System.Globalization.Calendars": "4.3.0",
  1166. "System.IO": "4.3.0",
  1167. "System.IO.FileSystem": "4.3.0",
  1168. "System.IO.FileSystem.Primitives": "4.3.0",
  1169. "System.Resources.ResourceManager": "4.3.0",
  1170. "System.Runtime": "4.3.0",
  1171. "System.Runtime.Extensions": "4.3.0",
  1172. "System.Runtime.Handles": "4.3.0",
  1173. "System.Runtime.InteropServices": "4.3.0",
  1174. "System.Runtime.Numerics": "4.3.0",
  1175. "System.Security.Cryptography.Algorithms": "4.3.0",
  1176. "System.Security.Cryptography.Cng": "4.3.0",
  1177. "System.Security.Cryptography.Csp": "4.3.0",
  1178. "System.Security.Cryptography.Encoding": "4.3.0",
  1179. "System.Security.Cryptography.OpenSsl": "4.3.0",
  1180. "System.Security.Cryptography.Primitives": "4.3.0",
  1181. "System.Text.Encoding": "4.3.0",
  1182. "System.Threading": "4.3.0",
  1183. "runtime.native.System": "4.3.0",
  1184. "runtime.native.System.Net.Http": "4.3.0",
  1185. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1186. },
  1187. "compile": {
  1188. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
  1189. "related": ".xml"
  1190. }
  1191. },
  1192. "runtimeTargets": {
  1193. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  1194. "assetType": "runtime",
  1195. "rid": "unix"
  1196. },
  1197. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  1198. "assetType": "runtime",
  1199. "rid": "win"
  1200. }
  1201. }
  1202. },
  1203. "System.Text.Encoding/4.3.0": {
  1204. "type": "package",
  1205. "dependencies": {
  1206. "Microsoft.NETCore.Platforms": "1.1.0",
  1207. "Microsoft.NETCore.Targets": "1.1.0",
  1208. "System.Runtime": "4.3.0"
  1209. },
  1210. "compile": {
  1211. "ref/netstandard1.3/System.Text.Encoding.dll": {
  1212. "related": ".xml"
  1213. }
  1214. }
  1215. },
  1216. "System.Threading/4.3.0": {
  1217. "type": "package",
  1218. "dependencies": {
  1219. "System.Runtime": "4.3.0",
  1220. "System.Threading.Tasks": "4.3.0"
  1221. },
  1222. "compile": {
  1223. "ref/netstandard1.3/_._": {
  1224. "related": ".xml"
  1225. }
  1226. },
  1227. "runtime": {
  1228. "lib/netstandard1.3/System.Threading.dll": {}
  1229. }
  1230. },
  1231. "System.Threading.Channels/8.0.0": {
  1232. "type": "package",
  1233. "compile": {
  1234. "lib/netstandard2.1/System.Threading.Channels.dll": {
  1235. "related": ".xml"
  1236. }
  1237. },
  1238. "runtime": {
  1239. "lib/netstandard2.1/System.Threading.Channels.dll": {
  1240. "related": ".xml"
  1241. }
  1242. },
  1243. "build": {
  1244. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets": {}
  1245. }
  1246. },
  1247. "System.Threading.Tasks/4.3.0": {
  1248. "type": "package",
  1249. "dependencies": {
  1250. "Microsoft.NETCore.Platforms": "1.1.0",
  1251. "Microsoft.NETCore.Targets": "1.1.0",
  1252. "System.Runtime": "4.3.0"
  1253. },
  1254. "compile": {
  1255. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  1256. "related": ".xml"
  1257. }
  1258. }
  1259. }
  1260. }
  1261. },
  1262. "libraries": {
  1263. "AdysTech.InfluxDB.Client.Net/0.15.0": {
  1264. "sha512": "QmCGYdKISLmfngXJFig8+qZQ9Sy4952yl/TGu07OQ6ZAazQ4bo3XSp5GvpNmfVw1YNk+smaAWc2u63par1hxXg==",
  1265. "type": "package",
  1266. "path": "adystech.influxdb.client.net/0.15.0",
  1267. "files": [
  1268. ".nupkg.metadata",
  1269. ".signature.p7s",
  1270. "adystech.influxdb.client.net.0.15.0.nupkg.sha512",
  1271. "adystech.influxdb.client.net.nuspec",
  1272. "lib/net46/AdysTech.InfluxDB.Client.Net.dll"
  1273. ]
  1274. },
  1275. "InfluxData.Net/8.0.1": {
  1276. "sha512": "xbeaiqlTx0YiTjxVXLr+RcpDQnTFRcDppkI1AzysRTTrhcDR9htkmJwtoUmhZ84gGW9/gdy7JeVzhD7zl1wOjg==",
  1277. "type": "package",
  1278. "path": "influxdata.net/8.0.1",
  1279. "files": [
  1280. ".nupkg.metadata",
  1281. ".signature.p7s",
  1282. "influxdata.net.8.0.1.nupkg.sha512",
  1283. "influxdata.net.nuspec",
  1284. "lib/net461/InfluxData.Net.Common.dll",
  1285. "lib/net461/InfluxData.Net.Common.dll.config",
  1286. "lib/net461/InfluxData.Net.Common.pdb",
  1287. "lib/net461/InfluxData.Net.InfluxDb.dll",
  1288. "lib/net461/InfluxData.Net.InfluxDb.dll.config",
  1289. "lib/net461/InfluxData.Net.InfluxDb.pdb",
  1290. "lib/net461/InfluxData.Net.Kapacitor.dll",
  1291. "lib/net461/InfluxData.Net.Kapacitor.dll.config",
  1292. "lib/net461/InfluxData.Net.Kapacitor.pdb",
  1293. "lib/net461/InfluxData.Net.dll",
  1294. "lib/net461/InfluxData.Net.dll.config",
  1295. "lib/net461/InfluxData.Net.pdb",
  1296. "lib/netstandard2.0/InfluxData.Net.Common.dll",
  1297. "lib/netstandard2.0/InfluxData.Net.Common.dll.config",
  1298. "lib/netstandard2.0/InfluxData.Net.Common.pdb",
  1299. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll",
  1300. "lib/netstandard2.0/InfluxData.Net.InfluxDb.dll.config",
  1301. "lib/netstandard2.0/InfluxData.Net.InfluxDb.pdb",
  1302. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll",
  1303. "lib/netstandard2.0/InfluxData.Net.Kapacitor.dll.config",
  1304. "lib/netstandard2.0/InfluxData.Net.Kapacitor.pdb",
  1305. "lib/netstandard2.0/InfluxData.Net.deps.json",
  1306. "lib/netstandard2.0/InfluxData.Net.dll",
  1307. "lib/netstandard2.0/InfluxData.Net.dll.config",
  1308. "lib/netstandard2.0/InfluxData.Net.pdb"
  1309. ]
  1310. },
  1311. "Microsoft.Bcl.Numerics/8.0.0": {
  1312. "sha512": "bguIQwjO3tTWLqB+Y4ez4iLJtsaGn5FBvUc8l1ghO3I+uxIjuOo41Bb8kNssXhgwg0EV7fqbKLSNjvGOS/NkEQ==",
  1313. "type": "package",
  1314. "path": "microsoft.bcl.numerics/8.0.0",
  1315. "files": [
  1316. ".nupkg.metadata",
  1317. ".signature.p7s",
  1318. "Icon.png",
  1319. "LICENSE.TXT",
  1320. "PACKAGE.md",
  1321. "THIRD-PARTY-NOTICES.TXT",
  1322. "buildTransitive/net461/Microsoft.Bcl.Numerics.targets",
  1323. "buildTransitive/net462/_._",
  1324. "lib/net462/Microsoft.Bcl.Numerics.dll",
  1325. "lib/net462/Microsoft.Bcl.Numerics.xml",
  1326. "lib/netstandard2.0/Microsoft.Bcl.Numerics.dll",
  1327. "lib/netstandard2.0/Microsoft.Bcl.Numerics.xml",
  1328. "lib/netstandard2.1/Microsoft.Bcl.Numerics.dll",
  1329. "lib/netstandard2.1/Microsoft.Bcl.Numerics.xml",
  1330. "microsoft.bcl.numerics.8.0.0.nupkg.sha512",
  1331. "microsoft.bcl.numerics.nuspec",
  1332. "useSharedDesignerContext.txt"
  1333. ]
  1334. },
  1335. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  1336. "sha512": "LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==",
  1337. "type": "package",
  1338. "path": "microsoft.extensions.apidescription.server/3.0.0",
  1339. "hasTools": true,
  1340. "files": [
  1341. ".nupkg.metadata",
  1342. ".signature.p7s",
  1343. "build/Microsoft.Extensions.ApiDescription.Server.props",
  1344. "build/Microsoft.Extensions.ApiDescription.Server.targets",
  1345. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props",
  1346. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets",
  1347. "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512",
  1348. "microsoft.extensions.apidescription.server.nuspec",
  1349. "tools/Newtonsoft.Json.dll",
  1350. "tools/dotnet-getdocument.deps.json",
  1351. "tools/dotnet-getdocument.dll",
  1352. "tools/dotnet-getdocument.runtimeconfig.json",
  1353. "tools/net461-x86/GetDocument.Insider.exe",
  1354. "tools/net461-x86/GetDocument.Insider.exe.config",
  1355. "tools/net461/GetDocument.Insider.exe",
  1356. "tools/net461/GetDocument.Insider.exe.config",
  1357. "tools/netcoreapp2.1/GetDocument.Insider.deps.json",
  1358. "tools/netcoreapp2.1/GetDocument.Insider.dll",
  1359. "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json"
  1360. ]
  1361. },
  1362. "Microsoft.ML/4.0.2": {
  1363. "sha512": "qY2VXqDTPB2QdVf344dT1XBisIQOIKmaRxIvgu1YUA9XRxv5mvnwuOxxlCJEBO106wIf9oFk8xsllMnlzbpRlQ==",
  1364. "type": "package",
  1365. "path": "microsoft.ml/4.0.2",
  1366. "files": [
  1367. ".nupkg.metadata",
  1368. ".signature.p7s",
  1369. "LICENSE",
  1370. "PACKAGE.md",
  1371. "THIRD-PARTY-NOTICES.TXT",
  1372. "build/netstandard2.0/Microsoft.ML.props",
  1373. "build/netstandard2.0/Microsoft.ML.targets",
  1374. "lib/netstandard2.0/Microsoft.ML.Core.dll",
  1375. "lib/netstandard2.0/Microsoft.ML.Core.xml",
  1376. "lib/netstandard2.0/Microsoft.ML.Data.dll",
  1377. "lib/netstandard2.0/Microsoft.ML.Data.xml",
  1378. "lib/netstandard2.0/Microsoft.ML.KMeansClustering.dll",
  1379. "lib/netstandard2.0/Microsoft.ML.KMeansClustering.xml",
  1380. "lib/netstandard2.0/Microsoft.ML.PCA.dll",
  1381. "lib/netstandard2.0/Microsoft.ML.PCA.xml",
  1382. "lib/netstandard2.0/Microsoft.ML.StandardTrainers.dll",
  1383. "lib/netstandard2.0/Microsoft.ML.StandardTrainers.xml",
  1384. "lib/netstandard2.0/Microsoft.ML.Transforms.dll",
  1385. "lib/netstandard2.0/Microsoft.ML.Transforms.xml",
  1386. "microsoft.ml.4.0.2.nupkg.sha512",
  1387. "microsoft.ml.nuspec",
  1388. "mlnetlogo.png",
  1389. "runtimes/linux-arm/native/libLdaNative.so",
  1390. "runtimes/linux-arm/native/libLdaNative.so.dbg",
  1391. "runtimes/linux-arm64/native/libLdaNative.so",
  1392. "runtimes/linux-arm64/native/libLdaNative.so.dbg",
  1393. "runtimes/linux-x64/native/libLdaNative.so",
  1394. "runtimes/linux-x64/native/libLdaNative.so.dbg",
  1395. "runtimes/osx-arm64/native/libLdaNative.dylib",
  1396. "runtimes/osx-arm64/native/libLdaNative.dylib.dwarf",
  1397. "runtimes/osx-x64/native/libLdaNative.dylib",
  1398. "runtimes/osx-x64/native/libLdaNative.dylib.dwarf",
  1399. "runtimes/win-arm64/native/LdaNative.dll",
  1400. "runtimes/win-x64/native/LdaNative.dll",
  1401. "runtimes/win-x86/native/LdaNative.dll"
  1402. ]
  1403. },
  1404. "Microsoft.ML.CpuMath/4.0.2": {
  1405. "sha512": "NMbatQ0tNRnMTB4u/hpNWlx9n9lDRRa220Vx78pXloy7Keiwv130SC7AnQyXwveeg6DUOIgk/qUuH3I6MLaD1w==",
  1406. "type": "package",
  1407. "path": "microsoft.ml.cpumath/4.0.2",
  1408. "files": [
  1409. ".nupkg.metadata",
  1410. ".signature.p7s",
  1411. "LICENSE",
  1412. "THIRD-PARTY-NOTICES.TXT",
  1413. "build/netstandard2.0/Microsoft.ML.CpuMath.props",
  1414. "lib/net6.0/Microsoft.ML.CpuMath.dll",
  1415. "lib/net6.0/Microsoft.ML.CpuMath.xml",
  1416. "lib/netstandard2.0/Microsoft.ML.CpuMath.dll",
  1417. "lib/netstandard2.0/Microsoft.ML.CpuMath.xml",
  1418. "microsoft.ml.cpumath.4.0.2.nupkg.sha512",
  1419. "microsoft.ml.cpumath.nuspec",
  1420. "mlnetlogo.png",
  1421. "runtimes/linux-arm/nativeassets/net6.0/_._",
  1422. "runtimes/linux-arm64/nativeassets/net6.0/_._",
  1423. "runtimes/linux-x64/nativeassets/net6.0/_._",
  1424. "runtimes/linux-x64/nativeassets/netstandard2.0/libCpuMathNative.so",
  1425. "runtimes/linux-x64/nativeassets/netstandard2.0/libCpuMathNative.so.dbg",
  1426. "runtimes/osx-arm64/nativeassets/net6.0/_._",
  1427. "runtimes/osx-x64/nativeassets/net6.0/_._",
  1428. "runtimes/osx-x64/nativeassets/netstandard2.0/libCpuMathNative.dylib",
  1429. "runtimes/osx-x64/nativeassets/netstandard2.0/libCpuMathNative.dylib.dwarf",
  1430. "runtimes/win-arm64/nativeassets/net6.0/_._",
  1431. "runtimes/win-x64/nativeassets/net6.0/_._",
  1432. "runtimes/win-x64/nativeassets/netstandard2.0/CpuMathNative.dll",
  1433. "runtimes/win-x86/nativeassets/net6.0/_._",
  1434. "runtimes/win-x86/nativeassets/netstandard2.0/CpuMathNative.dll"
  1435. ]
  1436. },
  1437. "Microsoft.ML.DataView/4.0.2": {
  1438. "sha512": "k8q9UwoCG5WpwnvPS3s46yNU+wkMgAC5F/8OELpPbozcyJw0DZL8WnpnL/mw7E218Ec4SpYz+nxL9P87eAdzmg==",
  1439. "type": "package",
  1440. "path": "microsoft.ml.dataview/4.0.2",
  1441. "files": [
  1442. ".nupkg.metadata",
  1443. ".signature.p7s",
  1444. "LICENSE",
  1445. "THIRD-PARTY-NOTICES.TXT",
  1446. "lib/netstandard2.0/Microsoft.ML.DataView.dll",
  1447. "lib/netstandard2.0/Microsoft.ML.DataView.xml",
  1448. "microsoft.ml.dataview.4.0.2.nupkg.sha512",
  1449. "microsoft.ml.dataview.nuspec",
  1450. "mlnetlogo.png"
  1451. ]
  1452. },
  1453. "Microsoft.NETCore.Platforms/1.1.0": {
  1454. "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
  1455. "type": "package",
  1456. "path": "microsoft.netcore.platforms/1.1.0",
  1457. "files": [
  1458. ".nupkg.metadata",
  1459. ".signature.p7s",
  1460. "ThirdPartyNotices.txt",
  1461. "dotnet_library_license.txt",
  1462. "lib/netstandard1.0/_._",
  1463. "microsoft.netcore.platforms.1.1.0.nupkg.sha512",
  1464. "microsoft.netcore.platforms.nuspec",
  1465. "runtime.json"
  1466. ]
  1467. },
  1468. "Microsoft.NETCore.Targets/1.1.0": {
  1469. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  1470. "type": "package",
  1471. "path": "microsoft.netcore.targets/1.1.0",
  1472. "files": [
  1473. ".nupkg.metadata",
  1474. ".signature.p7s",
  1475. "ThirdPartyNotices.txt",
  1476. "dotnet_library_license.txt",
  1477. "lib/netstandard1.0/_._",
  1478. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  1479. "microsoft.netcore.targets.nuspec",
  1480. "runtime.json"
  1481. ]
  1482. },
  1483. "Microsoft.OpenApi/1.2.3": {
  1484. "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==",
  1485. "type": "package",
  1486. "path": "microsoft.openapi/1.2.3",
  1487. "files": [
  1488. ".nupkg.metadata",
  1489. ".signature.p7s",
  1490. "lib/net46/Microsoft.OpenApi.dll",
  1491. "lib/net46/Microsoft.OpenApi.pdb",
  1492. "lib/net46/Microsoft.OpenApi.xml",
  1493. "lib/netstandard2.0/Microsoft.OpenApi.dll",
  1494. "lib/netstandard2.0/Microsoft.OpenApi.pdb",
  1495. "lib/netstandard2.0/Microsoft.OpenApi.xml",
  1496. "microsoft.openapi.1.2.3.nupkg.sha512",
  1497. "microsoft.openapi.nuspec"
  1498. ]
  1499. },
  1500. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.17.2": {
  1501. "sha512": "5daNXm8Hb016oETmuHXiW8jclmRR9CzM7XrOh2htYhQ/7AAYtqntZ1MrZkh09+JTtdjYdGsy2XIMPe9cg83x5w==",
  1502. "type": "package",
  1503. "path": "microsoft.visualstudio.azure.containers.tools.targets/1.17.2",
  1504. "hasTools": true,
  1505. "files": [
  1506. ".nupkg.metadata",
  1507. ".signature.p7s",
  1508. "CHANGELOG.md",
  1509. "EULA.md",
  1510. "ThirdPartyNotices.txt",
  1511. "build/Container.props",
  1512. "build/Container.targets",
  1513. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props",
  1514. "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets",
  1515. "build/Rules/GeneralBrowseObject.xaml",
  1516. "build/Rules/cs-CZ/GeneralBrowseObject.xaml",
  1517. "build/Rules/de-DE/GeneralBrowseObject.xaml",
  1518. "build/Rules/es-ES/GeneralBrowseObject.xaml",
  1519. "build/Rules/fr-FR/GeneralBrowseObject.xaml",
  1520. "build/Rules/it-IT/GeneralBrowseObject.xaml",
  1521. "build/Rules/ja-JP/GeneralBrowseObject.xaml",
  1522. "build/Rules/ko-KR/GeneralBrowseObject.xaml",
  1523. "build/Rules/pl-PL/GeneralBrowseObject.xaml",
  1524. "build/Rules/pt-BR/GeneralBrowseObject.xaml",
  1525. "build/Rules/ru-RU/GeneralBrowseObject.xaml",
  1526. "build/Rules/tr-TR/GeneralBrowseObject.xaml",
  1527. "build/Rules/zh-CN/GeneralBrowseObject.xaml",
  1528. "build/Rules/zh-TW/GeneralBrowseObject.xaml",
  1529. "build/ToolsTarget.props",
  1530. "build/ToolsTarget.targets",
  1531. "icon.png",
  1532. "microsoft.visualstudio.azure.containers.tools.targets.1.17.2.nupkg.sha512",
  1533. "microsoft.visualstudio.azure.containers.tools.targets.nuspec",
  1534. "tools/Microsoft.VisualStudio.Containers.Tools.Common.dll",
  1535. "tools/Microsoft.VisualStudio.Containers.Tools.Shared.dll",
  1536. "tools/Microsoft.VisualStudio.Containers.Tools.Tasks.dll",
  1537. "tools/Newtonsoft.Json.dll",
  1538. "tools/System.Security.Principal.Windows.dll",
  1539. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  1540. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  1541. "tools/cs/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  1542. "tools/de/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  1543. "tools/de/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  1544. "tools/de/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  1545. "tools/es/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  1546. "tools/es/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  1547. "tools/es/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  1548. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  1549. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  1550. "tools/fr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  1551. "tools/it/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  1552. "tools/it/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  1553. "tools/it/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  1554. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  1555. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  1556. "tools/ja/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  1557. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  1558. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  1559. "tools/ko/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  1560. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  1561. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  1562. "tools/pl/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  1563. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  1564. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  1565. "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  1566. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  1567. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  1568. "tools/ru/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  1569. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  1570. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  1571. "tools/tr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  1572. "tools/utils/KillProcess.exe",
  1573. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  1574. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  1575. "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
  1576. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
  1577. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
  1578. "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll"
  1579. ]
  1580. },
  1581. "Newtonsoft.Json/13.0.3": {
  1582. "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
  1583. "type": "package",
  1584. "path": "newtonsoft.json/13.0.3",
  1585. "files": [
  1586. ".nupkg.metadata",
  1587. ".signature.p7s",
  1588. "LICENSE.md",
  1589. "README.md",
  1590. "lib/net20/Newtonsoft.Json.dll",
  1591. "lib/net20/Newtonsoft.Json.xml",
  1592. "lib/net35/Newtonsoft.Json.dll",
  1593. "lib/net35/Newtonsoft.Json.xml",
  1594. "lib/net40/Newtonsoft.Json.dll",
  1595. "lib/net40/Newtonsoft.Json.xml",
  1596. "lib/net45/Newtonsoft.Json.dll",
  1597. "lib/net45/Newtonsoft.Json.xml",
  1598. "lib/net6.0/Newtonsoft.Json.dll",
  1599. "lib/net6.0/Newtonsoft.Json.xml",
  1600. "lib/netstandard1.0/Newtonsoft.Json.dll",
  1601. "lib/netstandard1.0/Newtonsoft.Json.xml",
  1602. "lib/netstandard1.3/Newtonsoft.Json.dll",
  1603. "lib/netstandard1.3/Newtonsoft.Json.xml",
  1604. "lib/netstandard2.0/Newtonsoft.Json.dll",
  1605. "lib/netstandard2.0/Newtonsoft.Json.xml",
  1606. "newtonsoft.json.13.0.3.nupkg.sha512",
  1607. "newtonsoft.json.nuspec",
  1608. "packageIcon.png"
  1609. ]
  1610. },
  1611. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1612. "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  1613. "type": "package",
  1614. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1615. "files": [
  1616. ".nupkg.metadata",
  1617. ".signature.p7s",
  1618. "ThirdPartyNotices.txt",
  1619. "dotnet_library_license.txt",
  1620. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  1621. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  1622. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  1623. ]
  1624. },
  1625. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1626. "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  1627. "type": "package",
  1628. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1629. "files": [
  1630. ".nupkg.metadata",
  1631. ".signature.p7s",
  1632. "ThirdPartyNotices.txt",
  1633. "dotnet_library_license.txt",
  1634. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  1635. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  1636. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  1637. ]
  1638. },
  1639. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1640. "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  1641. "type": "package",
  1642. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1643. "files": [
  1644. ".nupkg.metadata",
  1645. ".signature.p7s",
  1646. "ThirdPartyNotices.txt",
  1647. "dotnet_library_license.txt",
  1648. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  1649. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  1650. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  1651. ]
  1652. },
  1653. "runtime.native.System/4.3.0": {
  1654. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  1655. "type": "package",
  1656. "path": "runtime.native.system/4.3.0",
  1657. "files": [
  1658. ".nupkg.metadata",
  1659. ".signature.p7s",
  1660. "ThirdPartyNotices.txt",
  1661. "dotnet_library_license.txt",
  1662. "lib/netstandard1.0/_._",
  1663. "runtime.native.system.4.3.0.nupkg.sha512",
  1664. "runtime.native.system.nuspec"
  1665. ]
  1666. },
  1667. "runtime.native.System.Net.Http/4.3.0": {
  1668. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  1669. "type": "package",
  1670. "path": "runtime.native.system.net.http/4.3.0",
  1671. "files": [
  1672. ".nupkg.metadata",
  1673. ".signature.p7s",
  1674. "ThirdPartyNotices.txt",
  1675. "dotnet_library_license.txt",
  1676. "lib/netstandard1.0/_._",
  1677. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  1678. "runtime.native.system.net.http.nuspec"
  1679. ]
  1680. },
  1681. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1682. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  1683. "type": "package",
  1684. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  1685. "files": [
  1686. ".nupkg.metadata",
  1687. ".signature.p7s",
  1688. "ThirdPartyNotices.txt",
  1689. "dotnet_library_license.txt",
  1690. "lib/netstandard1.0/_._",
  1691. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  1692. "runtime.native.system.security.cryptography.apple.nuspec"
  1693. ]
  1694. },
  1695. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1696. "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  1697. "type": "package",
  1698. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  1699. "files": [
  1700. ".nupkg.metadata",
  1701. ".signature.p7s",
  1702. "ThirdPartyNotices.txt",
  1703. "dotnet_library_license.txt",
  1704. "lib/netstandard1.0/_._",
  1705. "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  1706. "runtime.native.system.security.cryptography.openssl.nuspec"
  1707. ]
  1708. },
  1709. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1710. "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  1711. "type": "package",
  1712. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1713. "files": [
  1714. ".nupkg.metadata",
  1715. ".signature.p7s",
  1716. "ThirdPartyNotices.txt",
  1717. "dotnet_library_license.txt",
  1718. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  1719. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  1720. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  1721. ]
  1722. },
  1723. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1724. "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  1725. "type": "package",
  1726. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1727. "files": [
  1728. ".nupkg.metadata",
  1729. ".signature.p7s",
  1730. "ThirdPartyNotices.txt",
  1731. "dotnet_library_license.txt",
  1732. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  1733. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  1734. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  1735. ]
  1736. },
  1737. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1738. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  1739. "type": "package",
  1740. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  1741. "files": [
  1742. ".nupkg.metadata",
  1743. ".signature.p7s",
  1744. "ThirdPartyNotices.txt",
  1745. "dotnet_library_license.txt",
  1746. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  1747. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  1748. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  1749. ]
  1750. },
  1751. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1752. "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  1753. "type": "package",
  1754. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1755. "files": [
  1756. ".nupkg.metadata",
  1757. ".signature.p7s",
  1758. "ThirdPartyNotices.txt",
  1759. "dotnet_library_license.txt",
  1760. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  1761. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  1762. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  1763. ]
  1764. },
  1765. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1766. "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  1767. "type": "package",
  1768. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1769. "files": [
  1770. ".nupkg.metadata",
  1771. ".signature.p7s",
  1772. "ThirdPartyNotices.txt",
  1773. "dotnet_library_license.txt",
  1774. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  1775. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  1776. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  1777. ]
  1778. },
  1779. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1780. "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  1781. "type": "package",
  1782. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1783. "files": [
  1784. ".nupkg.metadata",
  1785. ".signature.p7s",
  1786. "ThirdPartyNotices.txt",
  1787. "dotnet_library_license.txt",
  1788. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  1789. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  1790. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  1791. ]
  1792. },
  1793. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1794. "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  1795. "type": "package",
  1796. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1797. "files": [
  1798. ".nupkg.metadata",
  1799. ".signature.p7s",
  1800. "ThirdPartyNotices.txt",
  1801. "dotnet_library_license.txt",
  1802. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  1803. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  1804. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  1805. ]
  1806. },
  1807. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1808. "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  1809. "type": "package",
  1810. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1811. "files": [
  1812. ".nupkg.metadata",
  1813. ".signature.p7s",
  1814. "ThirdPartyNotices.txt",
  1815. "dotnet_library_license.txt",
  1816. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  1817. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  1818. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  1819. ]
  1820. },
  1821. "Swashbuckle.AspNetCore/5.6.3": {
  1822. "sha512": "UkL9GU0mfaA+7RwYjEaBFvAzL8qNQhNqAeV5uaWUu/Z+fVgvK9FHkGCpTXBqSQeIHuZaIElzxnLDdIqGzuCnVg==",
  1823. "type": "package",
  1824. "path": "swashbuckle.aspnetcore/5.6.3",
  1825. "files": [
  1826. ".nupkg.metadata",
  1827. ".signature.p7s",
  1828. "build/Swashbuckle.AspNetCore.props",
  1829. "swashbuckle.aspnetcore.5.6.3.nupkg.sha512",
  1830. "swashbuckle.aspnetcore.nuspec"
  1831. ]
  1832. },
  1833. "Swashbuckle.AspNetCore.Swagger/5.6.3": {
  1834. "sha512": "rn/MmLscjg6WSnTZabojx5DQYle2GjPanSPbCU3Kw8Hy72KyQR3uy8R1Aew5vpNALjfUFm2M/vwUtqdOlzw+GA==",
  1835. "type": "package",
  1836. "path": "swashbuckle.aspnetcore.swagger/5.6.3",
  1837. "files": [
  1838. ".nupkg.metadata",
  1839. ".signature.p7s",
  1840. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
  1841. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
  1842. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
  1843. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
  1844. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
  1845. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
  1846. "swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512",
  1847. "swashbuckle.aspnetcore.swagger.nuspec"
  1848. ]
  1849. },
  1850. "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": {
  1851. "sha512": "CkhVeod/iLd3ikVTDOwG5sym8BE5xbqGJ15iF3cC7ZPg2kEwDQL4a88xjkzsvC9oOB2ax6B0rK0EgRK+eOBX+w==",
  1852. "type": "package",
  1853. "path": "swashbuckle.aspnetcore.swaggergen/5.6.3",
  1854. "files": [
  1855. ".nupkg.metadata",
  1856. ".signature.p7s",
  1857. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  1858. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  1859. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  1860. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  1861. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  1862. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  1863. "swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512",
  1864. "swashbuckle.aspnetcore.swaggergen.nuspec"
  1865. ]
  1866. },
  1867. "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": {
  1868. "sha512": "BPvcPxQRMsYZ3HnYmGKRWDwX4Wo29WHh14Q6B10BB8Yfbbcza+agOC2UrBFA1EuaZuOsFLbp6E2+mqVNF/Je8A==",
  1869. "type": "package",
  1870. "path": "swashbuckle.aspnetcore.swaggerui/5.6.3",
  1871. "files": [
  1872. ".nupkg.metadata",
  1873. ".signature.p7s",
  1874. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  1875. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  1876. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  1877. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  1878. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  1879. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  1880. "swashbuckle.aspnetcore.swaggerui.5.6.3.nupkg.sha512",
  1881. "swashbuckle.aspnetcore.swaggerui.nuspec"
  1882. ]
  1883. },
  1884. "System.CodeDom/8.0.0": {
  1885. "sha512": "WTlRjL6KWIMr/pAaq3rYqh0TJlzpouaQ/W1eelssHgtlwHAH25jXTkUphTYx9HaIIf7XA6qs/0+YhtLEQRkJ+Q==",
  1886. "type": "package",
  1887. "path": "system.codedom/8.0.0",
  1888. "files": [
  1889. ".nupkg.metadata",
  1890. ".signature.p7s",
  1891. "Icon.png",
  1892. "LICENSE.TXT",
  1893. "THIRD-PARTY-NOTICES.TXT",
  1894. "buildTransitive/net461/System.CodeDom.targets",
  1895. "buildTransitive/net462/_._",
  1896. "buildTransitive/net6.0/_._",
  1897. "buildTransitive/netcoreapp2.0/System.CodeDom.targets",
  1898. "lib/net462/System.CodeDom.dll",
  1899. "lib/net462/System.CodeDom.xml",
  1900. "lib/net6.0/System.CodeDom.dll",
  1901. "lib/net6.0/System.CodeDom.xml",
  1902. "lib/net7.0/System.CodeDom.dll",
  1903. "lib/net7.0/System.CodeDom.xml",
  1904. "lib/net8.0/System.CodeDom.dll",
  1905. "lib/net8.0/System.CodeDom.xml",
  1906. "lib/netstandard2.0/System.CodeDom.dll",
  1907. "lib/netstandard2.0/System.CodeDom.xml",
  1908. "system.codedom.8.0.0.nupkg.sha512",
  1909. "system.codedom.nuspec",
  1910. "useSharedDesignerContext.txt"
  1911. ]
  1912. },
  1913. "System.Collections/4.3.0": {
  1914. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  1915. "type": "package",
  1916. "path": "system.collections/4.3.0",
  1917. "files": [
  1918. ".nupkg.metadata",
  1919. ".signature.p7s",
  1920. "ThirdPartyNotices.txt",
  1921. "dotnet_library_license.txt",
  1922. "lib/MonoAndroid10/_._",
  1923. "lib/MonoTouch10/_._",
  1924. "lib/net45/_._",
  1925. "lib/portable-net45+win8+wp8+wpa81/_._",
  1926. "lib/win8/_._",
  1927. "lib/wp80/_._",
  1928. "lib/wpa81/_._",
  1929. "lib/xamarinios10/_._",
  1930. "lib/xamarinmac20/_._",
  1931. "lib/xamarintvos10/_._",
  1932. "lib/xamarinwatchos10/_._",
  1933. "ref/MonoAndroid10/_._",
  1934. "ref/MonoTouch10/_._",
  1935. "ref/net45/_._",
  1936. "ref/netcore50/System.Collections.dll",
  1937. "ref/netcore50/System.Collections.xml",
  1938. "ref/netcore50/de/System.Collections.xml",
  1939. "ref/netcore50/es/System.Collections.xml",
  1940. "ref/netcore50/fr/System.Collections.xml",
  1941. "ref/netcore50/it/System.Collections.xml",
  1942. "ref/netcore50/ja/System.Collections.xml",
  1943. "ref/netcore50/ko/System.Collections.xml",
  1944. "ref/netcore50/ru/System.Collections.xml",
  1945. "ref/netcore50/zh-hans/System.Collections.xml",
  1946. "ref/netcore50/zh-hant/System.Collections.xml",
  1947. "ref/netstandard1.0/System.Collections.dll",
  1948. "ref/netstandard1.0/System.Collections.xml",
  1949. "ref/netstandard1.0/de/System.Collections.xml",
  1950. "ref/netstandard1.0/es/System.Collections.xml",
  1951. "ref/netstandard1.0/fr/System.Collections.xml",
  1952. "ref/netstandard1.0/it/System.Collections.xml",
  1953. "ref/netstandard1.0/ja/System.Collections.xml",
  1954. "ref/netstandard1.0/ko/System.Collections.xml",
  1955. "ref/netstandard1.0/ru/System.Collections.xml",
  1956. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  1957. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  1958. "ref/netstandard1.3/System.Collections.dll",
  1959. "ref/netstandard1.3/System.Collections.xml",
  1960. "ref/netstandard1.3/de/System.Collections.xml",
  1961. "ref/netstandard1.3/es/System.Collections.xml",
  1962. "ref/netstandard1.3/fr/System.Collections.xml",
  1963. "ref/netstandard1.3/it/System.Collections.xml",
  1964. "ref/netstandard1.3/ja/System.Collections.xml",
  1965. "ref/netstandard1.3/ko/System.Collections.xml",
  1966. "ref/netstandard1.3/ru/System.Collections.xml",
  1967. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  1968. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  1969. "ref/portable-net45+win8+wp8+wpa81/_._",
  1970. "ref/win8/_._",
  1971. "ref/wp80/_._",
  1972. "ref/wpa81/_._",
  1973. "ref/xamarinios10/_._",
  1974. "ref/xamarinmac20/_._",
  1975. "ref/xamarintvos10/_._",
  1976. "ref/xamarinwatchos10/_._",
  1977. "system.collections.4.3.0.nupkg.sha512",
  1978. "system.collections.nuspec"
  1979. ]
  1980. },
  1981. "System.Collections.Concurrent/4.3.0": {
  1982. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  1983. "type": "package",
  1984. "path": "system.collections.concurrent/4.3.0",
  1985. "files": [
  1986. ".nupkg.metadata",
  1987. ".signature.p7s",
  1988. "ThirdPartyNotices.txt",
  1989. "dotnet_library_license.txt",
  1990. "lib/MonoAndroid10/_._",
  1991. "lib/MonoTouch10/_._",
  1992. "lib/net45/_._",
  1993. "lib/netcore50/System.Collections.Concurrent.dll",
  1994. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  1995. "lib/portable-net45+win8+wpa81/_._",
  1996. "lib/win8/_._",
  1997. "lib/wpa81/_._",
  1998. "lib/xamarinios10/_._",
  1999. "lib/xamarinmac20/_._",
  2000. "lib/xamarintvos10/_._",
  2001. "lib/xamarinwatchos10/_._",
  2002. "ref/MonoAndroid10/_._",
  2003. "ref/MonoTouch10/_._",
  2004. "ref/net45/_._",
  2005. "ref/netcore50/System.Collections.Concurrent.dll",
  2006. "ref/netcore50/System.Collections.Concurrent.xml",
  2007. "ref/netcore50/de/System.Collections.Concurrent.xml",
  2008. "ref/netcore50/es/System.Collections.Concurrent.xml",
  2009. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  2010. "ref/netcore50/it/System.Collections.Concurrent.xml",
  2011. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  2012. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  2013. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  2014. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  2015. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  2016. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  2017. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  2018. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  2019. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  2020. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  2021. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  2022. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  2023. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  2024. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  2025. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  2026. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  2027. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  2028. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  2029. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  2030. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  2031. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  2032. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  2033. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  2034. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  2035. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  2036. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  2037. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  2038. "ref/portable-net45+win8+wpa81/_._",
  2039. "ref/win8/_._",
  2040. "ref/wpa81/_._",
  2041. "ref/xamarinios10/_._",
  2042. "ref/xamarinmac20/_._",
  2043. "ref/xamarintvos10/_._",
  2044. "ref/xamarinwatchos10/_._",
  2045. "system.collections.concurrent.4.3.0.nupkg.sha512",
  2046. "system.collections.concurrent.nuspec"
  2047. ]
  2048. },
  2049. "System.Collections.Immutable/8.0.0": {
  2050. "sha512": "AurL6Y5BA1WotzlEvVaIDpqzpIPvYnnldxru8oXJU2yFxFUy3+pNXjXd1ymO+RA0rq0+590Q8gaz2l3Sr7fmqg==",
  2051. "type": "package",
  2052. "path": "system.collections.immutable/8.0.0",
  2053. "files": [
  2054. ".nupkg.metadata",
  2055. ".signature.p7s",
  2056. "Icon.png",
  2057. "LICENSE.TXT",
  2058. "PACKAGE.md",
  2059. "THIRD-PARTY-NOTICES.TXT",
  2060. "buildTransitive/net461/System.Collections.Immutable.targets",
  2061. "buildTransitive/net462/_._",
  2062. "buildTransitive/net6.0/_._",
  2063. "buildTransitive/netcoreapp2.0/System.Collections.Immutable.targets",
  2064. "lib/net462/System.Collections.Immutable.dll",
  2065. "lib/net462/System.Collections.Immutable.xml",
  2066. "lib/net6.0/System.Collections.Immutable.dll",
  2067. "lib/net6.0/System.Collections.Immutable.xml",
  2068. "lib/net7.0/System.Collections.Immutable.dll",
  2069. "lib/net7.0/System.Collections.Immutable.xml",
  2070. "lib/net8.0/System.Collections.Immutable.dll",
  2071. "lib/net8.0/System.Collections.Immutable.xml",
  2072. "lib/netstandard2.0/System.Collections.Immutable.dll",
  2073. "lib/netstandard2.0/System.Collections.Immutable.xml",
  2074. "system.collections.immutable.8.0.0.nupkg.sha512",
  2075. "system.collections.immutable.nuspec",
  2076. "useSharedDesignerContext.txt"
  2077. ]
  2078. },
  2079. "System.Diagnostics.Debug/4.3.0": {
  2080. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  2081. "type": "package",
  2082. "path": "system.diagnostics.debug/4.3.0",
  2083. "files": [
  2084. ".nupkg.metadata",
  2085. ".signature.p7s",
  2086. "ThirdPartyNotices.txt",
  2087. "dotnet_library_license.txt",
  2088. "lib/MonoAndroid10/_._",
  2089. "lib/MonoTouch10/_._",
  2090. "lib/net45/_._",
  2091. "lib/portable-net45+win8+wp8+wpa81/_._",
  2092. "lib/win8/_._",
  2093. "lib/wp80/_._",
  2094. "lib/wpa81/_._",
  2095. "lib/xamarinios10/_._",
  2096. "lib/xamarinmac20/_._",
  2097. "lib/xamarintvos10/_._",
  2098. "lib/xamarinwatchos10/_._",
  2099. "ref/MonoAndroid10/_._",
  2100. "ref/MonoTouch10/_._",
  2101. "ref/net45/_._",
  2102. "ref/netcore50/System.Diagnostics.Debug.dll",
  2103. "ref/netcore50/System.Diagnostics.Debug.xml",
  2104. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  2105. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  2106. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  2107. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  2108. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  2109. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  2110. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  2111. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  2112. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  2113. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  2114. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  2115. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  2116. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  2117. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  2118. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  2119. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  2120. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  2121. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  2122. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  2123. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  2124. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  2125. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  2126. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  2127. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  2128. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  2129. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  2130. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  2131. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  2132. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  2133. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  2134. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  2135. "ref/portable-net45+win8+wp8+wpa81/_._",
  2136. "ref/win8/_._",
  2137. "ref/wp80/_._",
  2138. "ref/wpa81/_._",
  2139. "ref/xamarinios10/_._",
  2140. "ref/xamarinmac20/_._",
  2141. "ref/xamarintvos10/_._",
  2142. "ref/xamarinwatchos10/_._",
  2143. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  2144. "system.diagnostics.debug.nuspec"
  2145. ]
  2146. },
  2147. "System.Diagnostics.DiagnosticSource/4.3.0": {
  2148. "sha512": "tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==",
  2149. "type": "package",
  2150. "path": "system.diagnostics.diagnosticsource/4.3.0",
  2151. "files": [
  2152. ".nupkg.metadata",
  2153. ".signature.p7s",
  2154. "ThirdPartyNotices.txt",
  2155. "dotnet_library_license.txt",
  2156. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  2157. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  2158. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  2159. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  2160. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  2161. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  2162. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  2163. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  2164. "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512",
  2165. "system.diagnostics.diagnosticsource.nuspec"
  2166. ]
  2167. },
  2168. "System.Diagnostics.Tracing/4.3.0": {
  2169. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  2170. "type": "package",
  2171. "path": "system.diagnostics.tracing/4.3.0",
  2172. "files": [
  2173. ".nupkg.metadata",
  2174. ".signature.p7s",
  2175. "ThirdPartyNotices.txt",
  2176. "dotnet_library_license.txt",
  2177. "lib/MonoAndroid10/_._",
  2178. "lib/MonoTouch10/_._",
  2179. "lib/net45/_._",
  2180. "lib/net462/System.Diagnostics.Tracing.dll",
  2181. "lib/portable-net45+win8+wpa81/_._",
  2182. "lib/win8/_._",
  2183. "lib/wpa81/_._",
  2184. "lib/xamarinios10/_._",
  2185. "lib/xamarinmac20/_._",
  2186. "lib/xamarintvos10/_._",
  2187. "lib/xamarinwatchos10/_._",
  2188. "ref/MonoAndroid10/_._",
  2189. "ref/MonoTouch10/_._",
  2190. "ref/net45/_._",
  2191. "ref/net462/System.Diagnostics.Tracing.dll",
  2192. "ref/netcore50/System.Diagnostics.Tracing.dll",
  2193. "ref/netcore50/System.Diagnostics.Tracing.xml",
  2194. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  2195. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  2196. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  2197. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  2198. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  2199. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  2200. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  2201. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  2202. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  2203. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  2204. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  2205. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  2206. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  2207. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  2208. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  2209. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  2210. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  2211. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  2212. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  2213. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  2214. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  2215. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  2216. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  2217. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  2218. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  2219. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  2220. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  2221. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  2222. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  2223. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  2224. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  2225. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  2226. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  2227. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  2228. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  2229. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  2230. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  2231. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  2232. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  2233. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  2234. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  2235. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  2236. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  2237. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  2238. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  2239. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  2240. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  2241. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  2242. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  2243. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  2244. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  2245. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  2246. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  2247. "ref/portable-net45+win8+wpa81/_._",
  2248. "ref/win8/_._",
  2249. "ref/wpa81/_._",
  2250. "ref/xamarinios10/_._",
  2251. "ref/xamarinmac20/_._",
  2252. "ref/xamarintvos10/_._",
  2253. "ref/xamarinwatchos10/_._",
  2254. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  2255. "system.diagnostics.tracing.nuspec"
  2256. ]
  2257. },
  2258. "System.Globalization/4.3.0": {
  2259. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  2260. "type": "package",
  2261. "path": "system.globalization/4.3.0",
  2262. "files": [
  2263. ".nupkg.metadata",
  2264. ".signature.p7s",
  2265. "ThirdPartyNotices.txt",
  2266. "dotnet_library_license.txt",
  2267. "lib/MonoAndroid10/_._",
  2268. "lib/MonoTouch10/_._",
  2269. "lib/net45/_._",
  2270. "lib/portable-net45+win8+wp8+wpa81/_._",
  2271. "lib/win8/_._",
  2272. "lib/wp80/_._",
  2273. "lib/wpa81/_._",
  2274. "lib/xamarinios10/_._",
  2275. "lib/xamarinmac20/_._",
  2276. "lib/xamarintvos10/_._",
  2277. "lib/xamarinwatchos10/_._",
  2278. "ref/MonoAndroid10/_._",
  2279. "ref/MonoTouch10/_._",
  2280. "ref/net45/_._",
  2281. "ref/netcore50/System.Globalization.dll",
  2282. "ref/netcore50/System.Globalization.xml",
  2283. "ref/netcore50/de/System.Globalization.xml",
  2284. "ref/netcore50/es/System.Globalization.xml",
  2285. "ref/netcore50/fr/System.Globalization.xml",
  2286. "ref/netcore50/it/System.Globalization.xml",
  2287. "ref/netcore50/ja/System.Globalization.xml",
  2288. "ref/netcore50/ko/System.Globalization.xml",
  2289. "ref/netcore50/ru/System.Globalization.xml",
  2290. "ref/netcore50/zh-hans/System.Globalization.xml",
  2291. "ref/netcore50/zh-hant/System.Globalization.xml",
  2292. "ref/netstandard1.0/System.Globalization.dll",
  2293. "ref/netstandard1.0/System.Globalization.xml",
  2294. "ref/netstandard1.0/de/System.Globalization.xml",
  2295. "ref/netstandard1.0/es/System.Globalization.xml",
  2296. "ref/netstandard1.0/fr/System.Globalization.xml",
  2297. "ref/netstandard1.0/it/System.Globalization.xml",
  2298. "ref/netstandard1.0/ja/System.Globalization.xml",
  2299. "ref/netstandard1.0/ko/System.Globalization.xml",
  2300. "ref/netstandard1.0/ru/System.Globalization.xml",
  2301. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  2302. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  2303. "ref/netstandard1.3/System.Globalization.dll",
  2304. "ref/netstandard1.3/System.Globalization.xml",
  2305. "ref/netstandard1.3/de/System.Globalization.xml",
  2306. "ref/netstandard1.3/es/System.Globalization.xml",
  2307. "ref/netstandard1.3/fr/System.Globalization.xml",
  2308. "ref/netstandard1.3/it/System.Globalization.xml",
  2309. "ref/netstandard1.3/ja/System.Globalization.xml",
  2310. "ref/netstandard1.3/ko/System.Globalization.xml",
  2311. "ref/netstandard1.3/ru/System.Globalization.xml",
  2312. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  2313. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  2314. "ref/portable-net45+win8+wp8+wpa81/_._",
  2315. "ref/win8/_._",
  2316. "ref/wp80/_._",
  2317. "ref/wpa81/_._",
  2318. "ref/xamarinios10/_._",
  2319. "ref/xamarinmac20/_._",
  2320. "ref/xamarintvos10/_._",
  2321. "ref/xamarinwatchos10/_._",
  2322. "system.globalization.4.3.0.nupkg.sha512",
  2323. "system.globalization.nuspec"
  2324. ]
  2325. },
  2326. "System.Globalization.Calendars/4.3.0": {
  2327. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  2328. "type": "package",
  2329. "path": "system.globalization.calendars/4.3.0",
  2330. "files": [
  2331. ".nupkg.metadata",
  2332. ".signature.p7s",
  2333. "ThirdPartyNotices.txt",
  2334. "dotnet_library_license.txt",
  2335. "lib/MonoAndroid10/_._",
  2336. "lib/MonoTouch10/_._",
  2337. "lib/net46/System.Globalization.Calendars.dll",
  2338. "lib/xamarinios10/_._",
  2339. "lib/xamarinmac20/_._",
  2340. "lib/xamarintvos10/_._",
  2341. "lib/xamarinwatchos10/_._",
  2342. "ref/MonoAndroid10/_._",
  2343. "ref/MonoTouch10/_._",
  2344. "ref/net46/System.Globalization.Calendars.dll",
  2345. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  2346. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  2347. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  2348. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  2349. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  2350. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  2351. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  2352. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  2353. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  2354. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  2355. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  2356. "ref/xamarinios10/_._",
  2357. "ref/xamarinmac20/_._",
  2358. "ref/xamarintvos10/_._",
  2359. "ref/xamarinwatchos10/_._",
  2360. "system.globalization.calendars.4.3.0.nupkg.sha512",
  2361. "system.globalization.calendars.nuspec"
  2362. ]
  2363. },
  2364. "System.Globalization.Extensions/4.3.0": {
  2365. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  2366. "type": "package",
  2367. "path": "system.globalization.extensions/4.3.0",
  2368. "files": [
  2369. ".nupkg.metadata",
  2370. ".signature.p7s",
  2371. "ThirdPartyNotices.txt",
  2372. "dotnet_library_license.txt",
  2373. "lib/MonoAndroid10/_._",
  2374. "lib/MonoTouch10/_._",
  2375. "lib/net46/System.Globalization.Extensions.dll",
  2376. "lib/xamarinios10/_._",
  2377. "lib/xamarinmac20/_._",
  2378. "lib/xamarintvos10/_._",
  2379. "lib/xamarinwatchos10/_._",
  2380. "ref/MonoAndroid10/_._",
  2381. "ref/MonoTouch10/_._",
  2382. "ref/net46/System.Globalization.Extensions.dll",
  2383. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  2384. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  2385. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  2386. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  2387. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  2388. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  2389. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  2390. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  2391. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  2392. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  2393. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  2394. "ref/xamarinios10/_._",
  2395. "ref/xamarinmac20/_._",
  2396. "ref/xamarintvos10/_._",
  2397. "ref/xamarinwatchos10/_._",
  2398. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  2399. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  2400. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  2401. "system.globalization.extensions.4.3.0.nupkg.sha512",
  2402. "system.globalization.extensions.nuspec"
  2403. ]
  2404. },
  2405. "System.IO/4.3.0": {
  2406. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  2407. "type": "package",
  2408. "path": "system.io/4.3.0",
  2409. "files": [
  2410. ".nupkg.metadata",
  2411. ".signature.p7s",
  2412. "ThirdPartyNotices.txt",
  2413. "dotnet_library_license.txt",
  2414. "lib/MonoAndroid10/_._",
  2415. "lib/MonoTouch10/_._",
  2416. "lib/net45/_._",
  2417. "lib/net462/System.IO.dll",
  2418. "lib/portable-net45+win8+wp8+wpa81/_._",
  2419. "lib/win8/_._",
  2420. "lib/wp80/_._",
  2421. "lib/wpa81/_._",
  2422. "lib/xamarinios10/_._",
  2423. "lib/xamarinmac20/_._",
  2424. "lib/xamarintvos10/_._",
  2425. "lib/xamarinwatchos10/_._",
  2426. "ref/MonoAndroid10/_._",
  2427. "ref/MonoTouch10/_._",
  2428. "ref/net45/_._",
  2429. "ref/net462/System.IO.dll",
  2430. "ref/netcore50/System.IO.dll",
  2431. "ref/netcore50/System.IO.xml",
  2432. "ref/netcore50/de/System.IO.xml",
  2433. "ref/netcore50/es/System.IO.xml",
  2434. "ref/netcore50/fr/System.IO.xml",
  2435. "ref/netcore50/it/System.IO.xml",
  2436. "ref/netcore50/ja/System.IO.xml",
  2437. "ref/netcore50/ko/System.IO.xml",
  2438. "ref/netcore50/ru/System.IO.xml",
  2439. "ref/netcore50/zh-hans/System.IO.xml",
  2440. "ref/netcore50/zh-hant/System.IO.xml",
  2441. "ref/netstandard1.0/System.IO.dll",
  2442. "ref/netstandard1.0/System.IO.xml",
  2443. "ref/netstandard1.0/de/System.IO.xml",
  2444. "ref/netstandard1.0/es/System.IO.xml",
  2445. "ref/netstandard1.0/fr/System.IO.xml",
  2446. "ref/netstandard1.0/it/System.IO.xml",
  2447. "ref/netstandard1.0/ja/System.IO.xml",
  2448. "ref/netstandard1.0/ko/System.IO.xml",
  2449. "ref/netstandard1.0/ru/System.IO.xml",
  2450. "ref/netstandard1.0/zh-hans/System.IO.xml",
  2451. "ref/netstandard1.0/zh-hant/System.IO.xml",
  2452. "ref/netstandard1.3/System.IO.dll",
  2453. "ref/netstandard1.3/System.IO.xml",
  2454. "ref/netstandard1.3/de/System.IO.xml",
  2455. "ref/netstandard1.3/es/System.IO.xml",
  2456. "ref/netstandard1.3/fr/System.IO.xml",
  2457. "ref/netstandard1.3/it/System.IO.xml",
  2458. "ref/netstandard1.3/ja/System.IO.xml",
  2459. "ref/netstandard1.3/ko/System.IO.xml",
  2460. "ref/netstandard1.3/ru/System.IO.xml",
  2461. "ref/netstandard1.3/zh-hans/System.IO.xml",
  2462. "ref/netstandard1.3/zh-hant/System.IO.xml",
  2463. "ref/netstandard1.5/System.IO.dll",
  2464. "ref/netstandard1.5/System.IO.xml",
  2465. "ref/netstandard1.5/de/System.IO.xml",
  2466. "ref/netstandard1.5/es/System.IO.xml",
  2467. "ref/netstandard1.5/fr/System.IO.xml",
  2468. "ref/netstandard1.5/it/System.IO.xml",
  2469. "ref/netstandard1.5/ja/System.IO.xml",
  2470. "ref/netstandard1.5/ko/System.IO.xml",
  2471. "ref/netstandard1.5/ru/System.IO.xml",
  2472. "ref/netstandard1.5/zh-hans/System.IO.xml",
  2473. "ref/netstandard1.5/zh-hant/System.IO.xml",
  2474. "ref/portable-net45+win8+wp8+wpa81/_._",
  2475. "ref/win8/_._",
  2476. "ref/wp80/_._",
  2477. "ref/wpa81/_._",
  2478. "ref/xamarinios10/_._",
  2479. "ref/xamarinmac20/_._",
  2480. "ref/xamarintvos10/_._",
  2481. "ref/xamarinwatchos10/_._",
  2482. "system.io.4.3.0.nupkg.sha512",
  2483. "system.io.nuspec"
  2484. ]
  2485. },
  2486. "System.IO.FileSystem/4.3.0": {
  2487. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  2488. "type": "package",
  2489. "path": "system.io.filesystem/4.3.0",
  2490. "files": [
  2491. ".nupkg.metadata",
  2492. ".signature.p7s",
  2493. "ThirdPartyNotices.txt",
  2494. "dotnet_library_license.txt",
  2495. "lib/MonoAndroid10/_._",
  2496. "lib/MonoTouch10/_._",
  2497. "lib/net46/System.IO.FileSystem.dll",
  2498. "lib/xamarinios10/_._",
  2499. "lib/xamarinmac20/_._",
  2500. "lib/xamarintvos10/_._",
  2501. "lib/xamarinwatchos10/_._",
  2502. "ref/MonoAndroid10/_._",
  2503. "ref/MonoTouch10/_._",
  2504. "ref/net46/System.IO.FileSystem.dll",
  2505. "ref/netstandard1.3/System.IO.FileSystem.dll",
  2506. "ref/netstandard1.3/System.IO.FileSystem.xml",
  2507. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  2508. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  2509. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  2510. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  2511. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  2512. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  2513. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  2514. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  2515. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  2516. "ref/xamarinios10/_._",
  2517. "ref/xamarinmac20/_._",
  2518. "ref/xamarintvos10/_._",
  2519. "ref/xamarinwatchos10/_._",
  2520. "system.io.filesystem.4.3.0.nupkg.sha512",
  2521. "system.io.filesystem.nuspec"
  2522. ]
  2523. },
  2524. "System.IO.FileSystem.Primitives/4.3.0": {
  2525. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  2526. "type": "package",
  2527. "path": "system.io.filesystem.primitives/4.3.0",
  2528. "files": [
  2529. ".nupkg.metadata",
  2530. ".signature.p7s",
  2531. "ThirdPartyNotices.txt",
  2532. "dotnet_library_license.txt",
  2533. "lib/MonoAndroid10/_._",
  2534. "lib/MonoTouch10/_._",
  2535. "lib/net46/System.IO.FileSystem.Primitives.dll",
  2536. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  2537. "lib/xamarinios10/_._",
  2538. "lib/xamarinmac20/_._",
  2539. "lib/xamarintvos10/_._",
  2540. "lib/xamarinwatchos10/_._",
  2541. "ref/MonoAndroid10/_._",
  2542. "ref/MonoTouch10/_._",
  2543. "ref/net46/System.IO.FileSystem.Primitives.dll",
  2544. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  2545. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  2546. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  2547. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  2548. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  2549. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  2550. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  2551. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  2552. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  2553. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  2554. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  2555. "ref/xamarinios10/_._",
  2556. "ref/xamarinmac20/_._",
  2557. "ref/xamarintvos10/_._",
  2558. "ref/xamarinwatchos10/_._",
  2559. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  2560. "system.io.filesystem.primitives.nuspec"
  2561. ]
  2562. },
  2563. "System.Linq/4.3.0": {
  2564. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  2565. "type": "package",
  2566. "path": "system.linq/4.3.0",
  2567. "files": [
  2568. ".nupkg.metadata",
  2569. ".signature.p7s",
  2570. "ThirdPartyNotices.txt",
  2571. "dotnet_library_license.txt",
  2572. "lib/MonoAndroid10/_._",
  2573. "lib/MonoTouch10/_._",
  2574. "lib/net45/_._",
  2575. "lib/net463/System.Linq.dll",
  2576. "lib/netcore50/System.Linq.dll",
  2577. "lib/netstandard1.6/System.Linq.dll",
  2578. "lib/portable-net45+win8+wp8+wpa81/_._",
  2579. "lib/win8/_._",
  2580. "lib/wp80/_._",
  2581. "lib/wpa81/_._",
  2582. "lib/xamarinios10/_._",
  2583. "lib/xamarinmac20/_._",
  2584. "lib/xamarintvos10/_._",
  2585. "lib/xamarinwatchos10/_._",
  2586. "ref/MonoAndroid10/_._",
  2587. "ref/MonoTouch10/_._",
  2588. "ref/net45/_._",
  2589. "ref/net463/System.Linq.dll",
  2590. "ref/netcore50/System.Linq.dll",
  2591. "ref/netcore50/System.Linq.xml",
  2592. "ref/netcore50/de/System.Linq.xml",
  2593. "ref/netcore50/es/System.Linq.xml",
  2594. "ref/netcore50/fr/System.Linq.xml",
  2595. "ref/netcore50/it/System.Linq.xml",
  2596. "ref/netcore50/ja/System.Linq.xml",
  2597. "ref/netcore50/ko/System.Linq.xml",
  2598. "ref/netcore50/ru/System.Linq.xml",
  2599. "ref/netcore50/zh-hans/System.Linq.xml",
  2600. "ref/netcore50/zh-hant/System.Linq.xml",
  2601. "ref/netstandard1.0/System.Linq.dll",
  2602. "ref/netstandard1.0/System.Linq.xml",
  2603. "ref/netstandard1.0/de/System.Linq.xml",
  2604. "ref/netstandard1.0/es/System.Linq.xml",
  2605. "ref/netstandard1.0/fr/System.Linq.xml",
  2606. "ref/netstandard1.0/it/System.Linq.xml",
  2607. "ref/netstandard1.0/ja/System.Linq.xml",
  2608. "ref/netstandard1.0/ko/System.Linq.xml",
  2609. "ref/netstandard1.0/ru/System.Linq.xml",
  2610. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  2611. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  2612. "ref/netstandard1.6/System.Linq.dll",
  2613. "ref/netstandard1.6/System.Linq.xml",
  2614. "ref/netstandard1.6/de/System.Linq.xml",
  2615. "ref/netstandard1.6/es/System.Linq.xml",
  2616. "ref/netstandard1.6/fr/System.Linq.xml",
  2617. "ref/netstandard1.6/it/System.Linq.xml",
  2618. "ref/netstandard1.6/ja/System.Linq.xml",
  2619. "ref/netstandard1.6/ko/System.Linq.xml",
  2620. "ref/netstandard1.6/ru/System.Linq.xml",
  2621. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  2622. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  2623. "ref/portable-net45+win8+wp8+wpa81/_._",
  2624. "ref/win8/_._",
  2625. "ref/wp80/_._",
  2626. "ref/wpa81/_._",
  2627. "ref/xamarinios10/_._",
  2628. "ref/xamarinmac20/_._",
  2629. "ref/xamarintvos10/_._",
  2630. "ref/xamarinwatchos10/_._",
  2631. "system.linq.4.3.0.nupkg.sha512",
  2632. "system.linq.nuspec"
  2633. ]
  2634. },
  2635. "System.Memory/4.6.0": {
  2636. "sha512": "OEkbBQoklHngJ8UD8ez2AERSk2g+/qpAaSWWCBFbpH727HxDq5ydVkuncBaKcKfwRqXGWx64dS6G1SUScMsitg==",
  2637. "type": "package",
  2638. "path": "system.memory/4.6.0",
  2639. "files": [
  2640. ".nupkg.metadata",
  2641. ".signature.p7s",
  2642. "Icon.png",
  2643. "PACKAGE.md",
  2644. "buildTransitive/net461/System.Memory.targets",
  2645. "buildTransitive/net462/_._",
  2646. "lib/net462/System.Memory.dll",
  2647. "lib/net462/System.Memory.xml",
  2648. "lib/netcoreapp2.1/_._",
  2649. "lib/netstandard2.0/System.Memory.dll",
  2650. "lib/netstandard2.0/System.Memory.xml",
  2651. "system.memory.4.6.0.nupkg.sha512",
  2652. "system.memory.nuspec"
  2653. ]
  2654. },
  2655. "System.Net.Http/4.3.2": {
  2656. "sha512": "y7hv0o0weI0j0mvEcBOdt1F3CAADiWlcw3e54m8TfYiRmBPDIsHElx8QUPDlY4x6yWXKPGN0Z2TuXCTPgkm5WQ==",
  2657. "type": "package",
  2658. "path": "system.net.http/4.3.2",
  2659. "files": [
  2660. ".nupkg.metadata",
  2661. ".signature.p7s",
  2662. "ThirdPartyNotices.txt",
  2663. "dotnet_library_license.txt",
  2664. "lib/Xamarinmac20/_._",
  2665. "lib/monoandroid10/_._",
  2666. "lib/monotouch10/_._",
  2667. "lib/net45/_._",
  2668. "lib/net46/System.Net.Http.dll",
  2669. "lib/portable-net45+win8+wpa81/_._",
  2670. "lib/win8/_._",
  2671. "lib/wpa81/_._",
  2672. "lib/xamarinios10/_._",
  2673. "lib/xamarintvos10/_._",
  2674. "lib/xamarinwatchos10/_._",
  2675. "ref/Xamarinmac20/_._",
  2676. "ref/monoandroid10/_._",
  2677. "ref/monotouch10/_._",
  2678. "ref/net45/_._",
  2679. "ref/net46/System.Net.Http.dll",
  2680. "ref/netcore50/System.Net.Http.dll",
  2681. "ref/netstandard1.1/System.Net.Http.dll",
  2682. "ref/netstandard1.3/System.Net.Http.dll",
  2683. "ref/portable-net45+win8+wpa81/_._",
  2684. "ref/win8/_._",
  2685. "ref/wpa81/_._",
  2686. "ref/xamarinios10/_._",
  2687. "ref/xamarintvos10/_._",
  2688. "ref/xamarinwatchos10/_._",
  2689. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  2690. "runtimes/win/lib/net46/System.Net.Http.dll",
  2691. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  2692. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  2693. "system.net.http.4.3.2.nupkg.sha512",
  2694. "system.net.http.nuspec"
  2695. ]
  2696. },
  2697. "System.Net.Primitives/4.3.0": {
  2698. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  2699. "type": "package",
  2700. "path": "system.net.primitives/4.3.0",
  2701. "files": [
  2702. ".nupkg.metadata",
  2703. ".signature.p7s",
  2704. "ThirdPartyNotices.txt",
  2705. "dotnet_library_license.txt",
  2706. "lib/MonoAndroid10/_._",
  2707. "lib/MonoTouch10/_._",
  2708. "lib/net45/_._",
  2709. "lib/portable-net45+win8+wp8+wpa81/_._",
  2710. "lib/win8/_._",
  2711. "lib/wp80/_._",
  2712. "lib/wpa81/_._",
  2713. "lib/xamarinios10/_._",
  2714. "lib/xamarinmac20/_._",
  2715. "lib/xamarintvos10/_._",
  2716. "lib/xamarinwatchos10/_._",
  2717. "ref/MonoAndroid10/_._",
  2718. "ref/MonoTouch10/_._",
  2719. "ref/net45/_._",
  2720. "ref/netcore50/System.Net.Primitives.dll",
  2721. "ref/netcore50/System.Net.Primitives.xml",
  2722. "ref/netcore50/de/System.Net.Primitives.xml",
  2723. "ref/netcore50/es/System.Net.Primitives.xml",
  2724. "ref/netcore50/fr/System.Net.Primitives.xml",
  2725. "ref/netcore50/it/System.Net.Primitives.xml",
  2726. "ref/netcore50/ja/System.Net.Primitives.xml",
  2727. "ref/netcore50/ko/System.Net.Primitives.xml",
  2728. "ref/netcore50/ru/System.Net.Primitives.xml",
  2729. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  2730. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  2731. "ref/netstandard1.0/System.Net.Primitives.dll",
  2732. "ref/netstandard1.0/System.Net.Primitives.xml",
  2733. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  2734. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  2735. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  2736. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  2737. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  2738. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  2739. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  2740. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  2741. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  2742. "ref/netstandard1.1/System.Net.Primitives.dll",
  2743. "ref/netstandard1.1/System.Net.Primitives.xml",
  2744. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  2745. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  2746. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  2747. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  2748. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  2749. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  2750. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  2751. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  2752. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  2753. "ref/netstandard1.3/System.Net.Primitives.dll",
  2754. "ref/netstandard1.3/System.Net.Primitives.xml",
  2755. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  2756. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  2757. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  2758. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  2759. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  2760. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  2761. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  2762. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  2763. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  2764. "ref/portable-net45+win8+wp8+wpa81/_._",
  2765. "ref/win8/_._",
  2766. "ref/wp80/_._",
  2767. "ref/wpa81/_._",
  2768. "ref/xamarinios10/_._",
  2769. "ref/xamarinmac20/_._",
  2770. "ref/xamarintvos10/_._",
  2771. "ref/xamarinwatchos10/_._",
  2772. "system.net.primitives.4.3.0.nupkg.sha512",
  2773. "system.net.primitives.nuspec"
  2774. ]
  2775. },
  2776. "System.Numerics.Tensors/8.0.0": {
  2777. "sha512": "fhODzTe9ON9IzmRfyVeA6L8yXOciMtpq1YufkRVBliggcVKZE+XDxqIn46+yF4PWR6wNPuDpXtPpuY86VcKxUA==",
  2778. "type": "package",
  2779. "path": "system.numerics.tensors/8.0.0",
  2780. "files": [
  2781. ".nupkg.metadata",
  2782. ".signature.p7s",
  2783. "Icon.png",
  2784. "LICENSE.TXT",
  2785. "PACKAGE.md",
  2786. "THIRD-PARTY-NOTICES.TXT",
  2787. "buildTransitive/net461/System.Numerics.Tensors.targets",
  2788. "buildTransitive/net462/_._",
  2789. "buildTransitive/net6.0/_._",
  2790. "buildTransitive/netcoreapp2.0/System.Numerics.Tensors.targets",
  2791. "lib/net462/System.Numerics.Tensors.dll",
  2792. "lib/net462/System.Numerics.Tensors.xml",
  2793. "lib/net6.0/System.Numerics.Tensors.dll",
  2794. "lib/net6.0/System.Numerics.Tensors.xml",
  2795. "lib/net7.0/System.Numerics.Tensors.dll",
  2796. "lib/net7.0/System.Numerics.Tensors.xml",
  2797. "lib/net8.0/System.Numerics.Tensors.dll",
  2798. "lib/net8.0/System.Numerics.Tensors.xml",
  2799. "lib/netstandard2.0/System.Numerics.Tensors.dll",
  2800. "lib/netstandard2.0/System.Numerics.Tensors.xml",
  2801. "system.numerics.tensors.8.0.0.nupkg.sha512",
  2802. "system.numerics.tensors.nuspec",
  2803. "useSharedDesignerContext.txt"
  2804. ]
  2805. },
  2806. "System.Reflection/4.3.0": {
  2807. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  2808. "type": "package",
  2809. "path": "system.reflection/4.3.0",
  2810. "files": [
  2811. ".nupkg.metadata",
  2812. ".signature.p7s",
  2813. "ThirdPartyNotices.txt",
  2814. "dotnet_library_license.txt",
  2815. "lib/MonoAndroid10/_._",
  2816. "lib/MonoTouch10/_._",
  2817. "lib/net45/_._",
  2818. "lib/net462/System.Reflection.dll",
  2819. "lib/portable-net45+win8+wp8+wpa81/_._",
  2820. "lib/win8/_._",
  2821. "lib/wp80/_._",
  2822. "lib/wpa81/_._",
  2823. "lib/xamarinios10/_._",
  2824. "lib/xamarinmac20/_._",
  2825. "lib/xamarintvos10/_._",
  2826. "lib/xamarinwatchos10/_._",
  2827. "ref/MonoAndroid10/_._",
  2828. "ref/MonoTouch10/_._",
  2829. "ref/net45/_._",
  2830. "ref/net462/System.Reflection.dll",
  2831. "ref/netcore50/System.Reflection.dll",
  2832. "ref/netcore50/System.Reflection.xml",
  2833. "ref/netcore50/de/System.Reflection.xml",
  2834. "ref/netcore50/es/System.Reflection.xml",
  2835. "ref/netcore50/fr/System.Reflection.xml",
  2836. "ref/netcore50/it/System.Reflection.xml",
  2837. "ref/netcore50/ja/System.Reflection.xml",
  2838. "ref/netcore50/ko/System.Reflection.xml",
  2839. "ref/netcore50/ru/System.Reflection.xml",
  2840. "ref/netcore50/zh-hans/System.Reflection.xml",
  2841. "ref/netcore50/zh-hant/System.Reflection.xml",
  2842. "ref/netstandard1.0/System.Reflection.dll",
  2843. "ref/netstandard1.0/System.Reflection.xml",
  2844. "ref/netstandard1.0/de/System.Reflection.xml",
  2845. "ref/netstandard1.0/es/System.Reflection.xml",
  2846. "ref/netstandard1.0/fr/System.Reflection.xml",
  2847. "ref/netstandard1.0/it/System.Reflection.xml",
  2848. "ref/netstandard1.0/ja/System.Reflection.xml",
  2849. "ref/netstandard1.0/ko/System.Reflection.xml",
  2850. "ref/netstandard1.0/ru/System.Reflection.xml",
  2851. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  2852. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  2853. "ref/netstandard1.3/System.Reflection.dll",
  2854. "ref/netstandard1.3/System.Reflection.xml",
  2855. "ref/netstandard1.3/de/System.Reflection.xml",
  2856. "ref/netstandard1.3/es/System.Reflection.xml",
  2857. "ref/netstandard1.3/fr/System.Reflection.xml",
  2858. "ref/netstandard1.3/it/System.Reflection.xml",
  2859. "ref/netstandard1.3/ja/System.Reflection.xml",
  2860. "ref/netstandard1.3/ko/System.Reflection.xml",
  2861. "ref/netstandard1.3/ru/System.Reflection.xml",
  2862. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  2863. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  2864. "ref/netstandard1.5/System.Reflection.dll",
  2865. "ref/netstandard1.5/System.Reflection.xml",
  2866. "ref/netstandard1.5/de/System.Reflection.xml",
  2867. "ref/netstandard1.5/es/System.Reflection.xml",
  2868. "ref/netstandard1.5/fr/System.Reflection.xml",
  2869. "ref/netstandard1.5/it/System.Reflection.xml",
  2870. "ref/netstandard1.5/ja/System.Reflection.xml",
  2871. "ref/netstandard1.5/ko/System.Reflection.xml",
  2872. "ref/netstandard1.5/ru/System.Reflection.xml",
  2873. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  2874. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  2875. "ref/portable-net45+win8+wp8+wpa81/_._",
  2876. "ref/win8/_._",
  2877. "ref/wp80/_._",
  2878. "ref/wpa81/_._",
  2879. "ref/xamarinios10/_._",
  2880. "ref/xamarinmac20/_._",
  2881. "ref/xamarintvos10/_._",
  2882. "ref/xamarinwatchos10/_._",
  2883. "system.reflection.4.3.0.nupkg.sha512",
  2884. "system.reflection.nuspec"
  2885. ]
  2886. },
  2887. "System.Reflection.Emit.Lightweight/4.7.0": {
  2888. "sha512": "a4OLB4IITxAXJeV74MDx49Oq2+PsF6Sml54XAFv+2RyWwtDBcabzoxiiJRhdhx+gaohLh4hEGCLQyBozXoQPqA==",
  2889. "type": "package",
  2890. "path": "system.reflection.emit.lightweight/4.7.0",
  2891. "files": [
  2892. ".nupkg.metadata",
  2893. ".signature.p7s",
  2894. "LICENSE.TXT",
  2895. "THIRD-PARTY-NOTICES.TXT",
  2896. "lib/MonoAndroid10/_._",
  2897. "lib/MonoTouch10/_._",
  2898. "lib/net45/_._",
  2899. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  2900. "lib/netcoreapp2.0/_._",
  2901. "lib/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  2902. "lib/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  2903. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  2904. "lib/netstandard2.0/System.Reflection.Emit.Lightweight.dll",
  2905. "lib/netstandard2.0/System.Reflection.Emit.Lightweight.xml",
  2906. "lib/netstandard2.1/_._",
  2907. "lib/portable-net45+wp8/_._",
  2908. "lib/wp80/_._",
  2909. "lib/xamarinios10/_._",
  2910. "lib/xamarinmac20/_._",
  2911. "lib/xamarintvos10/_._",
  2912. "lib/xamarinwatchos10/_._",
  2913. "ref/MonoAndroid10/_._",
  2914. "ref/MonoTouch10/_._",
  2915. "ref/net45/_._",
  2916. "ref/netcoreapp2.0/_._",
  2917. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  2918. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  2919. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  2920. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  2921. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  2922. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  2923. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  2924. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  2925. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  2926. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  2927. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  2928. "ref/netstandard2.0/System.Reflection.Emit.Lightweight.dll",
  2929. "ref/netstandard2.0/System.Reflection.Emit.Lightweight.xml",
  2930. "ref/netstandard2.1/_._",
  2931. "ref/portable-net45+wp8/_._",
  2932. "ref/wp80/_._",
  2933. "ref/xamarinios10/_._",
  2934. "ref/xamarinmac20/_._",
  2935. "ref/xamarintvos10/_._",
  2936. "ref/xamarinwatchos10/_._",
  2937. "runtimes/aot/lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  2938. "runtimes/aot/lib/netcore50/System.Reflection.Emit.Lightweight.xml",
  2939. "system.reflection.emit.lightweight.4.7.0.nupkg.sha512",
  2940. "system.reflection.emit.lightweight.nuspec",
  2941. "useSharedDesignerContext.txt",
  2942. "version.txt"
  2943. ]
  2944. },
  2945. "System.Reflection.Primitives/4.3.0": {
  2946. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  2947. "type": "package",
  2948. "path": "system.reflection.primitives/4.3.0",
  2949. "files": [
  2950. ".nupkg.metadata",
  2951. ".signature.p7s",
  2952. "ThirdPartyNotices.txt",
  2953. "dotnet_library_license.txt",
  2954. "lib/MonoAndroid10/_._",
  2955. "lib/MonoTouch10/_._",
  2956. "lib/net45/_._",
  2957. "lib/portable-net45+win8+wp8+wpa81/_._",
  2958. "lib/win8/_._",
  2959. "lib/wp80/_._",
  2960. "lib/wpa81/_._",
  2961. "lib/xamarinios10/_._",
  2962. "lib/xamarinmac20/_._",
  2963. "lib/xamarintvos10/_._",
  2964. "lib/xamarinwatchos10/_._",
  2965. "ref/MonoAndroid10/_._",
  2966. "ref/MonoTouch10/_._",
  2967. "ref/net45/_._",
  2968. "ref/netcore50/System.Reflection.Primitives.dll",
  2969. "ref/netcore50/System.Reflection.Primitives.xml",
  2970. "ref/netcore50/de/System.Reflection.Primitives.xml",
  2971. "ref/netcore50/es/System.Reflection.Primitives.xml",
  2972. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  2973. "ref/netcore50/it/System.Reflection.Primitives.xml",
  2974. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  2975. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  2976. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  2977. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  2978. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  2979. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  2980. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  2981. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  2982. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  2983. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  2984. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  2985. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  2986. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  2987. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  2988. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  2989. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  2990. "ref/portable-net45+win8+wp8+wpa81/_._",
  2991. "ref/win8/_._",
  2992. "ref/wp80/_._",
  2993. "ref/wpa81/_._",
  2994. "ref/xamarinios10/_._",
  2995. "ref/xamarinmac20/_._",
  2996. "ref/xamarintvos10/_._",
  2997. "ref/xamarinwatchos10/_._",
  2998. "system.reflection.primitives.4.3.0.nupkg.sha512",
  2999. "system.reflection.primitives.nuspec"
  3000. ]
  3001. },
  3002. "System.Resources.ResourceManager/4.3.0": {
  3003. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  3004. "type": "package",
  3005. "path": "system.resources.resourcemanager/4.3.0",
  3006. "files": [
  3007. ".nupkg.metadata",
  3008. ".signature.p7s",
  3009. "ThirdPartyNotices.txt",
  3010. "dotnet_library_license.txt",
  3011. "lib/MonoAndroid10/_._",
  3012. "lib/MonoTouch10/_._",
  3013. "lib/net45/_._",
  3014. "lib/portable-net45+win8+wp8+wpa81/_._",
  3015. "lib/win8/_._",
  3016. "lib/wp80/_._",
  3017. "lib/wpa81/_._",
  3018. "lib/xamarinios10/_._",
  3019. "lib/xamarinmac20/_._",
  3020. "lib/xamarintvos10/_._",
  3021. "lib/xamarinwatchos10/_._",
  3022. "ref/MonoAndroid10/_._",
  3023. "ref/MonoTouch10/_._",
  3024. "ref/net45/_._",
  3025. "ref/netcore50/System.Resources.ResourceManager.dll",
  3026. "ref/netcore50/System.Resources.ResourceManager.xml",
  3027. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  3028. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  3029. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  3030. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  3031. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  3032. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  3033. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  3034. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  3035. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  3036. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  3037. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  3038. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  3039. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  3040. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  3041. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  3042. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  3043. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  3044. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  3045. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  3046. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  3047. "ref/portable-net45+win8+wp8+wpa81/_._",
  3048. "ref/win8/_._",
  3049. "ref/wp80/_._",
  3050. "ref/wpa81/_._",
  3051. "ref/xamarinios10/_._",
  3052. "ref/xamarinmac20/_._",
  3053. "ref/xamarintvos10/_._",
  3054. "ref/xamarinwatchos10/_._",
  3055. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  3056. "system.resources.resourcemanager.nuspec"
  3057. ]
  3058. },
  3059. "System.Runtime/4.3.0": {
  3060. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  3061. "type": "package",
  3062. "path": "system.runtime/4.3.0",
  3063. "files": [
  3064. ".nupkg.metadata",
  3065. ".signature.p7s",
  3066. "ThirdPartyNotices.txt",
  3067. "dotnet_library_license.txt",
  3068. "lib/MonoAndroid10/_._",
  3069. "lib/MonoTouch10/_._",
  3070. "lib/net45/_._",
  3071. "lib/net462/System.Runtime.dll",
  3072. "lib/portable-net45+win8+wp80+wpa81/_._",
  3073. "lib/win8/_._",
  3074. "lib/wp80/_._",
  3075. "lib/wpa81/_._",
  3076. "lib/xamarinios10/_._",
  3077. "lib/xamarinmac20/_._",
  3078. "lib/xamarintvos10/_._",
  3079. "lib/xamarinwatchos10/_._",
  3080. "ref/MonoAndroid10/_._",
  3081. "ref/MonoTouch10/_._",
  3082. "ref/net45/_._",
  3083. "ref/net462/System.Runtime.dll",
  3084. "ref/netcore50/System.Runtime.dll",
  3085. "ref/netcore50/System.Runtime.xml",
  3086. "ref/netcore50/de/System.Runtime.xml",
  3087. "ref/netcore50/es/System.Runtime.xml",
  3088. "ref/netcore50/fr/System.Runtime.xml",
  3089. "ref/netcore50/it/System.Runtime.xml",
  3090. "ref/netcore50/ja/System.Runtime.xml",
  3091. "ref/netcore50/ko/System.Runtime.xml",
  3092. "ref/netcore50/ru/System.Runtime.xml",
  3093. "ref/netcore50/zh-hans/System.Runtime.xml",
  3094. "ref/netcore50/zh-hant/System.Runtime.xml",
  3095. "ref/netstandard1.0/System.Runtime.dll",
  3096. "ref/netstandard1.0/System.Runtime.xml",
  3097. "ref/netstandard1.0/de/System.Runtime.xml",
  3098. "ref/netstandard1.0/es/System.Runtime.xml",
  3099. "ref/netstandard1.0/fr/System.Runtime.xml",
  3100. "ref/netstandard1.0/it/System.Runtime.xml",
  3101. "ref/netstandard1.0/ja/System.Runtime.xml",
  3102. "ref/netstandard1.0/ko/System.Runtime.xml",
  3103. "ref/netstandard1.0/ru/System.Runtime.xml",
  3104. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  3105. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  3106. "ref/netstandard1.2/System.Runtime.dll",
  3107. "ref/netstandard1.2/System.Runtime.xml",
  3108. "ref/netstandard1.2/de/System.Runtime.xml",
  3109. "ref/netstandard1.2/es/System.Runtime.xml",
  3110. "ref/netstandard1.2/fr/System.Runtime.xml",
  3111. "ref/netstandard1.2/it/System.Runtime.xml",
  3112. "ref/netstandard1.2/ja/System.Runtime.xml",
  3113. "ref/netstandard1.2/ko/System.Runtime.xml",
  3114. "ref/netstandard1.2/ru/System.Runtime.xml",
  3115. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  3116. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  3117. "ref/netstandard1.3/System.Runtime.dll",
  3118. "ref/netstandard1.3/System.Runtime.xml",
  3119. "ref/netstandard1.3/de/System.Runtime.xml",
  3120. "ref/netstandard1.3/es/System.Runtime.xml",
  3121. "ref/netstandard1.3/fr/System.Runtime.xml",
  3122. "ref/netstandard1.3/it/System.Runtime.xml",
  3123. "ref/netstandard1.3/ja/System.Runtime.xml",
  3124. "ref/netstandard1.3/ko/System.Runtime.xml",
  3125. "ref/netstandard1.3/ru/System.Runtime.xml",
  3126. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  3127. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  3128. "ref/netstandard1.5/System.Runtime.dll",
  3129. "ref/netstandard1.5/System.Runtime.xml",
  3130. "ref/netstandard1.5/de/System.Runtime.xml",
  3131. "ref/netstandard1.5/es/System.Runtime.xml",
  3132. "ref/netstandard1.5/fr/System.Runtime.xml",
  3133. "ref/netstandard1.5/it/System.Runtime.xml",
  3134. "ref/netstandard1.5/ja/System.Runtime.xml",
  3135. "ref/netstandard1.5/ko/System.Runtime.xml",
  3136. "ref/netstandard1.5/ru/System.Runtime.xml",
  3137. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  3138. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  3139. "ref/portable-net45+win8+wp80+wpa81/_._",
  3140. "ref/win8/_._",
  3141. "ref/wp80/_._",
  3142. "ref/wpa81/_._",
  3143. "ref/xamarinios10/_._",
  3144. "ref/xamarinmac20/_._",
  3145. "ref/xamarintvos10/_._",
  3146. "ref/xamarinwatchos10/_._",
  3147. "system.runtime.4.3.0.nupkg.sha512",
  3148. "system.runtime.nuspec"
  3149. ]
  3150. },
  3151. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  3152. "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  3153. "type": "package",
  3154. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  3155. "files": [
  3156. ".nupkg.metadata",
  3157. ".signature.p7s",
  3158. "Icon.png",
  3159. "LICENSE.TXT",
  3160. "THIRD-PARTY-NOTICES.TXT",
  3161. "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
  3162. "buildTransitive/netcoreapp3.1/_._",
  3163. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
  3164. "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
  3165. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
  3166. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
  3167. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
  3168. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
  3169. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  3170. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  3171. "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
  3172. "system.runtime.compilerservices.unsafe.nuspec",
  3173. "useSharedDesignerContext.txt"
  3174. ]
  3175. },
  3176. "System.Runtime.Extensions/4.3.0": {
  3177. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  3178. "type": "package",
  3179. "path": "system.runtime.extensions/4.3.0",
  3180. "files": [
  3181. ".nupkg.metadata",
  3182. ".signature.p7s",
  3183. "ThirdPartyNotices.txt",
  3184. "dotnet_library_license.txt",
  3185. "lib/MonoAndroid10/_._",
  3186. "lib/MonoTouch10/_._",
  3187. "lib/net45/_._",
  3188. "lib/net462/System.Runtime.Extensions.dll",
  3189. "lib/portable-net45+win8+wp8+wpa81/_._",
  3190. "lib/win8/_._",
  3191. "lib/wp80/_._",
  3192. "lib/wpa81/_._",
  3193. "lib/xamarinios10/_._",
  3194. "lib/xamarinmac20/_._",
  3195. "lib/xamarintvos10/_._",
  3196. "lib/xamarinwatchos10/_._",
  3197. "ref/MonoAndroid10/_._",
  3198. "ref/MonoTouch10/_._",
  3199. "ref/net45/_._",
  3200. "ref/net462/System.Runtime.Extensions.dll",
  3201. "ref/netcore50/System.Runtime.Extensions.dll",
  3202. "ref/netcore50/System.Runtime.Extensions.xml",
  3203. "ref/netcore50/de/System.Runtime.Extensions.xml",
  3204. "ref/netcore50/es/System.Runtime.Extensions.xml",
  3205. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  3206. "ref/netcore50/it/System.Runtime.Extensions.xml",
  3207. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  3208. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  3209. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  3210. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  3211. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  3212. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  3213. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  3214. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  3215. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  3216. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  3217. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  3218. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  3219. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  3220. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  3221. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  3222. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  3223. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  3224. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  3225. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  3226. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  3227. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  3228. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  3229. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  3230. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  3231. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  3232. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  3233. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  3234. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  3235. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  3236. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  3237. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  3238. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  3239. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  3240. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  3241. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  3242. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  3243. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  3244. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  3245. "ref/portable-net45+win8+wp8+wpa81/_._",
  3246. "ref/win8/_._",
  3247. "ref/wp80/_._",
  3248. "ref/wpa81/_._",
  3249. "ref/xamarinios10/_._",
  3250. "ref/xamarinmac20/_._",
  3251. "ref/xamarintvos10/_._",
  3252. "ref/xamarinwatchos10/_._",
  3253. "system.runtime.extensions.4.3.0.nupkg.sha512",
  3254. "system.runtime.extensions.nuspec"
  3255. ]
  3256. },
  3257. "System.Runtime.Handles/4.3.0": {
  3258. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  3259. "type": "package",
  3260. "path": "system.runtime.handles/4.3.0",
  3261. "files": [
  3262. ".nupkg.metadata",
  3263. ".signature.p7s",
  3264. "ThirdPartyNotices.txt",
  3265. "dotnet_library_license.txt",
  3266. "lib/MonoAndroid10/_._",
  3267. "lib/MonoTouch10/_._",
  3268. "lib/net46/_._",
  3269. "lib/xamarinios10/_._",
  3270. "lib/xamarinmac20/_._",
  3271. "lib/xamarintvos10/_._",
  3272. "lib/xamarinwatchos10/_._",
  3273. "ref/MonoAndroid10/_._",
  3274. "ref/MonoTouch10/_._",
  3275. "ref/net46/_._",
  3276. "ref/netstandard1.3/System.Runtime.Handles.dll",
  3277. "ref/netstandard1.3/System.Runtime.Handles.xml",
  3278. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  3279. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  3280. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  3281. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  3282. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  3283. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  3284. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  3285. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  3286. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  3287. "ref/xamarinios10/_._",
  3288. "ref/xamarinmac20/_._",
  3289. "ref/xamarintvos10/_._",
  3290. "ref/xamarinwatchos10/_._",
  3291. "system.runtime.handles.4.3.0.nupkg.sha512",
  3292. "system.runtime.handles.nuspec"
  3293. ]
  3294. },
  3295. "System.Runtime.InteropServices/4.3.0": {
  3296. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  3297. "type": "package",
  3298. "path": "system.runtime.interopservices/4.3.0",
  3299. "files": [
  3300. ".nupkg.metadata",
  3301. ".signature.p7s",
  3302. "ThirdPartyNotices.txt",
  3303. "dotnet_library_license.txt",
  3304. "lib/MonoAndroid10/_._",
  3305. "lib/MonoTouch10/_._",
  3306. "lib/net45/_._",
  3307. "lib/net462/System.Runtime.InteropServices.dll",
  3308. "lib/net463/System.Runtime.InteropServices.dll",
  3309. "lib/portable-net45+win8+wpa81/_._",
  3310. "lib/win8/_._",
  3311. "lib/wpa81/_._",
  3312. "lib/xamarinios10/_._",
  3313. "lib/xamarinmac20/_._",
  3314. "lib/xamarintvos10/_._",
  3315. "lib/xamarinwatchos10/_._",
  3316. "ref/MonoAndroid10/_._",
  3317. "ref/MonoTouch10/_._",
  3318. "ref/net45/_._",
  3319. "ref/net462/System.Runtime.InteropServices.dll",
  3320. "ref/net463/System.Runtime.InteropServices.dll",
  3321. "ref/netcore50/System.Runtime.InteropServices.dll",
  3322. "ref/netcore50/System.Runtime.InteropServices.xml",
  3323. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  3324. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  3325. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  3326. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  3327. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  3328. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  3329. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  3330. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  3331. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  3332. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  3333. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  3334. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  3335. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  3336. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  3337. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  3338. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  3339. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  3340. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  3341. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  3342. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  3343. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  3344. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  3345. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  3346. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  3347. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  3348. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  3349. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  3350. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  3351. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  3352. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  3353. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  3354. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  3355. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  3356. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  3357. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  3358. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  3359. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  3360. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  3361. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  3362. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  3363. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  3364. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  3365. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  3366. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  3367. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  3368. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  3369. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  3370. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  3371. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  3372. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  3373. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  3374. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  3375. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  3376. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  3377. "ref/portable-net45+win8+wpa81/_._",
  3378. "ref/win8/_._",
  3379. "ref/wpa81/_._",
  3380. "ref/xamarinios10/_._",
  3381. "ref/xamarinmac20/_._",
  3382. "ref/xamarintvos10/_._",
  3383. "ref/xamarinwatchos10/_._",
  3384. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  3385. "system.runtime.interopservices.nuspec"
  3386. ]
  3387. },
  3388. "System.Runtime.Numerics/4.3.0": {
  3389. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  3390. "type": "package",
  3391. "path": "system.runtime.numerics/4.3.0",
  3392. "files": [
  3393. ".nupkg.metadata",
  3394. ".signature.p7s",
  3395. "ThirdPartyNotices.txt",
  3396. "dotnet_library_license.txt",
  3397. "lib/MonoAndroid10/_._",
  3398. "lib/MonoTouch10/_._",
  3399. "lib/net45/_._",
  3400. "lib/netcore50/System.Runtime.Numerics.dll",
  3401. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  3402. "lib/portable-net45+win8+wpa81/_._",
  3403. "lib/win8/_._",
  3404. "lib/wpa81/_._",
  3405. "lib/xamarinios10/_._",
  3406. "lib/xamarinmac20/_._",
  3407. "lib/xamarintvos10/_._",
  3408. "lib/xamarinwatchos10/_._",
  3409. "ref/MonoAndroid10/_._",
  3410. "ref/MonoTouch10/_._",
  3411. "ref/net45/_._",
  3412. "ref/netcore50/System.Runtime.Numerics.dll",
  3413. "ref/netcore50/System.Runtime.Numerics.xml",
  3414. "ref/netcore50/de/System.Runtime.Numerics.xml",
  3415. "ref/netcore50/es/System.Runtime.Numerics.xml",
  3416. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  3417. "ref/netcore50/it/System.Runtime.Numerics.xml",
  3418. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  3419. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  3420. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  3421. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  3422. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  3423. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  3424. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  3425. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  3426. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  3427. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  3428. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  3429. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  3430. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  3431. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  3432. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  3433. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  3434. "ref/portable-net45+win8+wpa81/_._",
  3435. "ref/win8/_._",
  3436. "ref/wpa81/_._",
  3437. "ref/xamarinios10/_._",
  3438. "ref/xamarinmac20/_._",
  3439. "ref/xamarintvos10/_._",
  3440. "ref/xamarinwatchos10/_._",
  3441. "system.runtime.numerics.4.3.0.nupkg.sha512",
  3442. "system.runtime.numerics.nuspec"
  3443. ]
  3444. },
  3445. "System.Security.Cryptography.Algorithms/4.3.0": {
  3446. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  3447. "type": "package",
  3448. "path": "system.security.cryptography.algorithms/4.3.0",
  3449. "files": [
  3450. ".nupkg.metadata",
  3451. ".signature.p7s",
  3452. "ThirdPartyNotices.txt",
  3453. "dotnet_library_license.txt",
  3454. "lib/MonoAndroid10/_._",
  3455. "lib/MonoTouch10/_._",
  3456. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  3457. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  3458. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  3459. "lib/xamarinios10/_._",
  3460. "lib/xamarinmac20/_._",
  3461. "lib/xamarintvos10/_._",
  3462. "lib/xamarinwatchos10/_._",
  3463. "ref/MonoAndroid10/_._",
  3464. "ref/MonoTouch10/_._",
  3465. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  3466. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  3467. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  3468. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  3469. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  3470. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  3471. "ref/xamarinios10/_._",
  3472. "ref/xamarinmac20/_._",
  3473. "ref/xamarintvos10/_._",
  3474. "ref/xamarinwatchos10/_._",
  3475. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  3476. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  3477. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  3478. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  3479. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  3480. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  3481. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  3482. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  3483. "system.security.cryptography.algorithms.nuspec"
  3484. ]
  3485. },
  3486. "System.Security.Cryptography.Cng/4.3.0": {
  3487. "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
  3488. "type": "package",
  3489. "path": "system.security.cryptography.cng/4.3.0",
  3490. "files": [
  3491. ".nupkg.metadata",
  3492. ".signature.p7s",
  3493. "ThirdPartyNotices.txt",
  3494. "dotnet_library_license.txt",
  3495. "lib/net46/System.Security.Cryptography.Cng.dll",
  3496. "lib/net461/System.Security.Cryptography.Cng.dll",
  3497. "lib/net463/System.Security.Cryptography.Cng.dll",
  3498. "ref/net46/System.Security.Cryptography.Cng.dll",
  3499. "ref/net461/System.Security.Cryptography.Cng.dll",
  3500. "ref/net463/System.Security.Cryptography.Cng.dll",
  3501. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  3502. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  3503. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  3504. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  3505. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  3506. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  3507. "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll",
  3508. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  3509. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  3510. "system.security.cryptography.cng.4.3.0.nupkg.sha512",
  3511. "system.security.cryptography.cng.nuspec"
  3512. ]
  3513. },
  3514. "System.Security.Cryptography.Csp/4.3.0": {
  3515. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  3516. "type": "package",
  3517. "path": "system.security.cryptography.csp/4.3.0",
  3518. "files": [
  3519. ".nupkg.metadata",
  3520. ".signature.p7s",
  3521. "ThirdPartyNotices.txt",
  3522. "dotnet_library_license.txt",
  3523. "lib/MonoAndroid10/_._",
  3524. "lib/MonoTouch10/_._",
  3525. "lib/net46/System.Security.Cryptography.Csp.dll",
  3526. "lib/xamarinios10/_._",
  3527. "lib/xamarinmac20/_._",
  3528. "lib/xamarintvos10/_._",
  3529. "lib/xamarinwatchos10/_._",
  3530. "ref/MonoAndroid10/_._",
  3531. "ref/MonoTouch10/_._",
  3532. "ref/net46/System.Security.Cryptography.Csp.dll",
  3533. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  3534. "ref/xamarinios10/_._",
  3535. "ref/xamarinmac20/_._",
  3536. "ref/xamarintvos10/_._",
  3537. "ref/xamarinwatchos10/_._",
  3538. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  3539. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  3540. "runtimes/win/lib/netcore50/_._",
  3541. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  3542. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  3543. "system.security.cryptography.csp.nuspec"
  3544. ]
  3545. },
  3546. "System.Security.Cryptography.Encoding/4.3.0": {
  3547. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  3548. "type": "package",
  3549. "path": "system.security.cryptography.encoding/4.3.0",
  3550. "files": [
  3551. ".nupkg.metadata",
  3552. ".signature.p7s",
  3553. "ThirdPartyNotices.txt",
  3554. "dotnet_library_license.txt",
  3555. "lib/MonoAndroid10/_._",
  3556. "lib/MonoTouch10/_._",
  3557. "lib/net46/System.Security.Cryptography.Encoding.dll",
  3558. "lib/xamarinios10/_._",
  3559. "lib/xamarinmac20/_._",
  3560. "lib/xamarintvos10/_._",
  3561. "lib/xamarinwatchos10/_._",
  3562. "ref/MonoAndroid10/_._",
  3563. "ref/MonoTouch10/_._",
  3564. "ref/net46/System.Security.Cryptography.Encoding.dll",
  3565. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  3566. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  3567. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  3568. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  3569. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  3570. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  3571. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  3572. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  3573. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  3574. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  3575. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  3576. "ref/xamarinios10/_._",
  3577. "ref/xamarinmac20/_._",
  3578. "ref/xamarintvos10/_._",
  3579. "ref/xamarinwatchos10/_._",
  3580. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  3581. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  3582. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  3583. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  3584. "system.security.cryptography.encoding.nuspec"
  3585. ]
  3586. },
  3587. "System.Security.Cryptography.OpenSsl/4.3.0": {
  3588. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  3589. "type": "package",
  3590. "path": "system.security.cryptography.openssl/4.3.0",
  3591. "files": [
  3592. ".nupkg.metadata",
  3593. ".signature.p7s",
  3594. "ThirdPartyNotices.txt",
  3595. "dotnet_library_license.txt",
  3596. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  3597. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  3598. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  3599. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3600. "system.security.cryptography.openssl.nuspec"
  3601. ]
  3602. },
  3603. "System.Security.Cryptography.Primitives/4.3.0": {
  3604. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  3605. "type": "package",
  3606. "path": "system.security.cryptography.primitives/4.3.0",
  3607. "files": [
  3608. ".nupkg.metadata",
  3609. ".signature.p7s",
  3610. "ThirdPartyNotices.txt",
  3611. "dotnet_library_license.txt",
  3612. "lib/MonoAndroid10/_._",
  3613. "lib/MonoTouch10/_._",
  3614. "lib/net46/System.Security.Cryptography.Primitives.dll",
  3615. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  3616. "lib/xamarinios10/_._",
  3617. "lib/xamarinmac20/_._",
  3618. "lib/xamarintvos10/_._",
  3619. "lib/xamarinwatchos10/_._",
  3620. "ref/MonoAndroid10/_._",
  3621. "ref/MonoTouch10/_._",
  3622. "ref/net46/System.Security.Cryptography.Primitives.dll",
  3623. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  3624. "ref/xamarinios10/_._",
  3625. "ref/xamarinmac20/_._",
  3626. "ref/xamarintvos10/_._",
  3627. "ref/xamarinwatchos10/_._",
  3628. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  3629. "system.security.cryptography.primitives.nuspec"
  3630. ]
  3631. },
  3632. "System.Security.Cryptography.X509Certificates/4.3.0": {
  3633. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  3634. "type": "package",
  3635. "path": "system.security.cryptography.x509certificates/4.3.0",
  3636. "files": [
  3637. ".nupkg.metadata",
  3638. ".signature.p7s",
  3639. "ThirdPartyNotices.txt",
  3640. "dotnet_library_license.txt",
  3641. "lib/MonoAndroid10/_._",
  3642. "lib/MonoTouch10/_._",
  3643. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  3644. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  3645. "lib/xamarinios10/_._",
  3646. "lib/xamarinmac20/_._",
  3647. "lib/xamarintvos10/_._",
  3648. "lib/xamarinwatchos10/_._",
  3649. "ref/MonoAndroid10/_._",
  3650. "ref/MonoTouch10/_._",
  3651. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  3652. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  3653. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  3654. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  3655. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  3656. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  3657. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  3658. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  3659. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  3660. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  3661. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  3662. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  3663. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  3664. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  3665. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  3666. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  3667. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  3668. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  3669. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  3670. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  3671. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  3672. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  3673. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  3674. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  3675. "ref/xamarinios10/_._",
  3676. "ref/xamarinmac20/_._",
  3677. "ref/xamarintvos10/_._",
  3678. "ref/xamarinwatchos10/_._",
  3679. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  3680. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  3681. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  3682. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  3683. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  3684. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  3685. "system.security.cryptography.x509certificates.nuspec"
  3686. ]
  3687. },
  3688. "System.Text.Encoding/4.3.0": {
  3689. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  3690. "type": "package",
  3691. "path": "system.text.encoding/4.3.0",
  3692. "files": [
  3693. ".nupkg.metadata",
  3694. ".signature.p7s",
  3695. "ThirdPartyNotices.txt",
  3696. "dotnet_library_license.txt",
  3697. "lib/MonoAndroid10/_._",
  3698. "lib/MonoTouch10/_._",
  3699. "lib/net45/_._",
  3700. "lib/portable-net45+win8+wp8+wpa81/_._",
  3701. "lib/win8/_._",
  3702. "lib/wp80/_._",
  3703. "lib/wpa81/_._",
  3704. "lib/xamarinios10/_._",
  3705. "lib/xamarinmac20/_._",
  3706. "lib/xamarintvos10/_._",
  3707. "lib/xamarinwatchos10/_._",
  3708. "ref/MonoAndroid10/_._",
  3709. "ref/MonoTouch10/_._",
  3710. "ref/net45/_._",
  3711. "ref/netcore50/System.Text.Encoding.dll",
  3712. "ref/netcore50/System.Text.Encoding.xml",
  3713. "ref/netcore50/de/System.Text.Encoding.xml",
  3714. "ref/netcore50/es/System.Text.Encoding.xml",
  3715. "ref/netcore50/fr/System.Text.Encoding.xml",
  3716. "ref/netcore50/it/System.Text.Encoding.xml",
  3717. "ref/netcore50/ja/System.Text.Encoding.xml",
  3718. "ref/netcore50/ko/System.Text.Encoding.xml",
  3719. "ref/netcore50/ru/System.Text.Encoding.xml",
  3720. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  3721. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  3722. "ref/netstandard1.0/System.Text.Encoding.dll",
  3723. "ref/netstandard1.0/System.Text.Encoding.xml",
  3724. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  3725. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  3726. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  3727. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  3728. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  3729. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  3730. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  3731. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  3732. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  3733. "ref/netstandard1.3/System.Text.Encoding.dll",
  3734. "ref/netstandard1.3/System.Text.Encoding.xml",
  3735. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  3736. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  3737. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  3738. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  3739. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  3740. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  3741. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  3742. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  3743. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  3744. "ref/portable-net45+win8+wp8+wpa81/_._",
  3745. "ref/win8/_._",
  3746. "ref/wp80/_._",
  3747. "ref/wpa81/_._",
  3748. "ref/xamarinios10/_._",
  3749. "ref/xamarinmac20/_._",
  3750. "ref/xamarintvos10/_._",
  3751. "ref/xamarinwatchos10/_._",
  3752. "system.text.encoding.4.3.0.nupkg.sha512",
  3753. "system.text.encoding.nuspec"
  3754. ]
  3755. },
  3756. "System.Threading/4.3.0": {
  3757. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  3758. "type": "package",
  3759. "path": "system.threading/4.3.0",
  3760. "files": [
  3761. ".nupkg.metadata",
  3762. ".signature.p7s",
  3763. "ThirdPartyNotices.txt",
  3764. "dotnet_library_license.txt",
  3765. "lib/MonoAndroid10/_._",
  3766. "lib/MonoTouch10/_._",
  3767. "lib/net45/_._",
  3768. "lib/netcore50/System.Threading.dll",
  3769. "lib/netstandard1.3/System.Threading.dll",
  3770. "lib/portable-net45+win8+wp8+wpa81/_._",
  3771. "lib/win8/_._",
  3772. "lib/wp80/_._",
  3773. "lib/wpa81/_._",
  3774. "lib/xamarinios10/_._",
  3775. "lib/xamarinmac20/_._",
  3776. "lib/xamarintvos10/_._",
  3777. "lib/xamarinwatchos10/_._",
  3778. "ref/MonoAndroid10/_._",
  3779. "ref/MonoTouch10/_._",
  3780. "ref/net45/_._",
  3781. "ref/netcore50/System.Threading.dll",
  3782. "ref/netcore50/System.Threading.xml",
  3783. "ref/netcore50/de/System.Threading.xml",
  3784. "ref/netcore50/es/System.Threading.xml",
  3785. "ref/netcore50/fr/System.Threading.xml",
  3786. "ref/netcore50/it/System.Threading.xml",
  3787. "ref/netcore50/ja/System.Threading.xml",
  3788. "ref/netcore50/ko/System.Threading.xml",
  3789. "ref/netcore50/ru/System.Threading.xml",
  3790. "ref/netcore50/zh-hans/System.Threading.xml",
  3791. "ref/netcore50/zh-hant/System.Threading.xml",
  3792. "ref/netstandard1.0/System.Threading.dll",
  3793. "ref/netstandard1.0/System.Threading.xml",
  3794. "ref/netstandard1.0/de/System.Threading.xml",
  3795. "ref/netstandard1.0/es/System.Threading.xml",
  3796. "ref/netstandard1.0/fr/System.Threading.xml",
  3797. "ref/netstandard1.0/it/System.Threading.xml",
  3798. "ref/netstandard1.0/ja/System.Threading.xml",
  3799. "ref/netstandard1.0/ko/System.Threading.xml",
  3800. "ref/netstandard1.0/ru/System.Threading.xml",
  3801. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  3802. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  3803. "ref/netstandard1.3/System.Threading.dll",
  3804. "ref/netstandard1.3/System.Threading.xml",
  3805. "ref/netstandard1.3/de/System.Threading.xml",
  3806. "ref/netstandard1.3/es/System.Threading.xml",
  3807. "ref/netstandard1.3/fr/System.Threading.xml",
  3808. "ref/netstandard1.3/it/System.Threading.xml",
  3809. "ref/netstandard1.3/ja/System.Threading.xml",
  3810. "ref/netstandard1.3/ko/System.Threading.xml",
  3811. "ref/netstandard1.3/ru/System.Threading.xml",
  3812. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  3813. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  3814. "ref/portable-net45+win8+wp8+wpa81/_._",
  3815. "ref/win8/_._",
  3816. "ref/wp80/_._",
  3817. "ref/wpa81/_._",
  3818. "ref/xamarinios10/_._",
  3819. "ref/xamarinmac20/_._",
  3820. "ref/xamarintvos10/_._",
  3821. "ref/xamarinwatchos10/_._",
  3822. "runtimes/aot/lib/netcore50/System.Threading.dll",
  3823. "system.threading.4.3.0.nupkg.sha512",
  3824. "system.threading.nuspec"
  3825. ]
  3826. },
  3827. "System.Threading.Channels/8.0.0": {
  3828. "sha512": "CMaFr7v+57RW7uZfZkPExsPB6ljwzhjACWW1gfU35Y56rk72B/Wu+sTqxVmGSk4SFUlPc3cjeKND0zktziyjBA==",
  3829. "type": "package",
  3830. "path": "system.threading.channels/8.0.0",
  3831. "files": [
  3832. ".nupkg.metadata",
  3833. ".signature.p7s",
  3834. "Icon.png",
  3835. "LICENSE.TXT",
  3836. "PACKAGE.md",
  3837. "THIRD-PARTY-NOTICES.TXT",
  3838. "buildTransitive/net461/System.Threading.Channels.targets",
  3839. "buildTransitive/net462/_._",
  3840. "buildTransitive/net6.0/_._",
  3841. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets",
  3842. "lib/net462/System.Threading.Channels.dll",
  3843. "lib/net462/System.Threading.Channels.xml",
  3844. "lib/net6.0/System.Threading.Channels.dll",
  3845. "lib/net6.0/System.Threading.Channels.xml",
  3846. "lib/net7.0/System.Threading.Channels.dll",
  3847. "lib/net7.0/System.Threading.Channels.xml",
  3848. "lib/net8.0/System.Threading.Channels.dll",
  3849. "lib/net8.0/System.Threading.Channels.xml",
  3850. "lib/netstandard2.0/System.Threading.Channels.dll",
  3851. "lib/netstandard2.0/System.Threading.Channels.xml",
  3852. "lib/netstandard2.1/System.Threading.Channels.dll",
  3853. "lib/netstandard2.1/System.Threading.Channels.xml",
  3854. "system.threading.channels.8.0.0.nupkg.sha512",
  3855. "system.threading.channels.nuspec",
  3856. "useSharedDesignerContext.txt"
  3857. ]
  3858. },
  3859. "System.Threading.Tasks/4.3.0": {
  3860. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  3861. "type": "package",
  3862. "path": "system.threading.tasks/4.3.0",
  3863. "files": [
  3864. ".nupkg.metadata",
  3865. ".signature.p7s",
  3866. "ThirdPartyNotices.txt",
  3867. "dotnet_library_license.txt",
  3868. "lib/MonoAndroid10/_._",
  3869. "lib/MonoTouch10/_._",
  3870. "lib/net45/_._",
  3871. "lib/portable-net45+win8+wp8+wpa81/_._",
  3872. "lib/win8/_._",
  3873. "lib/wp80/_._",
  3874. "lib/wpa81/_._",
  3875. "lib/xamarinios10/_._",
  3876. "lib/xamarinmac20/_._",
  3877. "lib/xamarintvos10/_._",
  3878. "lib/xamarinwatchos10/_._",
  3879. "ref/MonoAndroid10/_._",
  3880. "ref/MonoTouch10/_._",
  3881. "ref/net45/_._",
  3882. "ref/netcore50/System.Threading.Tasks.dll",
  3883. "ref/netcore50/System.Threading.Tasks.xml",
  3884. "ref/netcore50/de/System.Threading.Tasks.xml",
  3885. "ref/netcore50/es/System.Threading.Tasks.xml",
  3886. "ref/netcore50/fr/System.Threading.Tasks.xml",
  3887. "ref/netcore50/it/System.Threading.Tasks.xml",
  3888. "ref/netcore50/ja/System.Threading.Tasks.xml",
  3889. "ref/netcore50/ko/System.Threading.Tasks.xml",
  3890. "ref/netcore50/ru/System.Threading.Tasks.xml",
  3891. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  3892. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  3893. "ref/netstandard1.0/System.Threading.Tasks.dll",
  3894. "ref/netstandard1.0/System.Threading.Tasks.xml",
  3895. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  3896. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  3897. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  3898. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  3899. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  3900. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  3901. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  3902. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  3903. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  3904. "ref/netstandard1.3/System.Threading.Tasks.dll",
  3905. "ref/netstandard1.3/System.Threading.Tasks.xml",
  3906. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  3907. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  3908. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  3909. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  3910. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  3911. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  3912. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  3913. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  3914. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  3915. "ref/portable-net45+win8+wp8+wpa81/_._",
  3916. "ref/win8/_._",
  3917. "ref/wp80/_._",
  3918. "ref/wpa81/_._",
  3919. "ref/xamarinios10/_._",
  3920. "ref/xamarinmac20/_._",
  3921. "ref/xamarintvos10/_._",
  3922. "ref/xamarinwatchos10/_._",
  3923. "system.threading.tasks.4.3.0.nupkg.sha512",
  3924. "system.threading.tasks.nuspec"
  3925. ]
  3926. }
  3927. },
  3928. "projectFileDependencyGroups": {
  3929. "net5.0": [
  3930. "AdysTech.InfluxDB.Client.Net >= 0.15.0",
  3931. "InfluxData.Net >= 8.0.1",
  3932. "Microsoft.ML >= 4.0.2",
  3933. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets >= 1.17.2",
  3934. "Swashbuckle.AspNetCore >= 5.6.3"
  3935. ]
  3936. },
  3937. "packageFolders": {
  3938. "D:\\.nuget\\packages": {},
  3939. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
  3940. },
  3941. "project": {
  3942. "version": "1.0.0",
  3943. "restore": {
  3944. "projectUniqueName": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.IOT.MLService\\Ropin.IOT.MLService.csproj",
  3945. "projectName": "Ropin.IOT.MLService",
  3946. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.IOT.MLService\\Ropin.IOT.MLService.csproj",
  3947. "packagesPath": "D:\\.nuget\\packages",
  3948. "outputPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Ropin.IOT.MLService\\obj\\",
  3949. "projectStyle": "PackageReference",
  3950. "fallbackFolders": [
  3951. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
  3952. ],
  3953. "configFilePaths": [
  3954. "C:\\Users\\hp\\AppData\\Roaming\\NuGet\\NuGet.Config",
  3955. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  3956. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  3957. ],
  3958. "originalTargetFrameworks": [
  3959. "net5.0"
  3960. ],
  3961. "sources": {
  3962. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  3963. "C:\\Program Files\\dotnet\\library-packs": {},
  3964. "https://api.nuget.org/v3/index.json": {}
  3965. },
  3966. "frameworks": {
  3967. "net5.0": {
  3968. "targetAlias": "net5.0",
  3969. "projectReferences": {}
  3970. }
  3971. },
  3972. "warningProperties": {
  3973. "warnAsError": [
  3974. "NU1605"
  3975. ]
  3976. }
  3977. },
  3978. "frameworks": {
  3979. "net5.0": {
  3980. "targetAlias": "net5.0",
  3981. "dependencies": {
  3982. "AdysTech.InfluxDB.Client.Net": {
  3983. "target": "Package",
  3984. "version": "[0.15.0, )"
  3985. },
  3986. "InfluxData.Net": {
  3987. "target": "Package",
  3988. "version": "[8.0.1, )"
  3989. },
  3990. "Microsoft.ML": {
  3991. "target": "Package",
  3992. "version": "[4.0.2, )"
  3993. },
  3994. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": {
  3995. "target": "Package",
  3996. "version": "[1.17.2, )"
  3997. },
  3998. "Swashbuckle.AspNetCore": {
  3999. "target": "Package",
  4000. "version": "[5.6.3, )"
  4001. }
  4002. },
  4003. "imports": [
  4004. "net461",
  4005. "net462",
  4006. "net47",
  4007. "net471",
  4008. "net472",
  4009. "net48",
  4010. "net481"
  4011. ],
  4012. "assetTargetFallback": true,
  4013. "warn": true,
  4014. "frameworkReferences": {
  4015. "Microsoft.AspNetCore.App": {
  4016. "privateAssets": "none"
  4017. },
  4018. "Microsoft.NETCore.App": {
  4019. "privateAssets": "all"
  4020. }
  4021. },
  4022. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
  4023. }
  4024. }
  4025. },
  4026. "logs": [
  4027. {
  4028. "code": "NU1701",
  4029. "level": "Warning",
  4030. "warningLevel": 1,
  4031. "message": "已使用“.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1”而不是项目目标框架“net5.0”还原包“AdysTech.InfluxDB.Client.Net 0.15.0”。此包可能与项目不完全兼容。",
  4032. "libraryId": "AdysTech.InfluxDB.Client.Net",
  4033. "targetGraphs": [
  4034. "net5.0"
  4035. ]
  4036. }
  4037. ]
  4038. }