project.assets.json 198 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629
  1. {
  2. "version": 3,
  3. "targets": {
  4. "net8.0": {
  5. "AutoMapper/12.0.1": {
  6. "type": "package",
  7. "dependencies": {
  8. "Microsoft.CSharp": "4.7.0"
  9. },
  10. "compile": {
  11. "lib/netstandard2.1/AutoMapper.dll": {
  12. "related": ".xml"
  13. }
  14. },
  15. "runtime": {
  16. "lib/netstandard2.1/AutoMapper.dll": {
  17. "related": ".xml"
  18. }
  19. }
  20. },
  21. "AutoMapper.Extensions.Microsoft.DependencyInjection/12.0.1": {
  22. "type": "package",
  23. "dependencies": {
  24. "AutoMapper": "[12.0.1]",
  25. "Microsoft.Extensions.Options": "6.0.0"
  26. },
  27. "compile": {
  28. "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
  29. },
  30. "runtime": {
  31. "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
  32. }
  33. },
  34. "Azure.Core/1.35.0": {
  35. "type": "package",
  36. "dependencies": {
  37. "Microsoft.Bcl.AsyncInterfaces": "1.1.1",
  38. "System.Diagnostics.DiagnosticSource": "6.0.1",
  39. "System.Memory.Data": "1.0.2",
  40. "System.Numerics.Vectors": "4.5.0",
  41. "System.Text.Encodings.Web": "4.7.2",
  42. "System.Text.Json": "4.7.2",
  43. "System.Threading.Tasks.Extensions": "4.5.4"
  44. },
  45. "compile": {
  46. "lib/net6.0/Azure.Core.dll": {
  47. "related": ".xml"
  48. }
  49. },
  50. "runtime": {
  51. "lib/net6.0/Azure.Core.dll": {
  52. "related": ".xml"
  53. }
  54. }
  55. },
  56. "Azure.Identity/1.10.3": {
  57. "type": "package",
  58. "dependencies": {
  59. "Azure.Core": "1.35.0",
  60. "Microsoft.Identity.Client": "4.56.0",
  61. "Microsoft.Identity.Client.Extensions.Msal": "4.56.0",
  62. "System.Memory": "4.5.4",
  63. "System.Security.Cryptography.ProtectedData": "4.7.0",
  64. "System.Text.Json": "4.7.2",
  65. "System.Threading.Tasks.Extensions": "4.5.4"
  66. },
  67. "compile": {
  68. "lib/netstandard2.0/Azure.Identity.dll": {
  69. "related": ".xml"
  70. }
  71. },
  72. "runtime": {
  73. "lib/netstandard2.0/Azure.Identity.dll": {
  74. "related": ".xml"
  75. }
  76. }
  77. },
  78. "FluentValidation/11.9.1": {
  79. "type": "package",
  80. "compile": {
  81. "lib/net8.0/FluentValidation.dll": {
  82. "related": ".xml"
  83. }
  84. },
  85. "runtime": {
  86. "lib/net8.0/FluentValidation.dll": {
  87. "related": ".xml"
  88. }
  89. }
  90. },
  91. "FluentValidation.DependencyInjectionExtensions/11.9.1": {
  92. "type": "package",
  93. "dependencies": {
  94. "FluentValidation": "11.9.1",
  95. "Microsoft.Extensions.Dependencyinjection.Abstractions": "2.1.0"
  96. },
  97. "compile": {
  98. "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": {
  99. "related": ".xml"
  100. }
  101. },
  102. "runtime": {
  103. "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": {
  104. "related": ".xml"
  105. }
  106. }
  107. },
  108. "Humanizer.Core/2.14.1": {
  109. "type": "package",
  110. "compile": {
  111. "lib/net6.0/_._": {
  112. "related": ".xml"
  113. }
  114. },
  115. "runtime": {
  116. "lib/net6.0/Humanizer.dll": {
  117. "related": ".xml"
  118. }
  119. }
  120. },
  121. "Microsoft.AspNetCore.Cryptography.Internal/8.0.0": {
  122. "type": "package",
  123. "compile": {
  124. "lib/net8.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {
  125. "related": ".xml"
  126. }
  127. },
  128. "runtime": {
  129. "lib/net8.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {
  130. "related": ".xml"
  131. }
  132. }
  133. },
  134. "Microsoft.AspNetCore.Cryptography.KeyDerivation/8.0.0": {
  135. "type": "package",
  136. "dependencies": {
  137. "Microsoft.AspNetCore.Cryptography.Internal": "8.0.0"
  138. },
  139. "compile": {
  140. "lib/net8.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {
  141. "related": ".xml"
  142. }
  143. },
  144. "runtime": {
  145. "lib/net8.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {
  146. "related": ".xml"
  147. }
  148. }
  149. },
  150. "Microsoft.AspNetCore.Http.Features/5.0.17": {
  151. "type": "package",
  152. "dependencies": {
  153. "Microsoft.Extensions.Primitives": "5.0.1",
  154. "System.IO.Pipelines": "5.0.2"
  155. },
  156. "compile": {
  157. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  158. "related": ".xml"
  159. }
  160. },
  161. "runtime": {
  162. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  163. "related": ".xml"
  164. }
  165. }
  166. },
  167. "Microsoft.AspNetCore.Identity.EntityFrameworkCore/8.0.0": {
  168. "type": "package",
  169. "dependencies": {
  170. "Microsoft.EntityFrameworkCore.Relational": "8.0.0",
  171. "Microsoft.Extensions.Identity.Stores": "8.0.0"
  172. },
  173. "compile": {
  174. "lib/net8.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {
  175. "related": ".xml"
  176. }
  177. },
  178. "runtime": {
  179. "lib/net8.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {
  180. "related": ".xml"
  181. }
  182. }
  183. },
  184. "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
  185. "type": "package",
  186. "compile": {
  187. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
  188. "related": ".xml"
  189. }
  190. },
  191. "runtime": {
  192. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
  193. "related": ".xml"
  194. }
  195. }
  196. },
  197. "Microsoft.CodeAnalysis.Analyzers/3.3.3": {
  198. "type": "package",
  199. "build": {
  200. "build/_._": {}
  201. }
  202. },
  203. "Microsoft.CodeAnalysis.Common/4.5.0": {
  204. "type": "package",
  205. "dependencies": {
  206. "Microsoft.CodeAnalysis.Analyzers": "3.3.3",
  207. "System.Collections.Immutable": "6.0.0",
  208. "System.Reflection.Metadata": "6.0.1",
  209. "System.Runtime.CompilerServices.Unsafe": "6.0.0",
  210. "System.Text.Encoding.CodePages": "6.0.0"
  211. },
  212. "compile": {
  213. "lib/netcoreapp3.1/_._": {
  214. "related": ".pdb;.xml"
  215. }
  216. },
  217. "runtime": {
  218. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {
  219. "related": ".pdb;.xml"
  220. }
  221. },
  222. "resource": {
  223. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": {
  224. "locale": "cs"
  225. },
  226. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": {
  227. "locale": "de"
  228. },
  229. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": {
  230. "locale": "es"
  231. },
  232. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": {
  233. "locale": "fr"
  234. },
  235. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": {
  236. "locale": "it"
  237. },
  238. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": {
  239. "locale": "ja"
  240. },
  241. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": {
  242. "locale": "ko"
  243. },
  244. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": {
  245. "locale": "pl"
  246. },
  247. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
  248. "locale": "pt-BR"
  249. },
  250. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": {
  251. "locale": "ru"
  252. },
  253. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": {
  254. "locale": "tr"
  255. },
  256. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
  257. "locale": "zh-Hans"
  258. },
  259. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
  260. "locale": "zh-Hant"
  261. }
  262. }
  263. },
  264. "Microsoft.CodeAnalysis.CSharp/4.5.0": {
  265. "type": "package",
  266. "dependencies": {
  267. "Microsoft.CodeAnalysis.Common": "[4.5.0]"
  268. },
  269. "compile": {
  270. "lib/netcoreapp3.1/_._": {
  271. "related": ".pdb;.xml"
  272. }
  273. },
  274. "runtime": {
  275. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {
  276. "related": ".pdb;.xml"
  277. }
  278. },
  279. "resource": {
  280. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  281. "locale": "cs"
  282. },
  283. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  284. "locale": "de"
  285. },
  286. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  287. "locale": "es"
  288. },
  289. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  290. "locale": "fr"
  291. },
  292. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  293. "locale": "it"
  294. },
  295. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  296. "locale": "ja"
  297. },
  298. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  299. "locale": "ko"
  300. },
  301. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  302. "locale": "pl"
  303. },
  304. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  305. "locale": "pt-BR"
  306. },
  307. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  308. "locale": "ru"
  309. },
  310. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  311. "locale": "tr"
  312. },
  313. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  314. "locale": "zh-Hans"
  315. },
  316. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  317. "locale": "zh-Hant"
  318. }
  319. }
  320. },
  321. "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": {
  322. "type": "package",
  323. "dependencies": {
  324. "Humanizer.Core": "2.14.1",
  325. "Microsoft.CodeAnalysis.CSharp": "[4.5.0]",
  326. "Microsoft.CodeAnalysis.Common": "[4.5.0]",
  327. "Microsoft.CodeAnalysis.Workspaces.Common": "[4.5.0]"
  328. },
  329. "compile": {
  330. "lib/netcoreapp3.1/_._": {
  331. "related": ".pdb;.xml"
  332. }
  333. },
  334. "runtime": {
  335. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {
  336. "related": ".pdb;.xml"
  337. }
  338. },
  339. "resource": {
  340. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  341. "locale": "cs"
  342. },
  343. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  344. "locale": "de"
  345. },
  346. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  347. "locale": "es"
  348. },
  349. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  350. "locale": "fr"
  351. },
  352. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  353. "locale": "it"
  354. },
  355. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  356. "locale": "ja"
  357. },
  358. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  359. "locale": "ko"
  360. },
  361. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  362. "locale": "pl"
  363. },
  364. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  365. "locale": "pt-BR"
  366. },
  367. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  368. "locale": "ru"
  369. },
  370. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  371. "locale": "tr"
  372. },
  373. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  374. "locale": "zh-Hans"
  375. },
  376. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  377. "locale": "zh-Hant"
  378. }
  379. }
  380. },
  381. "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": {
  382. "type": "package",
  383. "dependencies": {
  384. "Humanizer.Core": "2.14.1",
  385. "Microsoft.Bcl.AsyncInterfaces": "6.0.0",
  386. "Microsoft.CodeAnalysis.Common": "[4.5.0]",
  387. "System.Composition": "6.0.0",
  388. "System.IO.Pipelines": "6.0.3",
  389. "System.Threading.Channels": "6.0.0"
  390. },
  391. "compile": {
  392. "lib/netcoreapp3.1/_._": {
  393. "related": ".pdb;.xml"
  394. }
  395. },
  396. "runtime": {
  397. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": {
  398. "related": ".pdb;.xml"
  399. }
  400. },
  401. "resource": {
  402. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  403. "locale": "cs"
  404. },
  405. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  406. "locale": "de"
  407. },
  408. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  409. "locale": "es"
  410. },
  411. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  412. "locale": "fr"
  413. },
  414. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  415. "locale": "it"
  416. },
  417. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  418. "locale": "ja"
  419. },
  420. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  421. "locale": "ko"
  422. },
  423. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  424. "locale": "pl"
  425. },
  426. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  427. "locale": "pt-BR"
  428. },
  429. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  430. "locale": "ru"
  431. },
  432. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  433. "locale": "tr"
  434. },
  435. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  436. "locale": "zh-Hans"
  437. },
  438. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  439. "locale": "zh-Hant"
  440. }
  441. }
  442. },
  443. "Microsoft.CSharp/4.7.0": {
  444. "type": "package",
  445. "compile": {
  446. "ref/netcoreapp2.0/_._": {}
  447. },
  448. "runtime": {
  449. "lib/netcoreapp2.0/_._": {}
  450. }
  451. },
  452. "Microsoft.Data.SqlClient/5.1.5": {
  453. "type": "package",
  454. "dependencies": {
  455. "Azure.Identity": "1.10.3",
  456. "Microsoft.Data.SqlClient.SNI.runtime": "5.1.1",
  457. "Microsoft.Identity.Client": "4.56.0",
  458. "Microsoft.IdentityModel.JsonWebTokens": "6.35.0",
  459. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.35.0",
  460. "Microsoft.SqlServer.Server": "1.0.0",
  461. "System.Configuration.ConfigurationManager": "6.0.1",
  462. "System.Diagnostics.DiagnosticSource": "6.0.1",
  463. "System.Runtime.Caching": "6.0.0",
  464. "System.Security.Cryptography.Cng": "5.0.0",
  465. "System.Security.Principal.Windows": "5.0.0",
  466. "System.Text.Encoding.CodePages": "6.0.0",
  467. "System.Text.Encodings.Web": "6.0.0"
  468. },
  469. "compile": {
  470. "ref/net6.0/Microsoft.Data.SqlClient.dll": {
  471. "related": ".pdb;.xml"
  472. }
  473. },
  474. "runtime": {
  475. "lib/net6.0/Microsoft.Data.SqlClient.dll": {
  476. "related": ".pdb;.xml"
  477. }
  478. },
  479. "runtimeTargets": {
  480. "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll": {
  481. "assetType": "runtime",
  482. "rid": "unix"
  483. },
  484. "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll": {
  485. "assetType": "runtime",
  486. "rid": "win"
  487. }
  488. }
  489. },
  490. "Microsoft.Data.SqlClient.SNI.runtime/5.1.1": {
  491. "type": "package",
  492. "runtimeTargets": {
  493. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": {
  494. "assetType": "native",
  495. "rid": "win-arm"
  496. },
  497. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": {
  498. "assetType": "native",
  499. "rid": "win-arm64"
  500. },
  501. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": {
  502. "assetType": "native",
  503. "rid": "win-x64"
  504. },
  505. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": {
  506. "assetType": "native",
  507. "rid": "win-x86"
  508. }
  509. }
  510. },
  511. "Microsoft.EntityFrameworkCore/8.0.4": {
  512. "type": "package",
  513. "dependencies": {
  514. "Microsoft.EntityFrameworkCore.Abstractions": "8.0.4",
  515. "Microsoft.EntityFrameworkCore.Analyzers": "8.0.4",
  516. "Microsoft.Extensions.Caching.Memory": "8.0.0",
  517. "Microsoft.Extensions.Logging": "8.0.0"
  518. },
  519. "compile": {
  520. "lib/net8.0/Microsoft.EntityFrameworkCore.dll": {
  521. "related": ".xml"
  522. }
  523. },
  524. "runtime": {
  525. "lib/net8.0/Microsoft.EntityFrameworkCore.dll": {
  526. "related": ".xml"
  527. }
  528. },
  529. "build": {
  530. "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props": {}
  531. }
  532. },
  533. "Microsoft.EntityFrameworkCore.Abstractions/8.0.4": {
  534. "type": "package",
  535. "compile": {
  536. "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  537. "related": ".xml"
  538. }
  539. },
  540. "runtime": {
  541. "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  542. "related": ".xml"
  543. }
  544. }
  545. },
  546. "Microsoft.EntityFrameworkCore.Analyzers/8.0.4": {
  547. "type": "package",
  548. "compile": {
  549. "lib/netstandard2.0/_._": {}
  550. },
  551. "runtime": {
  552. "lib/netstandard2.0/_._": {}
  553. }
  554. },
  555. "Microsoft.EntityFrameworkCore.Design/8.0.0": {
  556. "type": "package",
  557. "dependencies": {
  558. "Humanizer.Core": "2.14.1",
  559. "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.5.0",
  560. "Microsoft.EntityFrameworkCore.Relational": "8.0.0",
  561. "Microsoft.Extensions.DependencyModel": "8.0.0",
  562. "Mono.TextTemplating": "2.2.1"
  563. },
  564. "compile": {
  565. "lib/net8.0/_._": {
  566. "related": ".xml"
  567. }
  568. },
  569. "runtime": {
  570. "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": {
  571. "related": ".xml"
  572. }
  573. },
  574. "build": {
  575. "build/net8.0/Microsoft.EntityFrameworkCore.Design.props": {}
  576. }
  577. },
  578. "Microsoft.EntityFrameworkCore.Relational/8.0.4": {
  579. "type": "package",
  580. "dependencies": {
  581. "Microsoft.EntityFrameworkCore": "8.0.4",
  582. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
  583. },
  584. "compile": {
  585. "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": {
  586. "related": ".xml"
  587. }
  588. },
  589. "runtime": {
  590. "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": {
  591. "related": ".xml"
  592. }
  593. }
  594. },
  595. "Microsoft.EntityFrameworkCore.SqlServer/8.0.4": {
  596. "type": "package",
  597. "dependencies": {
  598. "Microsoft.Data.SqlClient": "5.1.5",
  599. "Microsoft.EntityFrameworkCore.Relational": "8.0.4"
  600. },
  601. "compile": {
  602. "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
  603. "related": ".xml"
  604. }
  605. },
  606. "runtime": {
  607. "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
  608. "related": ".xml"
  609. }
  610. }
  611. },
  612. "Microsoft.EntityFrameworkCore.Tools/8.0.0": {
  613. "type": "package",
  614. "dependencies": {
  615. "Microsoft.EntityFrameworkCore.Design": "8.0.0"
  616. },
  617. "compile": {
  618. "lib/net8.0/_._": {}
  619. },
  620. "runtime": {
  621. "lib/net8.0/_._": {}
  622. }
  623. },
  624. "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
  625. "type": "package",
  626. "dependencies": {
  627. "Microsoft.Extensions.Primitives": "8.0.0"
  628. },
  629. "compile": {
  630. "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  631. "related": ".xml"
  632. }
  633. },
  634. "runtime": {
  635. "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  636. "related": ".xml"
  637. }
  638. },
  639. "build": {
  640. "buildTransitive/net6.0/_._": {}
  641. }
  642. },
  643. "Microsoft.Extensions.Caching.Memory/8.0.0": {
  644. "type": "package",
  645. "dependencies": {
  646. "Microsoft.Extensions.Caching.Abstractions": "8.0.0",
  647. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  648. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  649. "Microsoft.Extensions.Options": "8.0.0",
  650. "Microsoft.Extensions.Primitives": "8.0.0"
  651. },
  652. "compile": {
  653. "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": {
  654. "related": ".xml"
  655. }
  656. },
  657. "runtime": {
  658. "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": {
  659. "related": ".xml"
  660. }
  661. },
  662. "build": {
  663. "buildTransitive/net6.0/_._": {}
  664. }
  665. },
  666. "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
  667. "type": "package",
  668. "dependencies": {
  669. "Microsoft.Extensions.Primitives": "8.0.0"
  670. },
  671. "compile": {
  672. "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  673. "related": ".xml"
  674. }
  675. },
  676. "runtime": {
  677. "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  678. "related": ".xml"
  679. }
  680. },
  681. "build": {
  682. "buildTransitive/net6.0/_._": {}
  683. }
  684. },
  685. "Microsoft.Extensions.DependencyInjection/8.0.0": {
  686. "type": "package",
  687. "dependencies": {
  688. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0"
  689. },
  690. "compile": {
  691. "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": {
  692. "related": ".xml"
  693. }
  694. },
  695. "runtime": {
  696. "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": {
  697. "related": ".xml"
  698. }
  699. },
  700. "build": {
  701. "buildTransitive/net6.0/_._": {}
  702. }
  703. },
  704. "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": {
  705. "type": "package",
  706. "compile": {
  707. "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  708. "related": ".xml"
  709. }
  710. },
  711. "runtime": {
  712. "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  713. "related": ".xml"
  714. }
  715. },
  716. "build": {
  717. "buildTransitive/net6.0/_._": {}
  718. }
  719. },
  720. "Microsoft.Extensions.DependencyModel/8.0.0": {
  721. "type": "package",
  722. "dependencies": {
  723. "System.Text.Encodings.Web": "8.0.0",
  724. "System.Text.Json": "8.0.0"
  725. },
  726. "compile": {
  727. "lib/net8.0/_._": {
  728. "related": ".xml"
  729. }
  730. },
  731. "runtime": {
  732. "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": {
  733. "related": ".xml"
  734. }
  735. },
  736. "build": {
  737. "buildTransitive/net6.0/_._": {}
  738. }
  739. },
  740. "Microsoft.Extensions.Identity.Core/8.0.0": {
  741. "type": "package",
  742. "dependencies": {
  743. "Microsoft.AspNetCore.Cryptography.KeyDerivation": "8.0.0",
  744. "Microsoft.Extensions.Logging": "8.0.0",
  745. "Microsoft.Extensions.Options": "8.0.0"
  746. },
  747. "compile": {
  748. "lib/net8.0/Microsoft.Extensions.Identity.Core.dll": {
  749. "related": ".xml"
  750. }
  751. },
  752. "runtime": {
  753. "lib/net8.0/Microsoft.Extensions.Identity.Core.dll": {
  754. "related": ".xml"
  755. }
  756. }
  757. },
  758. "Microsoft.Extensions.Identity.Stores/8.0.0": {
  759. "type": "package",
  760. "dependencies": {
  761. "Microsoft.Extensions.Caching.Abstractions": "8.0.0",
  762. "Microsoft.Extensions.Identity.Core": "8.0.0",
  763. "Microsoft.Extensions.Logging": "8.0.0"
  764. },
  765. "compile": {
  766. "lib/net8.0/Microsoft.Extensions.Identity.Stores.dll": {
  767. "related": ".xml"
  768. }
  769. },
  770. "runtime": {
  771. "lib/net8.0/Microsoft.Extensions.Identity.Stores.dll": {
  772. "related": ".xml"
  773. }
  774. }
  775. },
  776. "Microsoft.Extensions.Logging/8.0.0": {
  777. "type": "package",
  778. "dependencies": {
  779. "Microsoft.Extensions.DependencyInjection": "8.0.0",
  780. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  781. "Microsoft.Extensions.Options": "8.0.0"
  782. },
  783. "compile": {
  784. "lib/net8.0/Microsoft.Extensions.Logging.dll": {
  785. "related": ".xml"
  786. }
  787. },
  788. "runtime": {
  789. "lib/net8.0/Microsoft.Extensions.Logging.dll": {
  790. "related": ".xml"
  791. }
  792. },
  793. "build": {
  794. "buildTransitive/net6.0/_._": {}
  795. }
  796. },
  797. "Microsoft.Extensions.Logging.Abstractions/8.0.0": {
  798. "type": "package",
  799. "dependencies": {
  800. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0"
  801. },
  802. "compile": {
  803. "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  804. "related": ".xml"
  805. }
  806. },
  807. "runtime": {
  808. "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  809. "related": ".xml"
  810. }
  811. },
  812. "build": {
  813. "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
  814. }
  815. },
  816. "Microsoft.Extensions.Options/8.0.0": {
  817. "type": "package",
  818. "dependencies": {
  819. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  820. "Microsoft.Extensions.Primitives": "8.0.0"
  821. },
  822. "compile": {
  823. "lib/net8.0/Microsoft.Extensions.Options.dll": {
  824. "related": ".xml"
  825. }
  826. },
  827. "runtime": {
  828. "lib/net8.0/Microsoft.Extensions.Options.dll": {
  829. "related": ".xml"
  830. }
  831. },
  832. "build": {
  833. "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {}
  834. }
  835. },
  836. "Microsoft.Extensions.Primitives/8.0.0": {
  837. "type": "package",
  838. "compile": {
  839. "lib/net8.0/Microsoft.Extensions.Primitives.dll": {
  840. "related": ".xml"
  841. }
  842. },
  843. "runtime": {
  844. "lib/net8.0/Microsoft.Extensions.Primitives.dll": {
  845. "related": ".xml"
  846. }
  847. },
  848. "build": {
  849. "buildTransitive/net6.0/_._": {}
  850. }
  851. },
  852. "Microsoft.Identity.Client/4.56.0": {
  853. "type": "package",
  854. "dependencies": {
  855. "Microsoft.IdentityModel.Abstractions": "6.22.0"
  856. },
  857. "compile": {
  858. "lib/net6.0/Microsoft.Identity.Client.dll": {
  859. "related": ".xml"
  860. }
  861. },
  862. "runtime": {
  863. "lib/net6.0/Microsoft.Identity.Client.dll": {
  864. "related": ".xml"
  865. }
  866. }
  867. },
  868. "Microsoft.Identity.Client.Extensions.Msal/4.56.0": {
  869. "type": "package",
  870. "dependencies": {
  871. "Microsoft.Identity.Client": "4.56.0",
  872. "System.IO.FileSystem.AccessControl": "5.0.0",
  873. "System.Security.Cryptography.ProtectedData": "4.5.0"
  874. },
  875. "compile": {
  876. "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll": {
  877. "related": ".xml"
  878. }
  879. },
  880. "runtime": {
  881. "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll": {
  882. "related": ".xml"
  883. }
  884. }
  885. },
  886. "Microsoft.IdentityModel.Abstractions/6.35.0": {
  887. "type": "package",
  888. "compile": {
  889. "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": {
  890. "related": ".xml"
  891. }
  892. },
  893. "runtime": {
  894. "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": {
  895. "related": ".xml"
  896. }
  897. }
  898. },
  899. "Microsoft.IdentityModel.JsonWebTokens/6.35.0": {
  900. "type": "package",
  901. "dependencies": {
  902. "Microsoft.IdentityModel.Tokens": "6.35.0",
  903. "System.Text.Encoding": "4.3.0",
  904. "System.Text.Encodings.Web": "4.7.2",
  905. "System.Text.Json": "4.7.2"
  906. },
  907. "compile": {
  908. "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  909. "related": ".xml"
  910. }
  911. },
  912. "runtime": {
  913. "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  914. "related": ".xml"
  915. }
  916. }
  917. },
  918. "Microsoft.IdentityModel.Logging/6.35.0": {
  919. "type": "package",
  920. "dependencies": {
  921. "Microsoft.IdentityModel.Abstractions": "6.35.0"
  922. },
  923. "compile": {
  924. "lib/net6.0/Microsoft.IdentityModel.Logging.dll": {
  925. "related": ".xml"
  926. }
  927. },
  928. "runtime": {
  929. "lib/net6.0/Microsoft.IdentityModel.Logging.dll": {
  930. "related": ".xml"
  931. }
  932. }
  933. },
  934. "Microsoft.IdentityModel.Protocols/6.35.0": {
  935. "type": "package",
  936. "dependencies": {
  937. "Microsoft.IdentityModel.Logging": "6.35.0",
  938. "Microsoft.IdentityModel.Tokens": "6.35.0"
  939. },
  940. "compile": {
  941. "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": {
  942. "related": ".xml"
  943. }
  944. },
  945. "runtime": {
  946. "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": {
  947. "related": ".xml"
  948. }
  949. }
  950. },
  951. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.35.0": {
  952. "type": "package",
  953. "dependencies": {
  954. "Microsoft.IdentityModel.Protocols": "6.35.0",
  955. "System.IdentityModel.Tokens.Jwt": "6.35.0"
  956. },
  957. "compile": {
  958. "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  959. "related": ".xml"
  960. }
  961. },
  962. "runtime": {
  963. "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  964. "related": ".xml"
  965. }
  966. }
  967. },
  968. "Microsoft.IdentityModel.Tokens/6.35.0": {
  969. "type": "package",
  970. "dependencies": {
  971. "Microsoft.CSharp": "4.5.0",
  972. "Microsoft.IdentityModel.Logging": "6.35.0",
  973. "System.Security.Cryptography.Cng": "4.5.0"
  974. },
  975. "compile": {
  976. "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": {
  977. "related": ".xml"
  978. }
  979. },
  980. "runtime": {
  981. "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": {
  982. "related": ".xml"
  983. }
  984. }
  985. },
  986. "Microsoft.NETCore.Platforms/1.1.0": {
  987. "type": "package",
  988. "compile": {
  989. "lib/netstandard1.0/_._": {}
  990. },
  991. "runtime": {
  992. "lib/netstandard1.0/_._": {}
  993. }
  994. },
  995. "Microsoft.NETCore.Targets/1.1.0": {
  996. "type": "package",
  997. "compile": {
  998. "lib/netstandard1.0/_._": {}
  999. },
  1000. "runtime": {
  1001. "lib/netstandard1.0/_._": {}
  1002. }
  1003. },
  1004. "Microsoft.SqlServer.Server/1.0.0": {
  1005. "type": "package",
  1006. "compile": {
  1007. "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": {
  1008. "related": ".pdb;.xml"
  1009. }
  1010. },
  1011. "runtime": {
  1012. "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": {
  1013. "related": ".pdb;.xml"
  1014. }
  1015. }
  1016. },
  1017. "Microsoft.Win32.SystemEvents/6.0.0": {
  1018. "type": "package",
  1019. "compile": {
  1020. "lib/net6.0/_._": {
  1021. "related": ".xml"
  1022. }
  1023. },
  1024. "runtime": {
  1025. "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
  1026. "related": ".xml"
  1027. }
  1028. },
  1029. "build": {
  1030. "buildTransitive/netcoreapp3.1/_._": {}
  1031. },
  1032. "runtimeTargets": {
  1033. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
  1034. "assetType": "runtime",
  1035. "rid": "win"
  1036. }
  1037. }
  1038. },
  1039. "Mono.TextTemplating/2.2.1": {
  1040. "type": "package",
  1041. "dependencies": {
  1042. "System.CodeDom": "4.4.0"
  1043. },
  1044. "compile": {
  1045. "lib/netstandard2.0/_._": {}
  1046. },
  1047. "runtime": {
  1048. "lib/netstandard2.0/Mono.TextTemplating.dll": {}
  1049. }
  1050. },
  1051. "Newtonsoft.Json/13.0.3": {
  1052. "type": "package",
  1053. "compile": {
  1054. "lib/net6.0/Newtonsoft.Json.dll": {
  1055. "related": ".xml"
  1056. }
  1057. },
  1058. "runtime": {
  1059. "lib/net6.0/Newtonsoft.Json.dll": {
  1060. "related": ".xml"
  1061. }
  1062. }
  1063. },
  1064. "NReco.PdfGenerator/1.2.1": {
  1065. "type": "package",
  1066. "compile": {
  1067. "lib/netstandard2.0/NReco.PdfGenerator.dll": {
  1068. "related": ".xml"
  1069. }
  1070. },
  1071. "runtime": {
  1072. "lib/netstandard2.0/NReco.PdfGenerator.dll": {
  1073. "related": ".xml"
  1074. }
  1075. }
  1076. },
  1077. "System.CodeDom/4.4.0": {
  1078. "type": "package",
  1079. "compile": {
  1080. "ref/netstandard2.0/_._": {
  1081. "related": ".xml"
  1082. }
  1083. },
  1084. "runtime": {
  1085. "lib/netstandard2.0/System.CodeDom.dll": {}
  1086. }
  1087. },
  1088. "System.Collections.Immutable/6.0.0": {
  1089. "type": "package",
  1090. "dependencies": {
  1091. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1092. },
  1093. "compile": {
  1094. "lib/net6.0/_._": {
  1095. "related": ".xml"
  1096. }
  1097. },
  1098. "runtime": {
  1099. "lib/net6.0/System.Collections.Immutable.dll": {
  1100. "related": ".xml"
  1101. }
  1102. },
  1103. "build": {
  1104. "buildTransitive/netcoreapp3.1/_._": {}
  1105. }
  1106. },
  1107. "System.Composition/6.0.0": {
  1108. "type": "package",
  1109. "dependencies": {
  1110. "System.Composition.AttributedModel": "6.0.0",
  1111. "System.Composition.Convention": "6.0.0",
  1112. "System.Composition.Hosting": "6.0.0",
  1113. "System.Composition.Runtime": "6.0.0",
  1114. "System.Composition.TypedParts": "6.0.0"
  1115. },
  1116. "build": {
  1117. "buildTransitive/netcoreapp3.1/_._": {}
  1118. }
  1119. },
  1120. "System.Composition.AttributedModel/6.0.0": {
  1121. "type": "package",
  1122. "compile": {
  1123. "lib/net6.0/_._": {
  1124. "related": ".xml"
  1125. }
  1126. },
  1127. "runtime": {
  1128. "lib/net6.0/System.Composition.AttributedModel.dll": {
  1129. "related": ".xml"
  1130. }
  1131. },
  1132. "build": {
  1133. "buildTransitive/netcoreapp3.1/_._": {}
  1134. }
  1135. },
  1136. "System.Composition.Convention/6.0.0": {
  1137. "type": "package",
  1138. "dependencies": {
  1139. "System.Composition.AttributedModel": "6.0.0"
  1140. },
  1141. "compile": {
  1142. "lib/net6.0/_._": {
  1143. "related": ".xml"
  1144. }
  1145. },
  1146. "runtime": {
  1147. "lib/net6.0/System.Composition.Convention.dll": {
  1148. "related": ".xml"
  1149. }
  1150. },
  1151. "build": {
  1152. "buildTransitive/netcoreapp3.1/_._": {}
  1153. }
  1154. },
  1155. "System.Composition.Hosting/6.0.0": {
  1156. "type": "package",
  1157. "dependencies": {
  1158. "System.Composition.Runtime": "6.0.0"
  1159. },
  1160. "compile": {
  1161. "lib/net6.0/_._": {
  1162. "related": ".xml"
  1163. }
  1164. },
  1165. "runtime": {
  1166. "lib/net6.0/System.Composition.Hosting.dll": {
  1167. "related": ".xml"
  1168. }
  1169. },
  1170. "build": {
  1171. "buildTransitive/netcoreapp3.1/_._": {}
  1172. }
  1173. },
  1174. "System.Composition.Runtime/6.0.0": {
  1175. "type": "package",
  1176. "compile": {
  1177. "lib/net6.0/_._": {
  1178. "related": ".xml"
  1179. }
  1180. },
  1181. "runtime": {
  1182. "lib/net6.0/System.Composition.Runtime.dll": {
  1183. "related": ".xml"
  1184. }
  1185. },
  1186. "build": {
  1187. "buildTransitive/netcoreapp3.1/_._": {}
  1188. }
  1189. },
  1190. "System.Composition.TypedParts/6.0.0": {
  1191. "type": "package",
  1192. "dependencies": {
  1193. "System.Composition.AttributedModel": "6.0.0",
  1194. "System.Composition.Hosting": "6.0.0",
  1195. "System.Composition.Runtime": "6.0.0"
  1196. },
  1197. "compile": {
  1198. "lib/net6.0/_._": {
  1199. "related": ".xml"
  1200. }
  1201. },
  1202. "runtime": {
  1203. "lib/net6.0/System.Composition.TypedParts.dll": {
  1204. "related": ".xml"
  1205. }
  1206. },
  1207. "build": {
  1208. "buildTransitive/netcoreapp3.1/_._": {}
  1209. }
  1210. },
  1211. "System.Configuration.ConfigurationManager/6.0.1": {
  1212. "type": "package",
  1213. "dependencies": {
  1214. "System.Security.Cryptography.ProtectedData": "6.0.0",
  1215. "System.Security.Permissions": "6.0.0"
  1216. },
  1217. "compile": {
  1218. "lib/net6.0/_._": {
  1219. "related": ".xml"
  1220. }
  1221. },
  1222. "runtime": {
  1223. "lib/net6.0/System.Configuration.ConfigurationManager.dll": {
  1224. "related": ".xml"
  1225. }
  1226. },
  1227. "build": {
  1228. "buildTransitive/netcoreapp3.1/_._": {}
  1229. }
  1230. },
  1231. "System.Diagnostics.DiagnosticSource/6.0.1": {
  1232. "type": "package",
  1233. "dependencies": {
  1234. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1235. },
  1236. "compile": {
  1237. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
  1238. "related": ".xml"
  1239. }
  1240. },
  1241. "runtime": {
  1242. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
  1243. "related": ".xml"
  1244. }
  1245. },
  1246. "build": {
  1247. "buildTransitive/netcoreapp3.1/_._": {}
  1248. }
  1249. },
  1250. "System.Drawing.Common/6.0.0": {
  1251. "type": "package",
  1252. "dependencies": {
  1253. "Microsoft.Win32.SystemEvents": "6.0.0"
  1254. },
  1255. "compile": {
  1256. "lib/net6.0/_._": {
  1257. "related": ".xml"
  1258. }
  1259. },
  1260. "runtime": {
  1261. "lib/net6.0/System.Drawing.Common.dll": {
  1262. "related": ".xml"
  1263. }
  1264. },
  1265. "build": {
  1266. "buildTransitive/netcoreapp3.1/_._": {}
  1267. },
  1268. "runtimeTargets": {
  1269. "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": {
  1270. "assetType": "runtime",
  1271. "rid": "unix"
  1272. },
  1273. "runtimes/win/lib/net6.0/System.Drawing.Common.dll": {
  1274. "assetType": "runtime",
  1275. "rid": "win"
  1276. }
  1277. }
  1278. },
  1279. "System.Formats.Asn1/5.0.0": {
  1280. "type": "package",
  1281. "compile": {
  1282. "lib/netstandard2.0/_._": {
  1283. "related": ".xml"
  1284. }
  1285. },
  1286. "runtime": {
  1287. "lib/netstandard2.0/System.Formats.Asn1.dll": {
  1288. "related": ".xml"
  1289. }
  1290. }
  1291. },
  1292. "System.IdentityModel.Tokens.Jwt/6.35.0": {
  1293. "type": "package",
  1294. "dependencies": {
  1295. "Microsoft.IdentityModel.JsonWebTokens": "6.35.0",
  1296. "Microsoft.IdentityModel.Tokens": "6.35.0"
  1297. },
  1298. "compile": {
  1299. "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": {
  1300. "related": ".xml"
  1301. }
  1302. },
  1303. "runtime": {
  1304. "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": {
  1305. "related": ".xml"
  1306. }
  1307. }
  1308. },
  1309. "System.IO.FileSystem.AccessControl/5.0.0": {
  1310. "type": "package",
  1311. "dependencies": {
  1312. "System.Security.AccessControl": "5.0.0",
  1313. "System.Security.Principal.Windows": "5.0.0"
  1314. },
  1315. "compile": {
  1316. "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {
  1317. "related": ".xml"
  1318. }
  1319. },
  1320. "runtime": {
  1321. "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {
  1322. "related": ".xml"
  1323. }
  1324. },
  1325. "runtimeTargets": {
  1326. "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {
  1327. "assetType": "runtime",
  1328. "rid": "win"
  1329. }
  1330. }
  1331. },
  1332. "System.IO.Pipelines/6.0.3": {
  1333. "type": "package",
  1334. "compile": {
  1335. "lib/net6.0/System.IO.Pipelines.dll": {
  1336. "related": ".xml"
  1337. }
  1338. },
  1339. "runtime": {
  1340. "lib/net6.0/System.IO.Pipelines.dll": {
  1341. "related": ".xml"
  1342. }
  1343. },
  1344. "build": {
  1345. "buildTransitive/netcoreapp3.1/_._": {}
  1346. }
  1347. },
  1348. "System.Memory/4.5.4": {
  1349. "type": "package",
  1350. "compile": {
  1351. "ref/netcoreapp2.1/_._": {}
  1352. },
  1353. "runtime": {
  1354. "lib/netcoreapp2.1/_._": {}
  1355. }
  1356. },
  1357. "System.Memory.Data/1.0.2": {
  1358. "type": "package",
  1359. "dependencies": {
  1360. "System.Text.Encodings.Web": "4.7.2",
  1361. "System.Text.Json": "4.6.0"
  1362. },
  1363. "compile": {
  1364. "lib/netstandard2.0/System.Memory.Data.dll": {
  1365. "related": ".xml"
  1366. }
  1367. },
  1368. "runtime": {
  1369. "lib/netstandard2.0/System.Memory.Data.dll": {
  1370. "related": ".xml"
  1371. }
  1372. }
  1373. },
  1374. "System.Numerics.Vectors/4.5.0": {
  1375. "type": "package",
  1376. "compile": {
  1377. "ref/netcoreapp2.0/_._": {}
  1378. },
  1379. "runtime": {
  1380. "lib/netcoreapp2.0/_._": {}
  1381. }
  1382. },
  1383. "System.Reflection.Metadata/6.0.1": {
  1384. "type": "package",
  1385. "dependencies": {
  1386. "System.Collections.Immutable": "6.0.0"
  1387. },
  1388. "compile": {
  1389. "lib/net6.0/_._": {
  1390. "related": ".xml"
  1391. }
  1392. },
  1393. "runtime": {
  1394. "lib/net6.0/System.Reflection.Metadata.dll": {
  1395. "related": ".xml"
  1396. }
  1397. },
  1398. "build": {
  1399. "buildTransitive/netcoreapp3.1/_._": {}
  1400. }
  1401. },
  1402. "System.Runtime/4.3.0": {
  1403. "type": "package",
  1404. "dependencies": {
  1405. "Microsoft.NETCore.Platforms": "1.1.0",
  1406. "Microsoft.NETCore.Targets": "1.1.0"
  1407. },
  1408. "compile": {
  1409. "ref/netstandard1.5/System.Runtime.dll": {
  1410. "related": ".xml"
  1411. }
  1412. }
  1413. },
  1414. "System.Runtime.Caching/6.0.0": {
  1415. "type": "package",
  1416. "dependencies": {
  1417. "System.Configuration.ConfigurationManager": "6.0.0"
  1418. },
  1419. "compile": {
  1420. "lib/net6.0/_._": {
  1421. "related": ".xml"
  1422. }
  1423. },
  1424. "runtime": {
  1425. "lib/net6.0/System.Runtime.Caching.dll": {
  1426. "related": ".xml"
  1427. }
  1428. },
  1429. "build": {
  1430. "buildTransitive/netcoreapp3.1/_._": {}
  1431. },
  1432. "runtimeTargets": {
  1433. "runtimes/win/lib/net6.0/System.Runtime.Caching.dll": {
  1434. "assetType": "runtime",
  1435. "rid": "win"
  1436. }
  1437. }
  1438. },
  1439. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  1440. "type": "package",
  1441. "compile": {
  1442. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
  1443. "related": ".xml"
  1444. }
  1445. },
  1446. "runtime": {
  1447. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
  1448. "related": ".xml"
  1449. }
  1450. },
  1451. "build": {
  1452. "buildTransitive/netcoreapp3.1/_._": {}
  1453. }
  1454. },
  1455. "System.Security.AccessControl/6.0.0": {
  1456. "type": "package",
  1457. "compile": {
  1458. "lib/net6.0/System.Security.AccessControl.dll": {
  1459. "related": ".xml"
  1460. }
  1461. },
  1462. "runtime": {
  1463. "lib/net6.0/System.Security.AccessControl.dll": {
  1464. "related": ".xml"
  1465. }
  1466. },
  1467. "build": {
  1468. "buildTransitive/netcoreapp3.1/_._": {}
  1469. },
  1470. "runtimeTargets": {
  1471. "runtimes/win/lib/net6.0/System.Security.AccessControl.dll": {
  1472. "assetType": "runtime",
  1473. "rid": "win"
  1474. }
  1475. }
  1476. },
  1477. "System.Security.Cryptography.Cng/5.0.0": {
  1478. "type": "package",
  1479. "dependencies": {
  1480. "System.Formats.Asn1": "5.0.0"
  1481. },
  1482. "compile": {
  1483. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
  1484. "related": ".xml"
  1485. }
  1486. },
  1487. "runtime": {
  1488. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
  1489. "related": ".xml"
  1490. }
  1491. },
  1492. "runtimeTargets": {
  1493. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
  1494. "assetType": "runtime",
  1495. "rid": "win"
  1496. }
  1497. }
  1498. },
  1499. "System.Security.Cryptography.ProtectedData/6.0.0": {
  1500. "type": "package",
  1501. "compile": {
  1502. "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
  1503. "related": ".xml"
  1504. }
  1505. },
  1506. "runtime": {
  1507. "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
  1508. "related": ".xml"
  1509. }
  1510. },
  1511. "build": {
  1512. "buildTransitive/netcoreapp3.1/_._": {}
  1513. },
  1514. "runtimeTargets": {
  1515. "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
  1516. "assetType": "runtime",
  1517. "rid": "win"
  1518. }
  1519. }
  1520. },
  1521. "System.Security.Permissions/6.0.0": {
  1522. "type": "package",
  1523. "dependencies": {
  1524. "System.Security.AccessControl": "6.0.0",
  1525. "System.Windows.Extensions": "6.0.0"
  1526. },
  1527. "compile": {
  1528. "lib/net6.0/_._": {
  1529. "related": ".xml"
  1530. }
  1531. },
  1532. "runtime": {
  1533. "lib/net6.0/System.Security.Permissions.dll": {
  1534. "related": ".xml"
  1535. }
  1536. },
  1537. "build": {
  1538. "buildTransitive/netcoreapp3.1/_._": {}
  1539. }
  1540. },
  1541. "System.Security.Principal.Windows/5.0.0": {
  1542. "type": "package",
  1543. "compile": {
  1544. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
  1545. "related": ".xml"
  1546. }
  1547. },
  1548. "runtime": {
  1549. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  1550. "related": ".xml"
  1551. }
  1552. },
  1553. "runtimeTargets": {
  1554. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  1555. "assetType": "runtime",
  1556. "rid": "unix"
  1557. },
  1558. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  1559. "assetType": "runtime",
  1560. "rid": "win"
  1561. }
  1562. }
  1563. },
  1564. "System.Text.Encoding/4.3.0": {
  1565. "type": "package",
  1566. "dependencies": {
  1567. "Microsoft.NETCore.Platforms": "1.1.0",
  1568. "Microsoft.NETCore.Targets": "1.1.0",
  1569. "System.Runtime": "4.3.0"
  1570. },
  1571. "compile": {
  1572. "ref/netstandard1.3/System.Text.Encoding.dll": {
  1573. "related": ".xml"
  1574. }
  1575. }
  1576. },
  1577. "System.Text.Encoding.CodePages/6.0.0": {
  1578. "type": "package",
  1579. "dependencies": {
  1580. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1581. },
  1582. "compile": {
  1583. "lib/net6.0/_._": {
  1584. "related": ".xml"
  1585. }
  1586. },
  1587. "runtime": {
  1588. "lib/net6.0/System.Text.Encoding.CodePages.dll": {
  1589. "related": ".xml"
  1590. }
  1591. },
  1592. "build": {
  1593. "buildTransitive/netcoreapp3.1/_._": {}
  1594. },
  1595. "runtimeTargets": {
  1596. "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll": {
  1597. "assetType": "runtime",
  1598. "rid": "win"
  1599. }
  1600. }
  1601. },
  1602. "System.Text.Encodings.Web/8.0.0": {
  1603. "type": "package",
  1604. "compile": {
  1605. "lib/net8.0/System.Text.Encodings.Web.dll": {
  1606. "related": ".xml"
  1607. }
  1608. },
  1609. "runtime": {
  1610. "lib/net8.0/System.Text.Encodings.Web.dll": {
  1611. "related": ".xml"
  1612. }
  1613. },
  1614. "build": {
  1615. "buildTransitive/net6.0/_._": {}
  1616. },
  1617. "runtimeTargets": {
  1618. "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll": {
  1619. "assetType": "runtime",
  1620. "rid": "browser"
  1621. }
  1622. }
  1623. },
  1624. "System.Text.Json/8.0.0": {
  1625. "type": "package",
  1626. "dependencies": {
  1627. "System.Text.Encodings.Web": "8.0.0"
  1628. },
  1629. "compile": {
  1630. "lib/net8.0/System.Text.Json.dll": {
  1631. "related": ".xml"
  1632. }
  1633. },
  1634. "runtime": {
  1635. "lib/net8.0/System.Text.Json.dll": {
  1636. "related": ".xml"
  1637. }
  1638. },
  1639. "build": {
  1640. "buildTransitive/net6.0/System.Text.Json.targets": {}
  1641. }
  1642. },
  1643. "System.Threading.Channels/6.0.0": {
  1644. "type": "package",
  1645. "compile": {
  1646. "lib/net6.0/_._": {
  1647. "related": ".xml"
  1648. }
  1649. },
  1650. "runtime": {
  1651. "lib/net6.0/System.Threading.Channels.dll": {
  1652. "related": ".xml"
  1653. }
  1654. },
  1655. "build": {
  1656. "buildTransitive/netcoreapp3.1/_._": {}
  1657. }
  1658. },
  1659. "System.Threading.Tasks.Extensions/4.5.4": {
  1660. "type": "package",
  1661. "compile": {
  1662. "ref/netcoreapp2.1/_._": {}
  1663. },
  1664. "runtime": {
  1665. "lib/netcoreapp2.1/_._": {}
  1666. }
  1667. },
  1668. "System.Windows.Extensions/6.0.0": {
  1669. "type": "package",
  1670. "dependencies": {
  1671. "System.Drawing.Common": "6.0.0"
  1672. },
  1673. "compile": {
  1674. "lib/net6.0/_._": {
  1675. "related": ".xml"
  1676. }
  1677. },
  1678. "runtime": {
  1679. "lib/net6.0/System.Windows.Extensions.dll": {
  1680. "related": ".xml"
  1681. }
  1682. },
  1683. "runtimeTargets": {
  1684. "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": {
  1685. "assetType": "runtime",
  1686. "rid": "win"
  1687. }
  1688. }
  1689. },
  1690. "AipGateway.API.Domain/1.0.0": {
  1691. "type": "project",
  1692. "framework": ".NETCoreApp,Version=v8.0",
  1693. "dependencies": {
  1694. "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1",
  1695. "FluentValidation": "11.9.1",
  1696. "FluentValidation.DependencyInjectionExtensions": "11.9.1",
  1697. "Microsoft.AspNetCore.Http.Features": "5.0.17",
  1698. "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "8.0.0",
  1699. "Microsoft.EntityFrameworkCore": "8.0.4",
  1700. "Microsoft.EntityFrameworkCore.SqlServer": "8.0.4",
  1701. "Microsoft.Extensions.Identity.Stores": "8.0.0",
  1702. "NReco.PdfGenerator": "1.2.1",
  1703. "Newtonsoft.Json": "13.0.3"
  1704. },
  1705. "compile": {
  1706. "bin/placeholder/AipGateway.API.Domain.dll": {}
  1707. },
  1708. "runtime": {
  1709. "bin/placeholder/AipGateway.API.Domain.dll": {}
  1710. }
  1711. }
  1712. }
  1713. },
  1714. "libraries": {
  1715. "AutoMapper/12.0.1": {
  1716. "sha512": "hvV62vl6Hp/WfQ24yzo3Co9+OPl8wH8hApwVtgWpiAynVJkUcs7xvehnSftawL8Pe8FrPffBRM3hwzLQqWDNjA==",
  1717. "type": "package",
  1718. "path": "automapper/12.0.1",
  1719. "files": [
  1720. ".nupkg.metadata",
  1721. ".signature.p7s",
  1722. "README.md",
  1723. "automapper.12.0.1.nupkg.sha512",
  1724. "automapper.nuspec",
  1725. "icon.png",
  1726. "lib/netstandard2.1/AutoMapper.dll",
  1727. "lib/netstandard2.1/AutoMapper.xml"
  1728. ]
  1729. },
  1730. "AutoMapper.Extensions.Microsoft.DependencyInjection/12.0.1": {
  1731. "sha512": "+g/K+Vpe3gGMKGzjslMOdqNlkikScDjWfVvmWTayrDHaG/n2pPmFBMa+jKX1r/h6BDGFdkyRjAuhFE3ykW+r1g==",
  1732. "type": "package",
  1733. "path": "automapper.extensions.microsoft.dependencyinjection/12.0.1",
  1734. "files": [
  1735. ".nupkg.metadata",
  1736. ".signature.p7s",
  1737. "README.md",
  1738. "automapper.extensions.microsoft.dependencyinjection.12.0.1.nupkg.sha512",
  1739. "automapper.extensions.microsoft.dependencyinjection.nuspec",
  1740. "icon.png",
  1741. "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll"
  1742. ]
  1743. },
  1744. "Azure.Core/1.35.0": {
  1745. "sha512": "hENcx03Jyuqv05F4RBEPbxz29UrM3Nbhnr6Wl6NQpoU9BCIbL3XLentrxDCTrH54NLS11Exxi/o8MYgT/cnKFA==",
  1746. "type": "package",
  1747. "path": "azure.core/1.35.0",
  1748. "files": [
  1749. ".nupkg.metadata",
  1750. ".signature.p7s",
  1751. "CHANGELOG.md",
  1752. "README.md",
  1753. "azure.core.1.35.0.nupkg.sha512",
  1754. "azure.core.nuspec",
  1755. "azureicon.png",
  1756. "lib/net461/Azure.Core.dll",
  1757. "lib/net461/Azure.Core.xml",
  1758. "lib/net472/Azure.Core.dll",
  1759. "lib/net472/Azure.Core.xml",
  1760. "lib/net5.0/Azure.Core.dll",
  1761. "lib/net5.0/Azure.Core.xml",
  1762. "lib/net6.0/Azure.Core.dll",
  1763. "lib/net6.0/Azure.Core.xml",
  1764. "lib/netcoreapp2.1/Azure.Core.dll",
  1765. "lib/netcoreapp2.1/Azure.Core.xml",
  1766. "lib/netstandard2.0/Azure.Core.dll",
  1767. "lib/netstandard2.0/Azure.Core.xml"
  1768. ]
  1769. },
  1770. "Azure.Identity/1.10.3": {
  1771. "sha512": "l1Xm2MWOF2Mzcwuarlw8kWQXLZk3UeB55aQXVyjj23aBfDwOZ3gu5GP2kJ6KlmZeZv2TCzw7x4L3V36iNr3gww==",
  1772. "type": "package",
  1773. "path": "azure.identity/1.10.3",
  1774. "files": [
  1775. ".nupkg.metadata",
  1776. ".signature.p7s",
  1777. "CHANGELOG.md",
  1778. "README.md",
  1779. "azure.identity.1.10.3.nupkg.sha512",
  1780. "azure.identity.nuspec",
  1781. "azureicon.png",
  1782. "lib/netstandard2.0/Azure.Identity.dll",
  1783. "lib/netstandard2.0/Azure.Identity.xml"
  1784. ]
  1785. },
  1786. "FluentValidation/11.9.1": {
  1787. "sha512": "C+PqISSMdlOZZJx0Hx25atW32tv4vbpsaiQB+PLjK+ZGLzOFuHl1fUJ3Lny77mIZ31ZtYtNG0JgUjxa3wwLsWg==",
  1788. "type": "package",
  1789. "path": "fluentvalidation/11.9.1",
  1790. "files": [
  1791. ".nupkg.metadata",
  1792. ".signature.p7s",
  1793. "README.md",
  1794. "fluent-validation-icon.png",
  1795. "fluentvalidation.11.9.1.nupkg.sha512",
  1796. "fluentvalidation.nuspec",
  1797. "lib/net5.0/FluentValidation.dll",
  1798. "lib/net5.0/FluentValidation.xml",
  1799. "lib/net6.0/FluentValidation.dll",
  1800. "lib/net6.0/FluentValidation.xml",
  1801. "lib/net7.0/FluentValidation.dll",
  1802. "lib/net7.0/FluentValidation.xml",
  1803. "lib/net8.0/FluentValidation.dll",
  1804. "lib/net8.0/FluentValidation.xml",
  1805. "lib/netstandard2.0/FluentValidation.dll",
  1806. "lib/netstandard2.0/FluentValidation.xml",
  1807. "lib/netstandard2.1/FluentValidation.dll",
  1808. "lib/netstandard2.1/FluentValidation.xml"
  1809. ]
  1810. },
  1811. "FluentValidation.DependencyInjectionExtensions/11.9.1": {
  1812. "sha512": "3jJbFcCWhiXhrCKFPjKihzccmosv+CleYewd2zEYS4aaUHx9zQSgOvkYbWUGTbDwJ5j2nDWE0Pr1EQ2xY4pryg==",
  1813. "type": "package",
  1814. "path": "fluentvalidation.dependencyinjectionextensions/11.9.1",
  1815. "files": [
  1816. ".nupkg.metadata",
  1817. ".signature.p7s",
  1818. "README.md",
  1819. "fluent-validation-icon.png",
  1820. "fluentvalidation.dependencyinjectionextensions.11.9.1.nupkg.sha512",
  1821. "fluentvalidation.dependencyinjectionextensions.nuspec",
  1822. "lib/netstandard2.0/FluentValidation.DependencyInjectionExtensions.dll",
  1823. "lib/netstandard2.0/FluentValidation.DependencyInjectionExtensions.xml",
  1824. "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll",
  1825. "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.xml"
  1826. ]
  1827. },
  1828. "Humanizer.Core/2.14.1": {
  1829. "sha512": "lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==",
  1830. "type": "package",
  1831. "path": "humanizer.core/2.14.1",
  1832. "files": [
  1833. ".nupkg.metadata",
  1834. ".signature.p7s",
  1835. "humanizer.core.2.14.1.nupkg.sha512",
  1836. "humanizer.core.nuspec",
  1837. "lib/net6.0/Humanizer.dll",
  1838. "lib/net6.0/Humanizer.xml",
  1839. "lib/netstandard1.0/Humanizer.dll",
  1840. "lib/netstandard1.0/Humanizer.xml",
  1841. "lib/netstandard2.0/Humanizer.dll",
  1842. "lib/netstandard2.0/Humanizer.xml",
  1843. "logo.png"
  1844. ]
  1845. },
  1846. "Microsoft.AspNetCore.Cryptography.Internal/8.0.0": {
  1847. "sha512": "buuMMCTxFcVkOkEftb2OafYxrveNGre9KJF4Oi1DkR4rxIj6oLam7Wq3g0Fp9hNVpJteKEPiupsxYnPrD/oUGA==",
  1848. "type": "package",
  1849. "path": "microsoft.aspnetcore.cryptography.internal/8.0.0",
  1850. "files": [
  1851. ".nupkg.metadata",
  1852. ".signature.p7s",
  1853. "Icon.png",
  1854. "THIRD-PARTY-NOTICES.TXT",
  1855. "lib/net462/Microsoft.AspNetCore.Cryptography.Internal.dll",
  1856. "lib/net462/Microsoft.AspNetCore.Cryptography.Internal.xml",
  1857. "lib/net8.0/Microsoft.AspNetCore.Cryptography.Internal.dll",
  1858. "lib/net8.0/Microsoft.AspNetCore.Cryptography.Internal.xml",
  1859. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll",
  1860. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.xml",
  1861. "microsoft.aspnetcore.cryptography.internal.8.0.0.nupkg.sha512",
  1862. "microsoft.aspnetcore.cryptography.internal.nuspec"
  1863. ]
  1864. },
  1865. "Microsoft.AspNetCore.Cryptography.KeyDerivation/8.0.0": {
  1866. "sha512": "65w93R5wqUUs35R9wjHHDf75GqAbxJsNByKZo5TbQOWSXcUbLWrDUWBQHv78iXIT0PL1pXNqKQz7OHiHMvo0/A==",
  1867. "type": "package",
  1868. "path": "microsoft.aspnetcore.cryptography.keyderivation/8.0.0",
  1869. "files": [
  1870. ".nupkg.metadata",
  1871. ".signature.p7s",
  1872. "Icon.png",
  1873. "THIRD-PARTY-NOTICES.TXT",
  1874. "lib/net462/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  1875. "lib/net462/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  1876. "lib/net8.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  1877. "lib/net8.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  1878. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  1879. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  1880. "microsoft.aspnetcore.cryptography.keyderivation.8.0.0.nupkg.sha512",
  1881. "microsoft.aspnetcore.cryptography.keyderivation.nuspec"
  1882. ]
  1883. },
  1884. "Microsoft.AspNetCore.Http.Features/5.0.17": {
  1885. "sha512": "3jG2xS+dx8DDCGV/F+STdPTg89lX3ao3dF/VEPvJaz3wzBIjuadipTtYNEXDIVuOPZwb6jdmhrX9jkzOIBm5cw==",
  1886. "type": "package",
  1887. "path": "microsoft.aspnetcore.http.features/5.0.17",
  1888. "files": [
  1889. ".nupkg.metadata",
  1890. ".signature.p7s",
  1891. "Icon.png",
  1892. "THIRD-PARTY-NOTICES.TXT",
  1893. "lib/net461/Microsoft.AspNetCore.Http.Features.dll",
  1894. "lib/net461/Microsoft.AspNetCore.Http.Features.xml",
  1895. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll",
  1896. "lib/net5.0/Microsoft.AspNetCore.Http.Features.xml",
  1897. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  1898. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  1899. "microsoft.aspnetcore.http.features.5.0.17.nupkg.sha512",
  1900. "microsoft.aspnetcore.http.features.nuspec"
  1901. ]
  1902. },
  1903. "Microsoft.AspNetCore.Identity.EntityFrameworkCore/8.0.0": {
  1904. "sha512": "ua2LSZY/f0BkNUUVPPm83eq4Xnt+FZYutiMimRrzSmv2K2t2Ia/PuP4CfibYNSwnKl6fbZ49Bwn2mQGWnmmvOA==",
  1905. "type": "package",
  1906. "path": "microsoft.aspnetcore.identity.entityframeworkcore/8.0.0",
  1907. "files": [
  1908. ".nupkg.metadata",
  1909. ".signature.p7s",
  1910. "Icon.png",
  1911. "THIRD-PARTY-NOTICES.TXT",
  1912. "lib/net8.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll",
  1913. "lib/net8.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml",
  1914. "microsoft.aspnetcore.identity.entityframeworkcore.8.0.0.nupkg.sha512",
  1915. "microsoft.aspnetcore.identity.entityframeworkcore.nuspec"
  1916. ]
  1917. },
  1918. "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
  1919. "sha512": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==",
  1920. "type": "package",
  1921. "path": "microsoft.bcl.asyncinterfaces/6.0.0",
  1922. "files": [
  1923. ".nupkg.metadata",
  1924. ".signature.p7s",
  1925. "Icon.png",
  1926. "LICENSE.TXT",
  1927. "THIRD-PARTY-NOTICES.TXT",
  1928. "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll",
  1929. "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml",
  1930. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  1931. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
  1932. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  1933. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
  1934. "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512",
  1935. "microsoft.bcl.asyncinterfaces.nuspec",
  1936. "useSharedDesignerContext.txt"
  1937. ]
  1938. },
  1939. "Microsoft.CodeAnalysis.Analyzers/3.3.3": {
  1940. "sha512": "j/rOZtLMVJjrfLRlAMckJLPW/1rze9MT1yfWqSIbUPGRu1m1P0fuo9PmqapwsmePfGB5PJrudQLvmUOAMF0DqQ==",
  1941. "type": "package",
  1942. "path": "microsoft.codeanalysis.analyzers/3.3.3",
  1943. "hasTools": true,
  1944. "files": [
  1945. ".nupkg.metadata",
  1946. ".signature.p7s",
  1947. "Icon.png",
  1948. "ThirdPartyNotices.rtf",
  1949. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll",
  1950. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll",
  1951. "analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1952. "analyzers/dotnet/cs/de/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1953. "analyzers/dotnet/cs/es/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1954. "analyzers/dotnet/cs/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1955. "analyzers/dotnet/cs/it/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1956. "analyzers/dotnet/cs/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1957. "analyzers/dotnet/cs/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1958. "analyzers/dotnet/cs/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1959. "analyzers/dotnet/cs/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1960. "analyzers/dotnet/cs/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1961. "analyzers/dotnet/cs/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1962. "analyzers/dotnet/cs/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1963. "analyzers/dotnet/cs/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1964. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll",
  1965. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll",
  1966. "analyzers/dotnet/vb/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1967. "analyzers/dotnet/vb/de/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1968. "analyzers/dotnet/vb/es/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1969. "analyzers/dotnet/vb/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1970. "analyzers/dotnet/vb/it/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1971. "analyzers/dotnet/vb/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1972. "analyzers/dotnet/vb/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1973. "analyzers/dotnet/vb/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1974. "analyzers/dotnet/vb/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1975. "analyzers/dotnet/vb/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1976. "analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1977. "analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1978. "analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1979. "build/Microsoft.CodeAnalysis.Analyzers.props",
  1980. "build/Microsoft.CodeAnalysis.Analyzers.targets",
  1981. "build/config/analysislevel_2_9_8_all.editorconfig",
  1982. "build/config/analysislevel_2_9_8_default.editorconfig",
  1983. "build/config/analysislevel_2_9_8_minimum.editorconfig",
  1984. "build/config/analysislevel_2_9_8_none.editorconfig",
  1985. "build/config/analysislevel_2_9_8_recommended.editorconfig",
  1986. "build/config/analysislevel_3_3_all.editorconfig",
  1987. "build/config/analysislevel_3_3_default.editorconfig",
  1988. "build/config/analysislevel_3_3_minimum.editorconfig",
  1989. "build/config/analysislevel_3_3_none.editorconfig",
  1990. "build/config/analysislevel_3_3_recommended.editorconfig",
  1991. "build/config/analysislevel_3_all.editorconfig",
  1992. "build/config/analysislevel_3_default.editorconfig",
  1993. "build/config/analysislevel_3_minimum.editorconfig",
  1994. "build/config/analysislevel_3_none.editorconfig",
  1995. "build/config/analysislevel_3_recommended.editorconfig",
  1996. "build/config/analysislevelcorrectness_2_9_8_all.editorconfig",
  1997. "build/config/analysislevelcorrectness_2_9_8_default.editorconfig",
  1998. "build/config/analysislevelcorrectness_2_9_8_minimum.editorconfig",
  1999. "build/config/analysislevelcorrectness_2_9_8_none.editorconfig",
  2000. "build/config/analysislevelcorrectness_2_9_8_recommended.editorconfig",
  2001. "build/config/analysislevelcorrectness_3_3_all.editorconfig",
  2002. "build/config/analysislevelcorrectness_3_3_default.editorconfig",
  2003. "build/config/analysislevelcorrectness_3_3_minimum.editorconfig",
  2004. "build/config/analysislevelcorrectness_3_3_none.editorconfig",
  2005. "build/config/analysislevelcorrectness_3_3_recommended.editorconfig",
  2006. "build/config/analysislevelcorrectness_3_all.editorconfig",
  2007. "build/config/analysislevelcorrectness_3_default.editorconfig",
  2008. "build/config/analysislevelcorrectness_3_minimum.editorconfig",
  2009. "build/config/analysislevelcorrectness_3_none.editorconfig",
  2010. "build/config/analysislevelcorrectness_3_recommended.editorconfig",
  2011. "build/config/analysislevellibrary_2_9_8_all.editorconfig",
  2012. "build/config/analysislevellibrary_2_9_8_default.editorconfig",
  2013. "build/config/analysislevellibrary_2_9_8_minimum.editorconfig",
  2014. "build/config/analysislevellibrary_2_9_8_none.editorconfig",
  2015. "build/config/analysislevellibrary_2_9_8_recommended.editorconfig",
  2016. "build/config/analysislevellibrary_3_3_all.editorconfig",
  2017. "build/config/analysislevellibrary_3_3_default.editorconfig",
  2018. "build/config/analysislevellibrary_3_3_minimum.editorconfig",
  2019. "build/config/analysislevellibrary_3_3_none.editorconfig",
  2020. "build/config/analysislevellibrary_3_3_recommended.editorconfig",
  2021. "build/config/analysislevellibrary_3_all.editorconfig",
  2022. "build/config/analysislevellibrary_3_default.editorconfig",
  2023. "build/config/analysislevellibrary_3_minimum.editorconfig",
  2024. "build/config/analysislevellibrary_3_none.editorconfig",
  2025. "build/config/analysislevellibrary_3_recommended.editorconfig",
  2026. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_all.editorconfig",
  2027. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_default.editorconfig",
  2028. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_minimum.editorconfig",
  2029. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_none.editorconfig",
  2030. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_recommended.editorconfig",
  2031. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_all.editorconfig",
  2032. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_default.editorconfig",
  2033. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_minimum.editorconfig",
  2034. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_none.editorconfig",
  2035. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_recommended.editorconfig",
  2036. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_all.editorconfig",
  2037. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_default.editorconfig",
  2038. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_minimum.editorconfig",
  2039. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_none.editorconfig",
  2040. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_recommended.editorconfig",
  2041. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_all.editorconfig",
  2042. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_default.editorconfig",
  2043. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_minimum.editorconfig",
  2044. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_none.editorconfig",
  2045. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_recommended.editorconfig",
  2046. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_all.editorconfig",
  2047. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_default.editorconfig",
  2048. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_minimum.editorconfig",
  2049. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_none.editorconfig",
  2050. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_recommended.editorconfig",
  2051. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_all.editorconfig",
  2052. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_default.editorconfig",
  2053. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_minimum.editorconfig",
  2054. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_none.editorconfig",
  2055. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_recommended.editorconfig",
  2056. "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_all.editorconfig",
  2057. "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_default.editorconfig",
  2058. "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_minimum.editorconfig",
  2059. "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_none.editorconfig",
  2060. "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_recommended.editorconfig",
  2061. "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_all.editorconfig",
  2062. "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_default.editorconfig",
  2063. "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_minimum.editorconfig",
  2064. "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_none.editorconfig",
  2065. "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_recommended.editorconfig",
  2066. "build/config/analysislevelmicrosoftcodeanalysisdesign_3_all.editorconfig",
  2067. "build/config/analysislevelmicrosoftcodeanalysisdesign_3_default.editorconfig",
  2068. "build/config/analysislevelmicrosoftcodeanalysisdesign_3_minimum.editorconfig",
  2069. "build/config/analysislevelmicrosoftcodeanalysisdesign_3_none.editorconfig",
  2070. "build/config/analysislevelmicrosoftcodeanalysisdesign_3_recommended.editorconfig",
  2071. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_all.editorconfig",
  2072. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_default.editorconfig",
  2073. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_minimum.editorconfig",
  2074. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_none.editorconfig",
  2075. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_recommended.editorconfig",
  2076. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_all.editorconfig",
  2077. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_default.editorconfig",
  2078. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_minimum.editorconfig",
  2079. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_none.editorconfig",
  2080. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_recommended.editorconfig",
  2081. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_all.editorconfig",
  2082. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_default.editorconfig",
  2083. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_minimum.editorconfig",
  2084. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_none.editorconfig",
  2085. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_recommended.editorconfig",
  2086. "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_all.editorconfig",
  2087. "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_default.editorconfig",
  2088. "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_minimum.editorconfig",
  2089. "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_none.editorconfig",
  2090. "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_recommended.editorconfig",
  2091. "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_all.editorconfig",
  2092. "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_default.editorconfig",
  2093. "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_minimum.editorconfig",
  2094. "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_none.editorconfig",
  2095. "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_recommended.editorconfig",
  2096. "build/config/analysislevelmicrosoftcodeanalysislocalization_3_all.editorconfig",
  2097. "build/config/analysislevelmicrosoftcodeanalysislocalization_3_default.editorconfig",
  2098. "build/config/analysislevelmicrosoftcodeanalysislocalization_3_minimum.editorconfig",
  2099. "build/config/analysislevelmicrosoftcodeanalysislocalization_3_none.editorconfig",
  2100. "build/config/analysislevelmicrosoftcodeanalysislocalization_3_recommended.editorconfig",
  2101. "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_all.editorconfig",
  2102. "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_default.editorconfig",
  2103. "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_minimum.editorconfig",
  2104. "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_none.editorconfig",
  2105. "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_recommended.editorconfig",
  2106. "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_all.editorconfig",
  2107. "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_default.editorconfig",
  2108. "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_minimum.editorconfig",
  2109. "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_none.editorconfig",
  2110. "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_recommended.editorconfig",
  2111. "build/config/analysislevelmicrosoftcodeanalysisperformance_3_all.editorconfig",
  2112. "build/config/analysislevelmicrosoftcodeanalysisperformance_3_default.editorconfig",
  2113. "build/config/analysislevelmicrosoftcodeanalysisperformance_3_minimum.editorconfig",
  2114. "build/config/analysislevelmicrosoftcodeanalysisperformance_3_none.editorconfig",
  2115. "build/config/analysislevelmicrosoftcodeanalysisperformance_3_recommended.editorconfig",
  2116. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_all.editorconfig",
  2117. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_default.editorconfig",
  2118. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_minimum.editorconfig",
  2119. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_none.editorconfig",
  2120. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_recommended.editorconfig",
  2121. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_all.editorconfig",
  2122. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_default.editorconfig",
  2123. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_minimum.editorconfig",
  2124. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_none.editorconfig",
  2125. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_recommended.editorconfig",
  2126. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_all.editorconfig",
  2127. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_default.editorconfig",
  2128. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_minimum.editorconfig",
  2129. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_none.editorconfig",
  2130. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_recommended.editorconfig",
  2131. "documentation/Analyzer Configuration.md",
  2132. "documentation/Microsoft.CodeAnalysis.Analyzers.md",
  2133. "documentation/Microsoft.CodeAnalysis.Analyzers.sarif",
  2134. "editorconfig/AllRulesDefault/.editorconfig",
  2135. "editorconfig/AllRulesDisabled/.editorconfig",
  2136. "editorconfig/AllRulesEnabled/.editorconfig",
  2137. "editorconfig/CorrectnessRulesDefault/.editorconfig",
  2138. "editorconfig/CorrectnessRulesEnabled/.editorconfig",
  2139. "editorconfig/DataflowRulesDefault/.editorconfig",
  2140. "editorconfig/DataflowRulesEnabled/.editorconfig",
  2141. "editorconfig/LibraryRulesDefault/.editorconfig",
  2142. "editorconfig/LibraryRulesEnabled/.editorconfig",
  2143. "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesDefault/.editorconfig",
  2144. "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesEnabled/.editorconfig",
  2145. "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesDefault/.editorconfig",
  2146. "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesEnabled/.editorconfig",
  2147. "editorconfig/MicrosoftCodeAnalysisDesignRulesDefault/.editorconfig",
  2148. "editorconfig/MicrosoftCodeAnalysisDesignRulesEnabled/.editorconfig",
  2149. "editorconfig/MicrosoftCodeAnalysisDocumentationRulesDefault/.editorconfig",
  2150. "editorconfig/MicrosoftCodeAnalysisDocumentationRulesEnabled/.editorconfig",
  2151. "editorconfig/MicrosoftCodeAnalysisLocalizationRulesDefault/.editorconfig",
  2152. "editorconfig/MicrosoftCodeAnalysisLocalizationRulesEnabled/.editorconfig",
  2153. "editorconfig/MicrosoftCodeAnalysisPerformanceRulesDefault/.editorconfig",
  2154. "editorconfig/MicrosoftCodeAnalysisPerformanceRulesEnabled/.editorconfig",
  2155. "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesDefault/.editorconfig",
  2156. "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled/.editorconfig",
  2157. "editorconfig/PortedFromFxCopRulesDefault/.editorconfig",
  2158. "editorconfig/PortedFromFxCopRulesEnabled/.editorconfig",
  2159. "microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512",
  2160. "microsoft.codeanalysis.analyzers.nuspec",
  2161. "rulesets/AllRulesDefault.ruleset",
  2162. "rulesets/AllRulesDisabled.ruleset",
  2163. "rulesets/AllRulesEnabled.ruleset",
  2164. "rulesets/CorrectnessRulesDefault.ruleset",
  2165. "rulesets/CorrectnessRulesEnabled.ruleset",
  2166. "rulesets/DataflowRulesDefault.ruleset",
  2167. "rulesets/DataflowRulesEnabled.ruleset",
  2168. "rulesets/LibraryRulesDefault.ruleset",
  2169. "rulesets/LibraryRulesEnabled.ruleset",
  2170. "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset",
  2171. "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset",
  2172. "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset",
  2173. "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset",
  2174. "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset",
  2175. "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset",
  2176. "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset",
  2177. "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset",
  2178. "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset",
  2179. "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset",
  2180. "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset",
  2181. "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset",
  2182. "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesDefault.ruleset",
  2183. "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled.ruleset",
  2184. "rulesets/PortedFromFxCopRulesDefault.ruleset",
  2185. "rulesets/PortedFromFxCopRulesEnabled.ruleset",
  2186. "tools/install.ps1",
  2187. "tools/uninstall.ps1"
  2188. ]
  2189. },
  2190. "Microsoft.CodeAnalysis.Common/4.5.0": {
  2191. "sha512": "lwAbIZNdnY0SUNoDmZHkVUwLO8UyNnyyh1t/4XsbFxi4Ounb3xszIYZaWhyj5ZjyfcwqwmtMbE7fUTVCqQEIdQ==",
  2192. "type": "package",
  2193. "path": "microsoft.codeanalysis.common/4.5.0",
  2194. "files": [
  2195. ".nupkg.metadata",
  2196. ".signature.p7s",
  2197. "Icon.png",
  2198. "ThirdPartyNotices.rtf",
  2199. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll",
  2200. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.pdb",
  2201. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.xml",
  2202. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll",
  2203. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll",
  2204. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll",
  2205. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll",
  2206. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll",
  2207. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll",
  2208. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll",
  2209. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll",
  2210. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll",
  2211. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll",
  2212. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll",
  2213. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
  2214. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
  2215. "lib/netstandard2.0/Microsoft.CodeAnalysis.dll",
  2216. "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb",
  2217. "lib/netstandard2.0/Microsoft.CodeAnalysis.xml",
  2218. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll",
  2219. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll",
  2220. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll",
  2221. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll",
  2222. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll",
  2223. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll",
  2224. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll",
  2225. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll",
  2226. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll",
  2227. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll",
  2228. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll",
  2229. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
  2230. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
  2231. "microsoft.codeanalysis.common.4.5.0.nupkg.sha512",
  2232. "microsoft.codeanalysis.common.nuspec"
  2233. ]
  2234. },
  2235. "Microsoft.CodeAnalysis.CSharp/4.5.0": {
  2236. "sha512": "cM59oMKAOxvdv76bdmaKPy5hfj+oR+zxikWoueEB7CwTko7mt9sVKZI8Qxlov0C/LuKEG+WQwifepqL3vuTiBQ==",
  2237. "type": "package",
  2238. "path": "microsoft.codeanalysis.csharp/4.5.0",
  2239. "files": [
  2240. ".nupkg.metadata",
  2241. ".signature.p7s",
  2242. "Icon.png",
  2243. "ThirdPartyNotices.rtf",
  2244. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll",
  2245. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.pdb",
  2246. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.xml",
  2247. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2248. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2249. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2250. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2251. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2252. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2253. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2254. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2255. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2256. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2257. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2258. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2259. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2260. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll",
  2261. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb",
  2262. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml",
  2263. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2264. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2265. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2266. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2267. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2268. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2269. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2270. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2271. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2272. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2273. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2274. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2275. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2276. "microsoft.codeanalysis.csharp.4.5.0.nupkg.sha512",
  2277. "microsoft.codeanalysis.csharp.nuspec"
  2278. ]
  2279. },
  2280. "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": {
  2281. "sha512": "h74wTpmGOp4yS4hj+EvNzEiPgg/KVs2wmSfTZ81upJZOtPkJsVkgfsgtxxqmAeapjT/vLKfmYV0bS8n5MNVP+g==",
  2282. "type": "package",
  2283. "path": "microsoft.codeanalysis.csharp.workspaces/4.5.0",
  2284. "files": [
  2285. ".nupkg.metadata",
  2286. ".signature.p7s",
  2287. "Icon.png",
  2288. "ThirdPartyNotices.rtf",
  2289. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll",
  2290. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb",
  2291. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.xml",
  2292. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2293. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2294. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2295. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2296. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2297. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2298. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2299. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2300. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2301. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2302. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2303. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2304. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2305. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll",
  2306. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb",
  2307. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml",
  2308. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2309. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2310. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2311. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2312. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2313. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2314. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2315. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2316. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2317. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2318. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2319. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2320. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2321. "microsoft.codeanalysis.csharp.workspaces.4.5.0.nupkg.sha512",
  2322. "microsoft.codeanalysis.csharp.workspaces.nuspec"
  2323. ]
  2324. },
  2325. "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": {
  2326. "sha512": "l4dDRmGELXG72XZaonnOeORyD/T5RpEu5LGHOUIhnv+MmUWDY/m1kWXGwtcgQ5CJ5ynkFiRnIYzTKXYjUs7rbw==",
  2327. "type": "package",
  2328. "path": "microsoft.codeanalysis.workspaces.common/4.5.0",
  2329. "files": [
  2330. ".nupkg.metadata",
  2331. ".signature.p7s",
  2332. "Icon.png",
  2333. "ThirdPartyNotices.rtf",
  2334. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll",
  2335. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.pdb",
  2336. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.xml",
  2337. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2338. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2339. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2340. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2341. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2342. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2343. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2344. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2345. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2346. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2347. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2348. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2349. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2350. "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.dll",
  2351. "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.pdb",
  2352. "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.xml",
  2353. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2354. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2355. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2356. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2357. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2358. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2359. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2360. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2361. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2362. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2363. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2364. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2365. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2366. "microsoft.codeanalysis.workspaces.common.4.5.0.nupkg.sha512",
  2367. "microsoft.codeanalysis.workspaces.common.nuspec"
  2368. ]
  2369. },
  2370. "Microsoft.CSharp/4.7.0": {
  2371. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  2372. "type": "package",
  2373. "path": "microsoft.csharp/4.7.0",
  2374. "files": [
  2375. ".nupkg.metadata",
  2376. ".signature.p7s",
  2377. "LICENSE.TXT",
  2378. "THIRD-PARTY-NOTICES.TXT",
  2379. "lib/MonoAndroid10/_._",
  2380. "lib/MonoTouch10/_._",
  2381. "lib/net45/_._",
  2382. "lib/netcore50/Microsoft.CSharp.dll",
  2383. "lib/netcoreapp2.0/_._",
  2384. "lib/netstandard1.3/Microsoft.CSharp.dll",
  2385. "lib/netstandard2.0/Microsoft.CSharp.dll",
  2386. "lib/netstandard2.0/Microsoft.CSharp.xml",
  2387. "lib/portable-net45+win8+wp8+wpa81/_._",
  2388. "lib/uap10.0.16299/_._",
  2389. "lib/win8/_._",
  2390. "lib/wp80/_._",
  2391. "lib/wpa81/_._",
  2392. "lib/xamarinios10/_._",
  2393. "lib/xamarinmac20/_._",
  2394. "lib/xamarintvos10/_._",
  2395. "lib/xamarinwatchos10/_._",
  2396. "microsoft.csharp.4.7.0.nupkg.sha512",
  2397. "microsoft.csharp.nuspec",
  2398. "ref/MonoAndroid10/_._",
  2399. "ref/MonoTouch10/_._",
  2400. "ref/net45/_._",
  2401. "ref/netcore50/Microsoft.CSharp.dll",
  2402. "ref/netcore50/Microsoft.CSharp.xml",
  2403. "ref/netcore50/de/Microsoft.CSharp.xml",
  2404. "ref/netcore50/es/Microsoft.CSharp.xml",
  2405. "ref/netcore50/fr/Microsoft.CSharp.xml",
  2406. "ref/netcore50/it/Microsoft.CSharp.xml",
  2407. "ref/netcore50/ja/Microsoft.CSharp.xml",
  2408. "ref/netcore50/ko/Microsoft.CSharp.xml",
  2409. "ref/netcore50/ru/Microsoft.CSharp.xml",
  2410. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  2411. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  2412. "ref/netcoreapp2.0/_._",
  2413. "ref/netstandard1.0/Microsoft.CSharp.dll",
  2414. "ref/netstandard1.0/Microsoft.CSharp.xml",
  2415. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  2416. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  2417. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  2418. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  2419. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  2420. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  2421. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  2422. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  2423. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  2424. "ref/netstandard2.0/Microsoft.CSharp.dll",
  2425. "ref/netstandard2.0/Microsoft.CSharp.xml",
  2426. "ref/portable-net45+win8+wp8+wpa81/_._",
  2427. "ref/uap10.0.16299/_._",
  2428. "ref/win8/_._",
  2429. "ref/wp80/_._",
  2430. "ref/wpa81/_._",
  2431. "ref/xamarinios10/_._",
  2432. "ref/xamarinmac20/_._",
  2433. "ref/xamarintvos10/_._",
  2434. "ref/xamarinwatchos10/_._",
  2435. "useSharedDesignerContext.txt",
  2436. "version.txt"
  2437. ]
  2438. },
  2439. "Microsoft.Data.SqlClient/5.1.5": {
  2440. "sha512": "6kvhQjY5uBCdBccezFD2smfnpQjQ33cZtUZVrNvxlwoBu6uopM5INH6uSgLI7JRLtlQ3bMPwnhMq4kchsXeZ5w==",
  2441. "type": "package",
  2442. "path": "microsoft.data.sqlclient/5.1.5",
  2443. "files": [
  2444. ".nupkg.metadata",
  2445. ".signature.p7s",
  2446. "dotnet.png",
  2447. "lib/net462/Microsoft.Data.SqlClient.dll",
  2448. "lib/net462/Microsoft.Data.SqlClient.pdb",
  2449. "lib/net462/Microsoft.Data.SqlClient.xml",
  2450. "lib/net462/de/Microsoft.Data.SqlClient.resources.dll",
  2451. "lib/net462/es/Microsoft.Data.SqlClient.resources.dll",
  2452. "lib/net462/fr/Microsoft.Data.SqlClient.resources.dll",
  2453. "lib/net462/it/Microsoft.Data.SqlClient.resources.dll",
  2454. "lib/net462/ja/Microsoft.Data.SqlClient.resources.dll",
  2455. "lib/net462/ko/Microsoft.Data.SqlClient.resources.dll",
  2456. "lib/net462/pt-BR/Microsoft.Data.SqlClient.resources.dll",
  2457. "lib/net462/ru/Microsoft.Data.SqlClient.resources.dll",
  2458. "lib/net462/zh-Hans/Microsoft.Data.SqlClient.resources.dll",
  2459. "lib/net462/zh-Hant/Microsoft.Data.SqlClient.resources.dll",
  2460. "lib/net6.0/Microsoft.Data.SqlClient.dll",
  2461. "lib/net6.0/Microsoft.Data.SqlClient.pdb",
  2462. "lib/net6.0/Microsoft.Data.SqlClient.xml",
  2463. "lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  2464. "lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  2465. "lib/netstandard2.0/Microsoft.Data.SqlClient.xml",
  2466. "lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  2467. "lib/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  2468. "lib/netstandard2.1/Microsoft.Data.SqlClient.xml",
  2469. "microsoft.data.sqlclient.5.1.5.nupkg.sha512",
  2470. "microsoft.data.sqlclient.nuspec",
  2471. "ref/net462/Microsoft.Data.SqlClient.dll",
  2472. "ref/net462/Microsoft.Data.SqlClient.pdb",
  2473. "ref/net462/Microsoft.Data.SqlClient.xml",
  2474. "ref/net6.0/Microsoft.Data.SqlClient.dll",
  2475. "ref/net6.0/Microsoft.Data.SqlClient.pdb",
  2476. "ref/net6.0/Microsoft.Data.SqlClient.xml",
  2477. "ref/netstandard2.0/Microsoft.Data.SqlClient.dll",
  2478. "ref/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  2479. "ref/netstandard2.0/Microsoft.Data.SqlClient.xml",
  2480. "ref/netstandard2.1/Microsoft.Data.SqlClient.dll",
  2481. "ref/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  2482. "ref/netstandard2.1/Microsoft.Data.SqlClient.xml",
  2483. "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll",
  2484. "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.pdb",
  2485. "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  2486. "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  2487. "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  2488. "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  2489. "runtimes/win/lib/net462/Microsoft.Data.SqlClient.dll",
  2490. "runtimes/win/lib/net462/Microsoft.Data.SqlClient.pdb",
  2491. "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll",
  2492. "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.pdb",
  2493. "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  2494. "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  2495. "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  2496. "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb"
  2497. ]
  2498. },
  2499. "Microsoft.Data.SqlClient.SNI.runtime/5.1.1": {
  2500. "sha512": "wNGM5ZTQCa2blc9ikXQouybGiyMd6IHPVJvAlBEPtr6JepZEOYeDxGyprYvFVeOxlCXs7avridZQ0nYkHzQWCQ==",
  2501. "type": "package",
  2502. "path": "microsoft.data.sqlclient.sni.runtime/5.1.1",
  2503. "files": [
  2504. ".nupkg.metadata",
  2505. ".signature.p7s",
  2506. "LICENSE.txt",
  2507. "dotnet.png",
  2508. "microsoft.data.sqlclient.sni.runtime.5.1.1.nupkg.sha512",
  2509. "microsoft.data.sqlclient.sni.runtime.nuspec",
  2510. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll",
  2511. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll",
  2512. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll",
  2513. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll"
  2514. ]
  2515. },
  2516. "Microsoft.EntityFrameworkCore/8.0.4": {
  2517. "sha512": "/kyu9pXuxQvhg8RO/oN5Q5Og7cDIVvZtrt1z48rX7Yido+zEGkUkp3/Bjd9u45N2uuPPF8mn2pKDlAewCvv3/Q==",
  2518. "type": "package",
  2519. "path": "microsoft.entityframeworkcore/8.0.4",
  2520. "files": [
  2521. ".nupkg.metadata",
  2522. ".signature.p7s",
  2523. "Icon.png",
  2524. "PACKAGE.md",
  2525. "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props",
  2526. "lib/net8.0/Microsoft.EntityFrameworkCore.dll",
  2527. "lib/net8.0/Microsoft.EntityFrameworkCore.xml",
  2528. "microsoft.entityframeworkcore.8.0.4.nupkg.sha512",
  2529. "microsoft.entityframeworkcore.nuspec"
  2530. ]
  2531. },
  2532. "Microsoft.EntityFrameworkCore.Abstractions/8.0.4": {
  2533. "sha512": "S50pjtPNOvRktacaO6UAhvGCPMT56wxqEq8fQfcjaSUySPGba6mKWo6ackw6DdeAR1cA6U+U0uj27warA2KtJA==",
  2534. "type": "package",
  2535. "path": "microsoft.entityframeworkcore.abstractions/8.0.4",
  2536. "files": [
  2537. ".nupkg.metadata",
  2538. ".signature.p7s",
  2539. "Icon.png",
  2540. "PACKAGE.md",
  2541. "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
  2542. "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
  2543. "microsoft.entityframeworkcore.abstractions.8.0.4.nupkg.sha512",
  2544. "microsoft.entityframeworkcore.abstractions.nuspec"
  2545. ]
  2546. },
  2547. "Microsoft.EntityFrameworkCore.Analyzers/8.0.4": {
  2548. "sha512": "P8hfMZECdbgle4Us8HGRUKAjqVwgbtr5JqtCxqEoiVORrNQAmcpu3g1NKwTAoUsO9Z0QRgExtYoAmdggR/DkMQ==",
  2549. "type": "package",
  2550. "path": "microsoft.entityframeworkcore.analyzers/8.0.4",
  2551. "files": [
  2552. ".nupkg.metadata",
  2553. ".signature.p7s",
  2554. "Icon.png",
  2555. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  2556. "docs/PACKAGE.md",
  2557. "lib/netstandard2.0/_._",
  2558. "microsoft.entityframeworkcore.analyzers.8.0.4.nupkg.sha512",
  2559. "microsoft.entityframeworkcore.analyzers.nuspec"
  2560. ]
  2561. },
  2562. "Microsoft.EntityFrameworkCore.Design/8.0.0": {
  2563. "sha512": "94reKYu63jg4O75UI3LMJHwOSi8tQ6IfubiZhdnSsWcgtmAuF8OyLfjK/MIxuvaQRJZAF6E747FIuxjOtb8/og==",
  2564. "type": "package",
  2565. "path": "microsoft.entityframeworkcore.design/8.0.0",
  2566. "files": [
  2567. ".nupkg.metadata",
  2568. ".signature.p7s",
  2569. "Icon.png",
  2570. "build/net8.0/Microsoft.EntityFrameworkCore.Design.props",
  2571. "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll",
  2572. "lib/net8.0/Microsoft.EntityFrameworkCore.Design.xml",
  2573. "microsoft.entityframeworkcore.design.8.0.0.nupkg.sha512",
  2574. "microsoft.entityframeworkcore.design.nuspec"
  2575. ]
  2576. },
  2577. "Microsoft.EntityFrameworkCore.Relational/8.0.4": {
  2578. "sha512": "aWLT6e9a8oMzXgF0YQpYYa3mDeU+yb2UQSQ+RrIgyGgSpzPfSKgpA7v2kOVDuZr2AQ6NNAlWPaBG7wZuKQI96w==",
  2579. "type": "package",
  2580. "path": "microsoft.entityframeworkcore.relational/8.0.4",
  2581. "files": [
  2582. ".nupkg.metadata",
  2583. ".signature.p7s",
  2584. "Icon.png",
  2585. "PACKAGE.md",
  2586. "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll",
  2587. "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.xml",
  2588. "microsoft.entityframeworkcore.relational.8.0.4.nupkg.sha512",
  2589. "microsoft.entityframeworkcore.relational.nuspec"
  2590. ]
  2591. },
  2592. "Microsoft.EntityFrameworkCore.SqlServer/8.0.4": {
  2593. "sha512": "/IlHNxzZGqiuVi+FPtjFZgAOfY989fTPtxw8zhmlFwv5M2WJzBSMlAP4jNVQX/k7/qu+y1YvddPxg4O5QdeRXw==",
  2594. "type": "package",
  2595. "path": "microsoft.entityframeworkcore.sqlserver/8.0.4",
  2596. "files": [
  2597. ".nupkg.metadata",
  2598. ".signature.p7s",
  2599. "Icon.png",
  2600. "PACKAGE.md",
  2601. "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll",
  2602. "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.xml",
  2603. "microsoft.entityframeworkcore.sqlserver.8.0.4.nupkg.sha512",
  2604. "microsoft.entityframeworkcore.sqlserver.nuspec"
  2605. ]
  2606. },
  2607. "Microsoft.EntityFrameworkCore.Tools/8.0.0": {
  2608. "sha512": "zRdaXiiB1gEA0b+AJTd2+drh78gkEA4HyZ1vqNZrKq4xwW8WwavSiQsoeb1UsIMZkocLMBbhQYWClkZzuTKEgQ==",
  2609. "type": "package",
  2610. "path": "microsoft.entityframeworkcore.tools/8.0.0",
  2611. "hasTools": true,
  2612. "files": [
  2613. ".nupkg.metadata",
  2614. ".signature.p7s",
  2615. "Icon.png",
  2616. "lib/net8.0/_._",
  2617. "microsoft.entityframeworkcore.tools.8.0.0.nupkg.sha512",
  2618. "microsoft.entityframeworkcore.tools.nuspec",
  2619. "tools/EntityFrameworkCore.PS2.psd1",
  2620. "tools/EntityFrameworkCore.PS2.psm1",
  2621. "tools/EntityFrameworkCore.psd1",
  2622. "tools/EntityFrameworkCore.psm1",
  2623. "tools/about_EntityFrameworkCore.help.txt",
  2624. "tools/init.ps1",
  2625. "tools/net461/any/ef.exe",
  2626. "tools/net461/win-arm64/ef.exe",
  2627. "tools/net461/win-x86/ef.exe",
  2628. "tools/netcoreapp2.0/any/ef.dll",
  2629. "tools/netcoreapp2.0/any/ef.runtimeconfig.json"
  2630. ]
  2631. },
  2632. "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
  2633. "sha512": "3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==",
  2634. "type": "package",
  2635. "path": "microsoft.extensions.caching.abstractions/8.0.0",
  2636. "files": [
  2637. ".nupkg.metadata",
  2638. ".signature.p7s",
  2639. "Icon.png",
  2640. "LICENSE.TXT",
  2641. "PACKAGE.md",
  2642. "THIRD-PARTY-NOTICES.TXT",
  2643. "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets",
  2644. "buildTransitive/net462/_._",
  2645. "buildTransitive/net6.0/_._",
  2646. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets",
  2647. "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll",
  2648. "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml",
  2649. "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.dll",
  2650. "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.xml",
  2651. "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll",
  2652. "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.xml",
  2653. "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll",
  2654. "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.xml",
  2655. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  2656. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  2657. "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512",
  2658. "microsoft.extensions.caching.abstractions.nuspec",
  2659. "useSharedDesignerContext.txt"
  2660. ]
  2661. },
  2662. "Microsoft.Extensions.Caching.Memory/8.0.0": {
  2663. "sha512": "7pqivmrZDzo1ADPkRwjy+8jtRKWRCPag9qPI+p7sgu7Q4QreWhcvbiWXsbhP+yY8XSiDvZpu2/LWdBv7PnmOpQ==",
  2664. "type": "package",
  2665. "path": "microsoft.extensions.caching.memory/8.0.0",
  2666. "files": [
  2667. ".nupkg.metadata",
  2668. ".signature.p7s",
  2669. "Icon.png",
  2670. "LICENSE.TXT",
  2671. "PACKAGE.md",
  2672. "THIRD-PARTY-NOTICES.TXT",
  2673. "buildTransitive/net461/Microsoft.Extensions.Caching.Memory.targets",
  2674. "buildTransitive/net462/_._",
  2675. "buildTransitive/net6.0/_._",
  2676. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets",
  2677. "lib/net462/Microsoft.Extensions.Caching.Memory.dll",
  2678. "lib/net462/Microsoft.Extensions.Caching.Memory.xml",
  2679. "lib/net6.0/Microsoft.Extensions.Caching.Memory.dll",
  2680. "lib/net6.0/Microsoft.Extensions.Caching.Memory.xml",
  2681. "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll",
  2682. "lib/net7.0/Microsoft.Extensions.Caching.Memory.xml",
  2683. "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll",
  2684. "lib/net8.0/Microsoft.Extensions.Caching.Memory.xml",
  2685. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  2686. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  2687. "microsoft.extensions.caching.memory.8.0.0.nupkg.sha512",
  2688. "microsoft.extensions.caching.memory.nuspec",
  2689. "useSharedDesignerContext.txt"
  2690. ]
  2691. },
  2692. "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
  2693. "sha512": "3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==",
  2694. "type": "package",
  2695. "path": "microsoft.extensions.configuration.abstractions/8.0.0",
  2696. "files": [
  2697. ".nupkg.metadata",
  2698. ".signature.p7s",
  2699. "Icon.png",
  2700. "LICENSE.TXT",
  2701. "PACKAGE.md",
  2702. "THIRD-PARTY-NOTICES.TXT",
  2703. "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets",
  2704. "buildTransitive/net462/_._",
  2705. "buildTransitive/net6.0/_._",
  2706. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets",
  2707. "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll",
  2708. "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml",
  2709. "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  2710. "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  2711. "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  2712. "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  2713. "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  2714. "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  2715. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  2716. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  2717. "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512",
  2718. "microsoft.extensions.configuration.abstractions.nuspec",
  2719. "useSharedDesignerContext.txt"
  2720. ]
  2721. },
  2722. "Microsoft.Extensions.DependencyInjection/8.0.0": {
  2723. "sha512": "V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==",
  2724. "type": "package",
  2725. "path": "microsoft.extensions.dependencyinjection/8.0.0",
  2726. "files": [
  2727. ".nupkg.metadata",
  2728. ".signature.p7s",
  2729. "Icon.png",
  2730. "LICENSE.TXT",
  2731. "PACKAGE.md",
  2732. "THIRD-PARTY-NOTICES.TXT",
  2733. "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets",
  2734. "buildTransitive/net462/_._",
  2735. "buildTransitive/net6.0/_._",
  2736. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets",
  2737. "lib/net462/Microsoft.Extensions.DependencyInjection.dll",
  2738. "lib/net462/Microsoft.Extensions.DependencyInjection.xml",
  2739. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll",
  2740. "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml",
  2741. "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll",
  2742. "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml",
  2743. "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll",
  2744. "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml",
  2745. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  2746. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  2747. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  2748. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  2749. "microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512",
  2750. "microsoft.extensions.dependencyinjection.nuspec",
  2751. "useSharedDesignerContext.txt"
  2752. ]
  2753. },
  2754. "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": {
  2755. "sha512": "cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==",
  2756. "type": "package",
  2757. "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.0",
  2758. "files": [
  2759. ".nupkg.metadata",
  2760. ".signature.p7s",
  2761. "Icon.png",
  2762. "LICENSE.TXT",
  2763. "PACKAGE.md",
  2764. "THIRD-PARTY-NOTICES.TXT",
  2765. "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  2766. "buildTransitive/net462/_._",
  2767. "buildTransitive/net6.0/_._",
  2768. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  2769. "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2770. "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2771. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2772. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2773. "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2774. "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2775. "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2776. "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2777. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2778. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2779. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2780. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2781. "microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512",
  2782. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  2783. "useSharedDesignerContext.txt"
  2784. ]
  2785. },
  2786. "Microsoft.Extensions.DependencyModel/8.0.0": {
  2787. "sha512": "NSmDw3K0ozNDgShSIpsZcbFIzBX4w28nDag+TfaQujkXGazBm+lid5onlWoCBy4VsLxqnnKjEBbGSJVWJMf43g==",
  2788. "type": "package",
  2789. "path": "microsoft.extensions.dependencymodel/8.0.0",
  2790. "files": [
  2791. ".nupkg.metadata",
  2792. ".signature.p7s",
  2793. "Icon.png",
  2794. "LICENSE.TXT",
  2795. "PACKAGE.md",
  2796. "THIRD-PARTY-NOTICES.TXT",
  2797. "buildTransitive/net461/Microsoft.Extensions.DependencyModel.targets",
  2798. "buildTransitive/net462/_._",
  2799. "buildTransitive/net6.0/_._",
  2800. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyModel.targets",
  2801. "lib/net462/Microsoft.Extensions.DependencyModel.dll",
  2802. "lib/net462/Microsoft.Extensions.DependencyModel.xml",
  2803. "lib/net6.0/Microsoft.Extensions.DependencyModel.dll",
  2804. "lib/net6.0/Microsoft.Extensions.DependencyModel.xml",
  2805. "lib/net7.0/Microsoft.Extensions.DependencyModel.dll",
  2806. "lib/net7.0/Microsoft.Extensions.DependencyModel.xml",
  2807. "lib/net8.0/Microsoft.Extensions.DependencyModel.dll",
  2808. "lib/net8.0/Microsoft.Extensions.DependencyModel.xml",
  2809. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll",
  2810. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml",
  2811. "microsoft.extensions.dependencymodel.8.0.0.nupkg.sha512",
  2812. "microsoft.extensions.dependencymodel.nuspec",
  2813. "useSharedDesignerContext.txt"
  2814. ]
  2815. },
  2816. "Microsoft.Extensions.Identity.Core/8.0.0": {
  2817. "sha512": "hnXHyIQc+uc2uNMcIbr43+oNBAPEhMpW6lE8ux3MOegRz50WBna4AItlZDY7Y+Id1LLBbf73osUqeTw7CQ371w==",
  2818. "type": "package",
  2819. "path": "microsoft.extensions.identity.core/8.0.0",
  2820. "files": [
  2821. ".nupkg.metadata",
  2822. ".signature.p7s",
  2823. "Icon.png",
  2824. "THIRD-PARTY-NOTICES.TXT",
  2825. "lib/net462/Microsoft.Extensions.Identity.Core.dll",
  2826. "lib/net462/Microsoft.Extensions.Identity.Core.xml",
  2827. "lib/net8.0/Microsoft.Extensions.Identity.Core.dll",
  2828. "lib/net8.0/Microsoft.Extensions.Identity.Core.xml",
  2829. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll",
  2830. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.xml",
  2831. "microsoft.extensions.identity.core.8.0.0.nupkg.sha512",
  2832. "microsoft.extensions.identity.core.nuspec"
  2833. ]
  2834. },
  2835. "Microsoft.Extensions.Identity.Stores/8.0.0": {
  2836. "sha512": "DmDCpSpngZDBm44wVmxCeYs4HGJr/m32jMItp6pfb7KKtqWYw2vybHRg880j18k/eSFyM4v9uONsnEPgDdi9lg==",
  2837. "type": "package",
  2838. "path": "microsoft.extensions.identity.stores/8.0.0",
  2839. "files": [
  2840. ".nupkg.metadata",
  2841. ".signature.p7s",
  2842. "Icon.png",
  2843. "THIRD-PARTY-NOTICES.TXT",
  2844. "lib/net462/Microsoft.Extensions.Identity.Stores.dll",
  2845. "lib/net462/Microsoft.Extensions.Identity.Stores.xml",
  2846. "lib/net8.0/Microsoft.Extensions.Identity.Stores.dll",
  2847. "lib/net8.0/Microsoft.Extensions.Identity.Stores.xml",
  2848. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll",
  2849. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.xml",
  2850. "microsoft.extensions.identity.stores.8.0.0.nupkg.sha512",
  2851. "microsoft.extensions.identity.stores.nuspec"
  2852. ]
  2853. },
  2854. "Microsoft.Extensions.Logging/8.0.0": {
  2855. "sha512": "tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==",
  2856. "type": "package",
  2857. "path": "microsoft.extensions.logging/8.0.0",
  2858. "files": [
  2859. ".nupkg.metadata",
  2860. ".signature.p7s",
  2861. "Icon.png",
  2862. "LICENSE.TXT",
  2863. "PACKAGE.md",
  2864. "THIRD-PARTY-NOTICES.TXT",
  2865. "buildTransitive/net461/Microsoft.Extensions.Logging.targets",
  2866. "buildTransitive/net462/_._",
  2867. "buildTransitive/net6.0/_._",
  2868. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets",
  2869. "lib/net462/Microsoft.Extensions.Logging.dll",
  2870. "lib/net462/Microsoft.Extensions.Logging.xml",
  2871. "lib/net6.0/Microsoft.Extensions.Logging.dll",
  2872. "lib/net6.0/Microsoft.Extensions.Logging.xml",
  2873. "lib/net7.0/Microsoft.Extensions.Logging.dll",
  2874. "lib/net7.0/Microsoft.Extensions.Logging.xml",
  2875. "lib/net8.0/Microsoft.Extensions.Logging.dll",
  2876. "lib/net8.0/Microsoft.Extensions.Logging.xml",
  2877. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  2878. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  2879. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  2880. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  2881. "microsoft.extensions.logging.8.0.0.nupkg.sha512",
  2882. "microsoft.extensions.logging.nuspec",
  2883. "useSharedDesignerContext.txt"
  2884. ]
  2885. },
  2886. "Microsoft.Extensions.Logging.Abstractions/8.0.0": {
  2887. "sha512": "arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==",
  2888. "type": "package",
  2889. "path": "microsoft.extensions.logging.abstractions/8.0.0",
  2890. "files": [
  2891. ".nupkg.metadata",
  2892. ".signature.p7s",
  2893. "Icon.png",
  2894. "LICENSE.TXT",
  2895. "PACKAGE.md",
  2896. "THIRD-PARTY-NOTICES.TXT",
  2897. "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll",
  2898. "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  2899. "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  2900. "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  2901. "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  2902. "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  2903. "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  2904. "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  2905. "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  2906. "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  2907. "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  2908. "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  2909. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  2910. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  2911. "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll",
  2912. "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  2913. "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  2914. "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  2915. "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  2916. "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  2917. "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  2918. "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  2919. "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  2920. "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  2921. "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  2922. "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  2923. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  2924. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  2925. "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll",
  2926. "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  2927. "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  2928. "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  2929. "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  2930. "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  2931. "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  2932. "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  2933. "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  2934. "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  2935. "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  2936. "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  2937. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  2938. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  2939. "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets",
  2940. "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets",
  2941. "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets",
  2942. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  2943. "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  2944. "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll",
  2945. "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml",
  2946. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll",
  2947. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml",
  2948. "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll",
  2949. "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml",
  2950. "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll",
  2951. "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml",
  2952. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  2953. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  2954. "microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512",
  2955. "microsoft.extensions.logging.abstractions.nuspec",
  2956. "useSharedDesignerContext.txt"
  2957. ]
  2958. },
  2959. "Microsoft.Extensions.Options/8.0.0": {
  2960. "sha512": "JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==",
  2961. "type": "package",
  2962. "path": "microsoft.extensions.options/8.0.0",
  2963. "files": [
  2964. ".nupkg.metadata",
  2965. ".signature.p7s",
  2966. "Icon.png",
  2967. "LICENSE.TXT",
  2968. "PACKAGE.md",
  2969. "THIRD-PARTY-NOTICES.TXT",
  2970. "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll",
  2971. "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  2972. "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  2973. "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  2974. "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  2975. "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  2976. "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  2977. "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  2978. "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  2979. "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  2980. "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  2981. "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  2982. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  2983. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  2984. "buildTransitive/net461/Microsoft.Extensions.Options.targets",
  2985. "buildTransitive/net462/Microsoft.Extensions.Options.targets",
  2986. "buildTransitive/net6.0/Microsoft.Extensions.Options.targets",
  2987. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets",
  2988. "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets",
  2989. "lib/net462/Microsoft.Extensions.Options.dll",
  2990. "lib/net462/Microsoft.Extensions.Options.xml",
  2991. "lib/net6.0/Microsoft.Extensions.Options.dll",
  2992. "lib/net6.0/Microsoft.Extensions.Options.xml",
  2993. "lib/net7.0/Microsoft.Extensions.Options.dll",
  2994. "lib/net7.0/Microsoft.Extensions.Options.xml",
  2995. "lib/net8.0/Microsoft.Extensions.Options.dll",
  2996. "lib/net8.0/Microsoft.Extensions.Options.xml",
  2997. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  2998. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  2999. "lib/netstandard2.1/Microsoft.Extensions.Options.dll",
  3000. "lib/netstandard2.1/Microsoft.Extensions.Options.xml",
  3001. "microsoft.extensions.options.8.0.0.nupkg.sha512",
  3002. "microsoft.extensions.options.nuspec",
  3003. "useSharedDesignerContext.txt"
  3004. ]
  3005. },
  3006. "Microsoft.Extensions.Primitives/8.0.0": {
  3007. "sha512": "bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==",
  3008. "type": "package",
  3009. "path": "microsoft.extensions.primitives/8.0.0",
  3010. "files": [
  3011. ".nupkg.metadata",
  3012. ".signature.p7s",
  3013. "Icon.png",
  3014. "LICENSE.TXT",
  3015. "PACKAGE.md",
  3016. "THIRD-PARTY-NOTICES.TXT",
  3017. "buildTransitive/net461/Microsoft.Extensions.Primitives.targets",
  3018. "buildTransitive/net462/_._",
  3019. "buildTransitive/net6.0/_._",
  3020. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
  3021. "lib/net462/Microsoft.Extensions.Primitives.dll",
  3022. "lib/net462/Microsoft.Extensions.Primitives.xml",
  3023. "lib/net6.0/Microsoft.Extensions.Primitives.dll",
  3024. "lib/net6.0/Microsoft.Extensions.Primitives.xml",
  3025. "lib/net7.0/Microsoft.Extensions.Primitives.dll",
  3026. "lib/net7.0/Microsoft.Extensions.Primitives.xml",
  3027. "lib/net8.0/Microsoft.Extensions.Primitives.dll",
  3028. "lib/net8.0/Microsoft.Extensions.Primitives.xml",
  3029. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  3030. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  3031. "microsoft.extensions.primitives.8.0.0.nupkg.sha512",
  3032. "microsoft.extensions.primitives.nuspec",
  3033. "useSharedDesignerContext.txt"
  3034. ]
  3035. },
  3036. "Microsoft.Identity.Client/4.56.0": {
  3037. "sha512": "rr4zbidvHy9r4NvOAs5hdd964Ao2A0pAeFBJKR95u1CJAVzbd1p6tPTXUZ+5ld0cfThiVSGvz6UHwY6JjraTpA==",
  3038. "type": "package",
  3039. "path": "microsoft.identity.client/4.56.0",
  3040. "files": [
  3041. ".nupkg.metadata",
  3042. ".signature.p7s",
  3043. "lib/monoandroid10.0/Microsoft.Identity.Client.dll",
  3044. "lib/monoandroid10.0/Microsoft.Identity.Client.xml",
  3045. "lib/monoandroid90/Microsoft.Identity.Client.dll",
  3046. "lib/monoandroid90/Microsoft.Identity.Client.xml",
  3047. "lib/net45/Microsoft.Identity.Client.dll",
  3048. "lib/net45/Microsoft.Identity.Client.xml",
  3049. "lib/net461/Microsoft.Identity.Client.dll",
  3050. "lib/net461/Microsoft.Identity.Client.xml",
  3051. "lib/net6.0-android31.0/Microsoft.Identity.Client.dll",
  3052. "lib/net6.0-android31.0/Microsoft.Identity.Client.xml",
  3053. "lib/net6.0-ios15.4/Microsoft.Identity.Client.dll",
  3054. "lib/net6.0-ios15.4/Microsoft.Identity.Client.xml",
  3055. "lib/net6.0-windows7.0/Microsoft.Identity.Client.dll",
  3056. "lib/net6.0-windows7.0/Microsoft.Identity.Client.xml",
  3057. "lib/net6.0/Microsoft.Identity.Client.dll",
  3058. "lib/net6.0/Microsoft.Identity.Client.xml",
  3059. "lib/netcoreapp2.1/Microsoft.Identity.Client.dll",
  3060. "lib/netcoreapp2.1/Microsoft.Identity.Client.xml",
  3061. "lib/netstandard2.0/Microsoft.Identity.Client.dll",
  3062. "lib/netstandard2.0/Microsoft.Identity.Client.xml",
  3063. "lib/uap10.0.17763/Microsoft.Identity.Client.dll",
  3064. "lib/uap10.0.17763/Microsoft.Identity.Client.pri",
  3065. "lib/uap10.0.17763/Microsoft.Identity.Client.xml",
  3066. "lib/xamarinios10/Microsoft.Identity.Client.dll",
  3067. "lib/xamarinios10/Microsoft.Identity.Client.xml",
  3068. "microsoft.identity.client.4.56.0.nupkg.sha512",
  3069. "microsoft.identity.client.nuspec"
  3070. ]
  3071. },
  3072. "Microsoft.Identity.Client.Extensions.Msal/4.56.0": {
  3073. "sha512": "H12YAzEGK55vZ+QpxUzozhW8ZZtgPDuWvgA0JbdIR9UhMUplj29JhIgE2imuH8W2Nw9D8JKygR1uxRFtpSNcrg==",
  3074. "type": "package",
  3075. "path": "microsoft.identity.client.extensions.msal/4.56.0",
  3076. "files": [
  3077. ".nupkg.metadata",
  3078. ".signature.p7s",
  3079. "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll",
  3080. "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.xml",
  3081. "microsoft.identity.client.extensions.msal.4.56.0.nupkg.sha512",
  3082. "microsoft.identity.client.extensions.msal.nuspec"
  3083. ]
  3084. },
  3085. "Microsoft.IdentityModel.Abstractions/6.35.0": {
  3086. "sha512": "xuR8E4Rd96M41CnUSCiOJ2DBh+z+zQSmyrYHdYhD6K4fXBcQGVnRCFQ0efROUYpP+p0zC1BLKr0JRpVuujTZSg==",
  3087. "type": "package",
  3088. "path": "microsoft.identitymodel.abstractions/6.35.0",
  3089. "files": [
  3090. ".nupkg.metadata",
  3091. ".signature.p7s",
  3092. "lib/net45/Microsoft.IdentityModel.Abstractions.dll",
  3093. "lib/net45/Microsoft.IdentityModel.Abstractions.xml",
  3094. "lib/net461/Microsoft.IdentityModel.Abstractions.dll",
  3095. "lib/net461/Microsoft.IdentityModel.Abstractions.xml",
  3096. "lib/net462/Microsoft.IdentityModel.Abstractions.dll",
  3097. "lib/net462/Microsoft.IdentityModel.Abstractions.xml",
  3098. "lib/net472/Microsoft.IdentityModel.Abstractions.dll",
  3099. "lib/net472/Microsoft.IdentityModel.Abstractions.xml",
  3100. "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll",
  3101. "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml",
  3102. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll",
  3103. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml",
  3104. "microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512",
  3105. "microsoft.identitymodel.abstractions.nuspec"
  3106. ]
  3107. },
  3108. "Microsoft.IdentityModel.JsonWebTokens/6.35.0": {
  3109. "sha512": "9wxai3hKgZUb4/NjdRKfQd0QJvtXKDlvmGMYACbEC8DFaicMFCFhQFZq9ZET1kJLwZahf2lfY5Gtcpsx8zYzbg==",
  3110. "type": "package",
  3111. "path": "microsoft.identitymodel.jsonwebtokens/6.35.0",
  3112. "files": [
  3113. ".nupkg.metadata",
  3114. ".signature.p7s",
  3115. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll",
  3116. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml",
  3117. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
  3118. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
  3119. "lib/net462/Microsoft.IdentityModel.JsonWebTokens.dll",
  3120. "lib/net462/Microsoft.IdentityModel.JsonWebTokens.xml",
  3121. "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll",
  3122. "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml",
  3123. "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  3124. "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  3125. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  3126. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  3127. "microsoft.identitymodel.jsonwebtokens.6.35.0.nupkg.sha512",
  3128. "microsoft.identitymodel.jsonwebtokens.nuspec"
  3129. ]
  3130. },
  3131. "Microsoft.IdentityModel.Logging/6.35.0": {
  3132. "sha512": "jePrSfGAmqT81JDCNSY+fxVWoGuJKt9e6eJ+vT7+quVS55nWl//jGjUQn4eFtVKt4rt5dXaleZdHRB9J9AJZ7Q==",
  3133. "type": "package",
  3134. "path": "microsoft.identitymodel.logging/6.35.0",
  3135. "files": [
  3136. ".nupkg.metadata",
  3137. ".signature.p7s",
  3138. "lib/net45/Microsoft.IdentityModel.Logging.dll",
  3139. "lib/net45/Microsoft.IdentityModel.Logging.xml",
  3140. "lib/net461/Microsoft.IdentityModel.Logging.dll",
  3141. "lib/net461/Microsoft.IdentityModel.Logging.xml",
  3142. "lib/net462/Microsoft.IdentityModel.Logging.dll",
  3143. "lib/net462/Microsoft.IdentityModel.Logging.xml",
  3144. "lib/net472/Microsoft.IdentityModel.Logging.dll",
  3145. "lib/net472/Microsoft.IdentityModel.Logging.xml",
  3146. "lib/net6.0/Microsoft.IdentityModel.Logging.dll",
  3147. "lib/net6.0/Microsoft.IdentityModel.Logging.xml",
  3148. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  3149. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  3150. "microsoft.identitymodel.logging.6.35.0.nupkg.sha512",
  3151. "microsoft.identitymodel.logging.nuspec"
  3152. ]
  3153. },
  3154. "Microsoft.IdentityModel.Protocols/6.35.0": {
  3155. "sha512": "BPQhlDzdFvv1PzaUxNSk+VEPwezlDEVADIKmyxubw7IiELK18uJ06RQ9QKKkds30XI+gDu9n8j24XQ8w7fjWcg==",
  3156. "type": "package",
  3157. "path": "microsoft.identitymodel.protocols/6.35.0",
  3158. "files": [
  3159. ".nupkg.metadata",
  3160. ".signature.p7s",
  3161. "lib/net45/Microsoft.IdentityModel.Protocols.dll",
  3162. "lib/net45/Microsoft.IdentityModel.Protocols.xml",
  3163. "lib/net461/Microsoft.IdentityModel.Protocols.dll",
  3164. "lib/net461/Microsoft.IdentityModel.Protocols.xml",
  3165. "lib/net462/Microsoft.IdentityModel.Protocols.dll",
  3166. "lib/net462/Microsoft.IdentityModel.Protocols.xml",
  3167. "lib/net472/Microsoft.IdentityModel.Protocols.dll",
  3168. "lib/net472/Microsoft.IdentityModel.Protocols.xml",
  3169. "lib/net6.0/Microsoft.IdentityModel.Protocols.dll",
  3170. "lib/net6.0/Microsoft.IdentityModel.Protocols.xml",
  3171. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll",
  3172. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml",
  3173. "microsoft.identitymodel.protocols.6.35.0.nupkg.sha512",
  3174. "microsoft.identitymodel.protocols.nuspec"
  3175. ]
  3176. },
  3177. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.35.0": {
  3178. "sha512": "LMtVqnECCCdSmyFoCOxIE5tXQqkOLrvGrL7OxHg41DIm1bpWtaCdGyVcTAfOQpJXvzND9zUKIN/lhngPkYR8vg==",
  3179. "type": "package",
  3180. "path": "microsoft.identitymodel.protocols.openidconnect/6.35.0",
  3181. "files": [
  3182. ".nupkg.metadata",
  3183. ".signature.p7s",
  3184. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3185. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3186. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3187. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3188. "lib/net462/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3189. "lib/net462/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3190. "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3191. "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3192. "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3193. "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3194. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3195. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3196. "microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512",
  3197. "microsoft.identitymodel.protocols.openidconnect.nuspec"
  3198. ]
  3199. },
  3200. "Microsoft.IdentityModel.Tokens/6.35.0": {
  3201. "sha512": "RN7lvp7s3Boucg1NaNAbqDbxtlLj5Qeb+4uSS1TeK5FSBVM40P4DKaTKChT43sHyKfh7V0zkrMph6DdHvyA4bg==",
  3202. "type": "package",
  3203. "path": "microsoft.identitymodel.tokens/6.35.0",
  3204. "files": [
  3205. ".nupkg.metadata",
  3206. ".signature.p7s",
  3207. "lib/net45/Microsoft.IdentityModel.Tokens.dll",
  3208. "lib/net45/Microsoft.IdentityModel.Tokens.xml",
  3209. "lib/net461/Microsoft.IdentityModel.Tokens.dll",
  3210. "lib/net461/Microsoft.IdentityModel.Tokens.xml",
  3211. "lib/net462/Microsoft.IdentityModel.Tokens.dll",
  3212. "lib/net462/Microsoft.IdentityModel.Tokens.xml",
  3213. "lib/net472/Microsoft.IdentityModel.Tokens.dll",
  3214. "lib/net472/Microsoft.IdentityModel.Tokens.xml",
  3215. "lib/net6.0/Microsoft.IdentityModel.Tokens.dll",
  3216. "lib/net6.0/Microsoft.IdentityModel.Tokens.xml",
  3217. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  3218. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  3219. "microsoft.identitymodel.tokens.6.35.0.nupkg.sha512",
  3220. "microsoft.identitymodel.tokens.nuspec"
  3221. ]
  3222. },
  3223. "Microsoft.NETCore.Platforms/1.1.0": {
  3224. "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
  3225. "type": "package",
  3226. "path": "microsoft.netcore.platforms/1.1.0",
  3227. "files": [
  3228. ".nupkg.metadata",
  3229. ".signature.p7s",
  3230. "ThirdPartyNotices.txt",
  3231. "dotnet_library_license.txt",
  3232. "lib/netstandard1.0/_._",
  3233. "microsoft.netcore.platforms.1.1.0.nupkg.sha512",
  3234. "microsoft.netcore.platforms.nuspec",
  3235. "runtime.json"
  3236. ]
  3237. },
  3238. "Microsoft.NETCore.Targets/1.1.0": {
  3239. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  3240. "type": "package",
  3241. "path": "microsoft.netcore.targets/1.1.0",
  3242. "files": [
  3243. ".nupkg.metadata",
  3244. ".signature.p7s",
  3245. "ThirdPartyNotices.txt",
  3246. "dotnet_library_license.txt",
  3247. "lib/netstandard1.0/_._",
  3248. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  3249. "microsoft.netcore.targets.nuspec",
  3250. "runtime.json"
  3251. ]
  3252. },
  3253. "Microsoft.SqlServer.Server/1.0.0": {
  3254. "sha512": "N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==",
  3255. "type": "package",
  3256. "path": "microsoft.sqlserver.server/1.0.0",
  3257. "files": [
  3258. ".nupkg.metadata",
  3259. ".signature.p7s",
  3260. "dotnet.png",
  3261. "lib/net46/Microsoft.SqlServer.Server.dll",
  3262. "lib/net46/Microsoft.SqlServer.Server.pdb",
  3263. "lib/net46/Microsoft.SqlServer.Server.xml",
  3264. "lib/netstandard2.0/Microsoft.SqlServer.Server.dll",
  3265. "lib/netstandard2.0/Microsoft.SqlServer.Server.pdb",
  3266. "lib/netstandard2.0/Microsoft.SqlServer.Server.xml",
  3267. "microsoft.sqlserver.server.1.0.0.nupkg.sha512",
  3268. "microsoft.sqlserver.server.nuspec"
  3269. ]
  3270. },
  3271. "Microsoft.Win32.SystemEvents/6.0.0": {
  3272. "sha512": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==",
  3273. "type": "package",
  3274. "path": "microsoft.win32.systemevents/6.0.0",
  3275. "files": [
  3276. ".nupkg.metadata",
  3277. ".signature.p7s",
  3278. "Icon.png",
  3279. "LICENSE.TXT",
  3280. "THIRD-PARTY-NOTICES.TXT",
  3281. "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets",
  3282. "buildTransitive/netcoreapp3.1/_._",
  3283. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  3284. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  3285. "lib/net6.0/Microsoft.Win32.SystemEvents.dll",
  3286. "lib/net6.0/Microsoft.Win32.SystemEvents.xml",
  3287. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll",
  3288. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml",
  3289. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  3290. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  3291. "microsoft.win32.systemevents.6.0.0.nupkg.sha512",
  3292. "microsoft.win32.systemevents.nuspec",
  3293. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll",
  3294. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml",
  3295. "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll",
  3296. "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml",
  3297. "useSharedDesignerContext.txt"
  3298. ]
  3299. },
  3300. "Mono.TextTemplating/2.2.1": {
  3301. "sha512": "KZYeKBET/2Z0gY1WlTAK7+RHTl7GSbtvTLDXEZZojUdAPqpQNDL6tHv7VUpqfX5VEOh+uRGKaZXkuD253nEOBQ==",
  3302. "type": "package",
  3303. "path": "mono.texttemplating/2.2.1",
  3304. "files": [
  3305. ".nupkg.metadata",
  3306. ".signature.p7s",
  3307. "lib/net472/Mono.TextTemplating.dll",
  3308. "lib/netstandard2.0/Mono.TextTemplating.dll",
  3309. "mono.texttemplating.2.2.1.nupkg.sha512",
  3310. "mono.texttemplating.nuspec"
  3311. ]
  3312. },
  3313. "Newtonsoft.Json/13.0.3": {
  3314. "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
  3315. "type": "package",
  3316. "path": "newtonsoft.json/13.0.3",
  3317. "files": [
  3318. ".nupkg.metadata",
  3319. ".signature.p7s",
  3320. "LICENSE.md",
  3321. "README.md",
  3322. "lib/net20/Newtonsoft.Json.dll",
  3323. "lib/net20/Newtonsoft.Json.xml",
  3324. "lib/net35/Newtonsoft.Json.dll",
  3325. "lib/net35/Newtonsoft.Json.xml",
  3326. "lib/net40/Newtonsoft.Json.dll",
  3327. "lib/net40/Newtonsoft.Json.xml",
  3328. "lib/net45/Newtonsoft.Json.dll",
  3329. "lib/net45/Newtonsoft.Json.xml",
  3330. "lib/net6.0/Newtonsoft.Json.dll",
  3331. "lib/net6.0/Newtonsoft.Json.xml",
  3332. "lib/netstandard1.0/Newtonsoft.Json.dll",
  3333. "lib/netstandard1.0/Newtonsoft.Json.xml",
  3334. "lib/netstandard1.3/Newtonsoft.Json.dll",
  3335. "lib/netstandard1.3/Newtonsoft.Json.xml",
  3336. "lib/netstandard2.0/Newtonsoft.Json.dll",
  3337. "lib/netstandard2.0/Newtonsoft.Json.xml",
  3338. "newtonsoft.json.13.0.3.nupkg.sha512",
  3339. "newtonsoft.json.nuspec",
  3340. "packageIcon.png"
  3341. ]
  3342. },
  3343. "NReco.PdfGenerator/1.2.1": {
  3344. "sha512": "YONMIaSBJO/0FKcXMyO1KZWc83IqfrbBKw5fcRxrwgxzv5r89rh/Z6r7ukuJmx+ra3m6jz6gmaEYXFWV3dKTmg==",
  3345. "type": "package",
  3346. "path": "nreco.pdfgenerator/1.2.1",
  3347. "files": [
  3348. ".nupkg.metadata",
  3349. ".signature.p7s",
  3350. "lib/net45/NReco.PdfGenerator.dll",
  3351. "lib/net45/NReco.PdfGenerator.xml",
  3352. "lib/netstandard2.0/NReco.PdfGenerator.dll",
  3353. "lib/netstandard2.0/NReco.PdfGenerator.xml",
  3354. "nreco.pdfgenerator.1.2.1.nupkg.sha512",
  3355. "nreco.pdfgenerator.nuspec"
  3356. ]
  3357. },
  3358. "System.CodeDom/4.4.0": {
  3359. "sha512": "2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA==",
  3360. "type": "package",
  3361. "path": "system.codedom/4.4.0",
  3362. "files": [
  3363. ".nupkg.metadata",
  3364. ".signature.p7s",
  3365. "LICENSE.TXT",
  3366. "THIRD-PARTY-NOTICES.TXT",
  3367. "lib/net461/System.CodeDom.dll",
  3368. "lib/netstandard2.0/System.CodeDom.dll",
  3369. "ref/net461/System.CodeDom.dll",
  3370. "ref/net461/System.CodeDom.xml",
  3371. "ref/netstandard2.0/System.CodeDom.dll",
  3372. "ref/netstandard2.0/System.CodeDom.xml",
  3373. "system.codedom.4.4.0.nupkg.sha512",
  3374. "system.codedom.nuspec",
  3375. "useSharedDesignerContext.txt",
  3376. "version.txt"
  3377. ]
  3378. },
  3379. "System.Collections.Immutable/6.0.0": {
  3380. "sha512": "l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==",
  3381. "type": "package",
  3382. "path": "system.collections.immutable/6.0.0",
  3383. "files": [
  3384. ".nupkg.metadata",
  3385. ".signature.p7s",
  3386. "Icon.png",
  3387. "LICENSE.TXT",
  3388. "THIRD-PARTY-NOTICES.TXT",
  3389. "buildTransitive/netcoreapp2.0/System.Collections.Immutable.targets",
  3390. "buildTransitive/netcoreapp3.1/_._",
  3391. "lib/net461/System.Collections.Immutable.dll",
  3392. "lib/net461/System.Collections.Immutable.xml",
  3393. "lib/net6.0/System.Collections.Immutable.dll",
  3394. "lib/net6.0/System.Collections.Immutable.xml",
  3395. "lib/netstandard2.0/System.Collections.Immutable.dll",
  3396. "lib/netstandard2.0/System.Collections.Immutable.xml",
  3397. "system.collections.immutable.6.0.0.nupkg.sha512",
  3398. "system.collections.immutable.nuspec",
  3399. "useSharedDesignerContext.txt"
  3400. ]
  3401. },
  3402. "System.Composition/6.0.0": {
  3403. "sha512": "d7wMuKQtfsxUa7S13tITC8n1cQzewuhD5iDjZtK2prwFfKVzdYtgrTHgjaV03Zq7feGQ5gkP85tJJntXwInsJA==",
  3404. "type": "package",
  3405. "path": "system.composition/6.0.0",
  3406. "files": [
  3407. ".nupkg.metadata",
  3408. ".signature.p7s",
  3409. "Icon.png",
  3410. "LICENSE.TXT",
  3411. "THIRD-PARTY-NOTICES.TXT",
  3412. "buildTransitive/netcoreapp2.0/System.Composition.targets",
  3413. "buildTransitive/netcoreapp3.1/_._",
  3414. "system.composition.6.0.0.nupkg.sha512",
  3415. "system.composition.nuspec",
  3416. "useSharedDesignerContext.txt"
  3417. ]
  3418. },
  3419. "System.Composition.AttributedModel/6.0.0": {
  3420. "sha512": "WK1nSDLByK/4VoC7fkNiFuTVEiperuCN/Hyn+VN30R+W2ijO1d0Z2Qm0ScEl9xkSn1G2MyapJi8xpf4R8WRa/w==",
  3421. "type": "package",
  3422. "path": "system.composition.attributedmodel/6.0.0",
  3423. "files": [
  3424. ".nupkg.metadata",
  3425. ".signature.p7s",
  3426. "Icon.png",
  3427. "LICENSE.TXT",
  3428. "THIRD-PARTY-NOTICES.TXT",
  3429. "buildTransitive/netcoreapp2.0/System.Composition.AttributedModel.targets",
  3430. "buildTransitive/netcoreapp3.1/_._",
  3431. "lib/net461/System.Composition.AttributedModel.dll",
  3432. "lib/net461/System.Composition.AttributedModel.xml",
  3433. "lib/net6.0/System.Composition.AttributedModel.dll",
  3434. "lib/net6.0/System.Composition.AttributedModel.xml",
  3435. "lib/netstandard2.0/System.Composition.AttributedModel.dll",
  3436. "lib/netstandard2.0/System.Composition.AttributedModel.xml",
  3437. "system.composition.attributedmodel.6.0.0.nupkg.sha512",
  3438. "system.composition.attributedmodel.nuspec",
  3439. "useSharedDesignerContext.txt"
  3440. ]
  3441. },
  3442. "System.Composition.Convention/6.0.0": {
  3443. "sha512": "XYi4lPRdu5bM4JVJ3/UIHAiG6V6lWWUlkhB9ab4IOq0FrRsp0F4wTyV4Dj+Ds+efoXJ3qbLqlvaUozDO7OLeXA==",
  3444. "type": "package",
  3445. "path": "system.composition.convention/6.0.0",
  3446. "files": [
  3447. ".nupkg.metadata",
  3448. ".signature.p7s",
  3449. "Icon.png",
  3450. "LICENSE.TXT",
  3451. "THIRD-PARTY-NOTICES.TXT",
  3452. "buildTransitive/netcoreapp2.0/System.Composition.Convention.targets",
  3453. "buildTransitive/netcoreapp3.1/_._",
  3454. "lib/net461/System.Composition.Convention.dll",
  3455. "lib/net461/System.Composition.Convention.xml",
  3456. "lib/net6.0/System.Composition.Convention.dll",
  3457. "lib/net6.0/System.Composition.Convention.xml",
  3458. "lib/netstandard2.0/System.Composition.Convention.dll",
  3459. "lib/netstandard2.0/System.Composition.Convention.xml",
  3460. "system.composition.convention.6.0.0.nupkg.sha512",
  3461. "system.composition.convention.nuspec",
  3462. "useSharedDesignerContext.txt"
  3463. ]
  3464. },
  3465. "System.Composition.Hosting/6.0.0": {
  3466. "sha512": "w/wXjj7kvxuHPLdzZ0PAUt++qJl03t7lENmb2Oev0n3zbxyNULbWBlnd5J5WUMMv15kg5o+/TCZFb6lSwfaUUQ==",
  3467. "type": "package",
  3468. "path": "system.composition.hosting/6.0.0",
  3469. "files": [
  3470. ".nupkg.metadata",
  3471. ".signature.p7s",
  3472. "Icon.png",
  3473. "LICENSE.TXT",
  3474. "THIRD-PARTY-NOTICES.TXT",
  3475. "buildTransitive/netcoreapp2.0/System.Composition.Hosting.targets",
  3476. "buildTransitive/netcoreapp3.1/_._",
  3477. "lib/net461/System.Composition.Hosting.dll",
  3478. "lib/net461/System.Composition.Hosting.xml",
  3479. "lib/net6.0/System.Composition.Hosting.dll",
  3480. "lib/net6.0/System.Composition.Hosting.xml",
  3481. "lib/netstandard2.0/System.Composition.Hosting.dll",
  3482. "lib/netstandard2.0/System.Composition.Hosting.xml",
  3483. "system.composition.hosting.6.0.0.nupkg.sha512",
  3484. "system.composition.hosting.nuspec",
  3485. "useSharedDesignerContext.txt"
  3486. ]
  3487. },
  3488. "System.Composition.Runtime/6.0.0": {
  3489. "sha512": "qkRH/YBaMPTnzxrS5RDk1juvqed4A6HOD/CwRcDGyPpYps1J27waBddiiq1y93jk2ZZ9wuA/kynM+NO0kb3PKg==",
  3490. "type": "package",
  3491. "path": "system.composition.runtime/6.0.0",
  3492. "files": [
  3493. ".nupkg.metadata",
  3494. ".signature.p7s",
  3495. "Icon.png",
  3496. "LICENSE.TXT",
  3497. "THIRD-PARTY-NOTICES.TXT",
  3498. "buildTransitive/netcoreapp2.0/System.Composition.Runtime.targets",
  3499. "buildTransitive/netcoreapp3.1/_._",
  3500. "lib/net461/System.Composition.Runtime.dll",
  3501. "lib/net461/System.Composition.Runtime.xml",
  3502. "lib/net6.0/System.Composition.Runtime.dll",
  3503. "lib/net6.0/System.Composition.Runtime.xml",
  3504. "lib/netstandard2.0/System.Composition.Runtime.dll",
  3505. "lib/netstandard2.0/System.Composition.Runtime.xml",
  3506. "system.composition.runtime.6.0.0.nupkg.sha512",
  3507. "system.composition.runtime.nuspec",
  3508. "useSharedDesignerContext.txt"
  3509. ]
  3510. },
  3511. "System.Composition.TypedParts/6.0.0": {
  3512. "sha512": "iUR1eHrL8Cwd82neQCJ00MpwNIBs4NZgXzrPqx8NJf/k4+mwBO0XCRmHYJT4OLSwDDqh5nBLJWkz5cROnrGhRA==",
  3513. "type": "package",
  3514. "path": "system.composition.typedparts/6.0.0",
  3515. "files": [
  3516. ".nupkg.metadata",
  3517. ".signature.p7s",
  3518. "Icon.png",
  3519. "LICENSE.TXT",
  3520. "THIRD-PARTY-NOTICES.TXT",
  3521. "buildTransitive/netcoreapp2.0/System.Composition.TypedParts.targets",
  3522. "buildTransitive/netcoreapp3.1/_._",
  3523. "lib/net461/System.Composition.TypedParts.dll",
  3524. "lib/net461/System.Composition.TypedParts.xml",
  3525. "lib/net6.0/System.Composition.TypedParts.dll",
  3526. "lib/net6.0/System.Composition.TypedParts.xml",
  3527. "lib/netstandard2.0/System.Composition.TypedParts.dll",
  3528. "lib/netstandard2.0/System.Composition.TypedParts.xml",
  3529. "system.composition.typedparts.6.0.0.nupkg.sha512",
  3530. "system.composition.typedparts.nuspec",
  3531. "useSharedDesignerContext.txt"
  3532. ]
  3533. },
  3534. "System.Configuration.ConfigurationManager/6.0.1": {
  3535. "sha512": "jXw9MlUu/kRfEU0WyTptAVueupqIeE3/rl0EZDMlf8pcvJnitQ8HeVEp69rZdaStXwTV72boi/Bhw8lOeO+U2w==",
  3536. "type": "package",
  3537. "path": "system.configuration.configurationmanager/6.0.1",
  3538. "files": [
  3539. ".nupkg.metadata",
  3540. ".signature.p7s",
  3541. "Icon.png",
  3542. "LICENSE.TXT",
  3543. "THIRD-PARTY-NOTICES.TXT",
  3544. "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets",
  3545. "buildTransitive/netcoreapp3.1/_._",
  3546. "lib/net461/System.Configuration.ConfigurationManager.dll",
  3547. "lib/net461/System.Configuration.ConfigurationManager.xml",
  3548. "lib/net6.0/System.Configuration.ConfigurationManager.dll",
  3549. "lib/net6.0/System.Configuration.ConfigurationManager.xml",
  3550. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  3551. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  3552. "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.dll",
  3553. "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.xml",
  3554. "system.configuration.configurationmanager.6.0.1.nupkg.sha512",
  3555. "system.configuration.configurationmanager.nuspec",
  3556. "useSharedDesignerContext.txt"
  3557. ]
  3558. },
  3559. "System.Diagnostics.DiagnosticSource/6.0.1": {
  3560. "sha512": "KiLYDu2k2J82Q9BJpWiuQqCkFjRBWVq4jDzKKWawVi9KWzyD0XG3cmfX0vqTQlL14Wi9EufJrbL0+KCLTbqWiQ==",
  3561. "type": "package",
  3562. "path": "system.diagnostics.diagnosticsource/6.0.1",
  3563. "files": [
  3564. ".nupkg.metadata",
  3565. ".signature.p7s",
  3566. "Icon.png",
  3567. "LICENSE.TXT",
  3568. "THIRD-PARTY-NOTICES.TXT",
  3569. "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets",
  3570. "buildTransitive/netcoreapp3.1/_._",
  3571. "lib/net461/System.Diagnostics.DiagnosticSource.dll",
  3572. "lib/net461/System.Diagnostics.DiagnosticSource.xml",
  3573. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  3574. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  3575. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll",
  3576. "lib/net6.0/System.Diagnostics.DiagnosticSource.xml",
  3577. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll",
  3578. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml",
  3579. "system.diagnostics.diagnosticsource.6.0.1.nupkg.sha512",
  3580. "system.diagnostics.diagnosticsource.nuspec",
  3581. "useSharedDesignerContext.txt"
  3582. ]
  3583. },
  3584. "System.Drawing.Common/6.0.0": {
  3585. "sha512": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==",
  3586. "type": "package",
  3587. "path": "system.drawing.common/6.0.0",
  3588. "files": [
  3589. ".nupkg.metadata",
  3590. ".signature.p7s",
  3591. "Icon.png",
  3592. "LICENSE.TXT",
  3593. "THIRD-PARTY-NOTICES.TXT",
  3594. "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets",
  3595. "buildTransitive/netcoreapp3.1/_._",
  3596. "lib/MonoAndroid10/_._",
  3597. "lib/MonoTouch10/_._",
  3598. "lib/net461/System.Drawing.Common.dll",
  3599. "lib/net461/System.Drawing.Common.xml",
  3600. "lib/net6.0/System.Drawing.Common.dll",
  3601. "lib/net6.0/System.Drawing.Common.xml",
  3602. "lib/netcoreapp3.1/System.Drawing.Common.dll",
  3603. "lib/netcoreapp3.1/System.Drawing.Common.xml",
  3604. "lib/netstandard2.0/System.Drawing.Common.dll",
  3605. "lib/netstandard2.0/System.Drawing.Common.xml",
  3606. "lib/xamarinios10/_._",
  3607. "lib/xamarinmac20/_._",
  3608. "lib/xamarintvos10/_._",
  3609. "lib/xamarinwatchos10/_._",
  3610. "runtimes/unix/lib/net6.0/System.Drawing.Common.dll",
  3611. "runtimes/unix/lib/net6.0/System.Drawing.Common.xml",
  3612. "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll",
  3613. "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.xml",
  3614. "runtimes/win/lib/net6.0/System.Drawing.Common.dll",
  3615. "runtimes/win/lib/net6.0/System.Drawing.Common.xml",
  3616. "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll",
  3617. "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.xml",
  3618. "system.drawing.common.6.0.0.nupkg.sha512",
  3619. "system.drawing.common.nuspec",
  3620. "useSharedDesignerContext.txt"
  3621. ]
  3622. },
  3623. "System.Formats.Asn1/5.0.0": {
  3624. "sha512": "MTvUIktmemNB+El0Fgw9egyqT9AYSIk6DTJeoDSpc3GIHxHCMo8COqkWT1mptX5tZ1SlQ6HJZ0OsSvMth1c12w==",
  3625. "type": "package",
  3626. "path": "system.formats.asn1/5.0.0",
  3627. "files": [
  3628. ".nupkg.metadata",
  3629. ".signature.p7s",
  3630. "Icon.png",
  3631. "LICENSE.TXT",
  3632. "THIRD-PARTY-NOTICES.TXT",
  3633. "lib/net461/System.Formats.Asn1.dll",
  3634. "lib/net461/System.Formats.Asn1.xml",
  3635. "lib/netstandard2.0/System.Formats.Asn1.dll",
  3636. "lib/netstandard2.0/System.Formats.Asn1.xml",
  3637. "system.formats.asn1.5.0.0.nupkg.sha512",
  3638. "system.formats.asn1.nuspec",
  3639. "useSharedDesignerContext.txt",
  3640. "version.txt"
  3641. ]
  3642. },
  3643. "System.IdentityModel.Tokens.Jwt/6.35.0": {
  3644. "sha512": "yxGIQd3BFK7F6S62/7RdZk3C/mfwyVxvh6ngd1VYMBmbJ1YZZA9+Ku6suylVtso0FjI0wbElpJ0d27CdsyLpBQ==",
  3645. "type": "package",
  3646. "path": "system.identitymodel.tokens.jwt/6.35.0",
  3647. "files": [
  3648. ".nupkg.metadata",
  3649. ".signature.p7s",
  3650. "lib/net45/System.IdentityModel.Tokens.Jwt.dll",
  3651. "lib/net45/System.IdentityModel.Tokens.Jwt.xml",
  3652. "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
  3653. "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
  3654. "lib/net462/System.IdentityModel.Tokens.Jwt.dll",
  3655. "lib/net462/System.IdentityModel.Tokens.Jwt.xml",
  3656. "lib/net472/System.IdentityModel.Tokens.Jwt.dll",
  3657. "lib/net472/System.IdentityModel.Tokens.Jwt.xml",
  3658. "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll",
  3659. "lib/net6.0/System.IdentityModel.Tokens.Jwt.xml",
  3660. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  3661. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  3662. "system.identitymodel.tokens.jwt.6.35.0.nupkg.sha512",
  3663. "system.identitymodel.tokens.jwt.nuspec"
  3664. ]
  3665. },
  3666. "System.IO.FileSystem.AccessControl/5.0.0": {
  3667. "sha512": "SxHB3nuNrpptVk+vZ/F+7OHEpoHUIKKMl02bUmYHQr1r+glbZQxs7pRtsf4ENO29TVm2TH3AEeep2fJcy92oYw==",
  3668. "type": "package",
  3669. "path": "system.io.filesystem.accesscontrol/5.0.0",
  3670. "files": [
  3671. ".nupkg.metadata",
  3672. ".signature.p7s",
  3673. "Icon.png",
  3674. "LICENSE.TXT",
  3675. "THIRD-PARTY-NOTICES.TXT",
  3676. "lib/net46/System.IO.FileSystem.AccessControl.dll",
  3677. "lib/net461/System.IO.FileSystem.AccessControl.dll",
  3678. "lib/net461/System.IO.FileSystem.AccessControl.xml",
  3679. "lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll",
  3680. "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll",
  3681. "lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml",
  3682. "ref/net46/System.IO.FileSystem.AccessControl.dll",
  3683. "ref/net461/System.IO.FileSystem.AccessControl.dll",
  3684. "ref/net461/System.IO.FileSystem.AccessControl.xml",
  3685. "ref/netstandard1.3/System.IO.FileSystem.AccessControl.dll",
  3686. "ref/netstandard1.3/System.IO.FileSystem.AccessControl.xml",
  3687. "ref/netstandard1.3/de/System.IO.FileSystem.AccessControl.xml",
  3688. "ref/netstandard1.3/es/System.IO.FileSystem.AccessControl.xml",
  3689. "ref/netstandard1.3/fr/System.IO.FileSystem.AccessControl.xml",
  3690. "ref/netstandard1.3/it/System.IO.FileSystem.AccessControl.xml",
  3691. "ref/netstandard1.3/ja/System.IO.FileSystem.AccessControl.xml",
  3692. "ref/netstandard1.3/ko/System.IO.FileSystem.AccessControl.xml",
  3693. "ref/netstandard1.3/ru/System.IO.FileSystem.AccessControl.xml",
  3694. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.AccessControl.xml",
  3695. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.AccessControl.xml",
  3696. "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll",
  3697. "ref/netstandard2.0/System.IO.FileSystem.AccessControl.xml",
  3698. "runtimes/win/lib/net46/System.IO.FileSystem.AccessControl.dll",
  3699. "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.dll",
  3700. "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.xml",
  3701. "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll",
  3702. "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll",
  3703. "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml",
  3704. "system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512",
  3705. "system.io.filesystem.accesscontrol.nuspec",
  3706. "useSharedDesignerContext.txt",
  3707. "version.txt"
  3708. ]
  3709. },
  3710. "System.IO.Pipelines/6.0.3": {
  3711. "sha512": "ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==",
  3712. "type": "package",
  3713. "path": "system.io.pipelines/6.0.3",
  3714. "files": [
  3715. ".nupkg.metadata",
  3716. ".signature.p7s",
  3717. "Icon.png",
  3718. "LICENSE.TXT",
  3719. "THIRD-PARTY-NOTICES.TXT",
  3720. "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets",
  3721. "buildTransitive/netcoreapp3.1/_._",
  3722. "lib/net461/System.IO.Pipelines.dll",
  3723. "lib/net461/System.IO.Pipelines.xml",
  3724. "lib/net6.0/System.IO.Pipelines.dll",
  3725. "lib/net6.0/System.IO.Pipelines.xml",
  3726. "lib/netcoreapp3.1/System.IO.Pipelines.dll",
  3727. "lib/netcoreapp3.1/System.IO.Pipelines.xml",
  3728. "lib/netstandard2.0/System.IO.Pipelines.dll",
  3729. "lib/netstandard2.0/System.IO.Pipelines.xml",
  3730. "system.io.pipelines.6.0.3.nupkg.sha512",
  3731. "system.io.pipelines.nuspec",
  3732. "useSharedDesignerContext.txt"
  3733. ]
  3734. },
  3735. "System.Memory/4.5.4": {
  3736. "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
  3737. "type": "package",
  3738. "path": "system.memory/4.5.4",
  3739. "files": [
  3740. ".nupkg.metadata",
  3741. ".signature.p7s",
  3742. "LICENSE.TXT",
  3743. "THIRD-PARTY-NOTICES.TXT",
  3744. "lib/net461/System.Memory.dll",
  3745. "lib/net461/System.Memory.xml",
  3746. "lib/netcoreapp2.1/_._",
  3747. "lib/netstandard1.1/System.Memory.dll",
  3748. "lib/netstandard1.1/System.Memory.xml",
  3749. "lib/netstandard2.0/System.Memory.dll",
  3750. "lib/netstandard2.0/System.Memory.xml",
  3751. "ref/netcoreapp2.1/_._",
  3752. "system.memory.4.5.4.nupkg.sha512",
  3753. "system.memory.nuspec",
  3754. "useSharedDesignerContext.txt",
  3755. "version.txt"
  3756. ]
  3757. },
  3758. "System.Memory.Data/1.0.2": {
  3759. "sha512": "JGkzeqgBsiZwKJZ1IxPNsDFZDhUvuEdX8L8BDC8N3KOj+6zMcNU28CNN59TpZE/VJYy9cP+5M+sbxtWJx3/xtw==",
  3760. "type": "package",
  3761. "path": "system.memory.data/1.0.2",
  3762. "files": [
  3763. ".nupkg.metadata",
  3764. ".signature.p7s",
  3765. "CHANGELOG.md",
  3766. "DotNetPackageIcon.png",
  3767. "README.md",
  3768. "lib/net461/System.Memory.Data.dll",
  3769. "lib/net461/System.Memory.Data.xml",
  3770. "lib/netstandard2.0/System.Memory.Data.dll",
  3771. "lib/netstandard2.0/System.Memory.Data.xml",
  3772. "system.memory.data.1.0.2.nupkg.sha512",
  3773. "system.memory.data.nuspec"
  3774. ]
  3775. },
  3776. "System.Numerics.Vectors/4.5.0": {
  3777. "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
  3778. "type": "package",
  3779. "path": "system.numerics.vectors/4.5.0",
  3780. "files": [
  3781. ".nupkg.metadata",
  3782. ".signature.p7s",
  3783. "LICENSE.TXT",
  3784. "THIRD-PARTY-NOTICES.TXT",
  3785. "lib/MonoAndroid10/_._",
  3786. "lib/MonoTouch10/_._",
  3787. "lib/net46/System.Numerics.Vectors.dll",
  3788. "lib/net46/System.Numerics.Vectors.xml",
  3789. "lib/netcoreapp2.0/_._",
  3790. "lib/netstandard1.0/System.Numerics.Vectors.dll",
  3791. "lib/netstandard1.0/System.Numerics.Vectors.xml",
  3792. "lib/netstandard2.0/System.Numerics.Vectors.dll",
  3793. "lib/netstandard2.0/System.Numerics.Vectors.xml",
  3794. "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll",
  3795. "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml",
  3796. "lib/uap10.0.16299/_._",
  3797. "lib/xamarinios10/_._",
  3798. "lib/xamarinmac20/_._",
  3799. "lib/xamarintvos10/_._",
  3800. "lib/xamarinwatchos10/_._",
  3801. "ref/MonoAndroid10/_._",
  3802. "ref/MonoTouch10/_._",
  3803. "ref/net45/System.Numerics.Vectors.dll",
  3804. "ref/net45/System.Numerics.Vectors.xml",
  3805. "ref/net46/System.Numerics.Vectors.dll",
  3806. "ref/net46/System.Numerics.Vectors.xml",
  3807. "ref/netcoreapp2.0/_._",
  3808. "ref/netstandard1.0/System.Numerics.Vectors.dll",
  3809. "ref/netstandard1.0/System.Numerics.Vectors.xml",
  3810. "ref/netstandard2.0/System.Numerics.Vectors.dll",
  3811. "ref/netstandard2.0/System.Numerics.Vectors.xml",
  3812. "ref/uap10.0.16299/_._",
  3813. "ref/xamarinios10/_._",
  3814. "ref/xamarinmac20/_._",
  3815. "ref/xamarintvos10/_._",
  3816. "ref/xamarinwatchos10/_._",
  3817. "system.numerics.vectors.4.5.0.nupkg.sha512",
  3818. "system.numerics.vectors.nuspec",
  3819. "useSharedDesignerContext.txt",
  3820. "version.txt"
  3821. ]
  3822. },
  3823. "System.Reflection.Metadata/6.0.1": {
  3824. "sha512": "III/lNMSn0ZRBuM9m5Cgbiho5j81u0FAEagFX5ta2DKbljZ3T0IpD8j+BIiHQPeKqJppWS9bGEp6JnKnWKze0g==",
  3825. "type": "package",
  3826. "path": "system.reflection.metadata/6.0.1",
  3827. "files": [
  3828. ".nupkg.metadata",
  3829. ".signature.p7s",
  3830. "Icon.png",
  3831. "LICENSE.TXT",
  3832. "THIRD-PARTY-NOTICES.TXT",
  3833. "buildTransitive/netcoreapp2.0/System.Reflection.Metadata.targets",
  3834. "buildTransitive/netcoreapp3.1/_._",
  3835. "lib/net461/System.Reflection.Metadata.dll",
  3836. "lib/net461/System.Reflection.Metadata.xml",
  3837. "lib/net6.0/System.Reflection.Metadata.dll",
  3838. "lib/net6.0/System.Reflection.Metadata.xml",
  3839. "lib/netstandard2.0/System.Reflection.Metadata.dll",
  3840. "lib/netstandard2.0/System.Reflection.Metadata.xml",
  3841. "system.reflection.metadata.6.0.1.nupkg.sha512",
  3842. "system.reflection.metadata.nuspec",
  3843. "useSharedDesignerContext.txt"
  3844. ]
  3845. },
  3846. "System.Runtime/4.3.0": {
  3847. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  3848. "type": "package",
  3849. "path": "system.runtime/4.3.0",
  3850. "files": [
  3851. ".nupkg.metadata",
  3852. ".signature.p7s",
  3853. "ThirdPartyNotices.txt",
  3854. "dotnet_library_license.txt",
  3855. "lib/MonoAndroid10/_._",
  3856. "lib/MonoTouch10/_._",
  3857. "lib/net45/_._",
  3858. "lib/net462/System.Runtime.dll",
  3859. "lib/portable-net45+win8+wp80+wpa81/_._",
  3860. "lib/win8/_._",
  3861. "lib/wp80/_._",
  3862. "lib/wpa81/_._",
  3863. "lib/xamarinios10/_._",
  3864. "lib/xamarinmac20/_._",
  3865. "lib/xamarintvos10/_._",
  3866. "lib/xamarinwatchos10/_._",
  3867. "ref/MonoAndroid10/_._",
  3868. "ref/MonoTouch10/_._",
  3869. "ref/net45/_._",
  3870. "ref/net462/System.Runtime.dll",
  3871. "ref/netcore50/System.Runtime.dll",
  3872. "ref/netcore50/System.Runtime.xml",
  3873. "ref/netcore50/de/System.Runtime.xml",
  3874. "ref/netcore50/es/System.Runtime.xml",
  3875. "ref/netcore50/fr/System.Runtime.xml",
  3876. "ref/netcore50/it/System.Runtime.xml",
  3877. "ref/netcore50/ja/System.Runtime.xml",
  3878. "ref/netcore50/ko/System.Runtime.xml",
  3879. "ref/netcore50/ru/System.Runtime.xml",
  3880. "ref/netcore50/zh-hans/System.Runtime.xml",
  3881. "ref/netcore50/zh-hant/System.Runtime.xml",
  3882. "ref/netstandard1.0/System.Runtime.dll",
  3883. "ref/netstandard1.0/System.Runtime.xml",
  3884. "ref/netstandard1.0/de/System.Runtime.xml",
  3885. "ref/netstandard1.0/es/System.Runtime.xml",
  3886. "ref/netstandard1.0/fr/System.Runtime.xml",
  3887. "ref/netstandard1.0/it/System.Runtime.xml",
  3888. "ref/netstandard1.0/ja/System.Runtime.xml",
  3889. "ref/netstandard1.0/ko/System.Runtime.xml",
  3890. "ref/netstandard1.0/ru/System.Runtime.xml",
  3891. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  3892. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  3893. "ref/netstandard1.2/System.Runtime.dll",
  3894. "ref/netstandard1.2/System.Runtime.xml",
  3895. "ref/netstandard1.2/de/System.Runtime.xml",
  3896. "ref/netstandard1.2/es/System.Runtime.xml",
  3897. "ref/netstandard1.2/fr/System.Runtime.xml",
  3898. "ref/netstandard1.2/it/System.Runtime.xml",
  3899. "ref/netstandard1.2/ja/System.Runtime.xml",
  3900. "ref/netstandard1.2/ko/System.Runtime.xml",
  3901. "ref/netstandard1.2/ru/System.Runtime.xml",
  3902. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  3903. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  3904. "ref/netstandard1.3/System.Runtime.dll",
  3905. "ref/netstandard1.3/System.Runtime.xml",
  3906. "ref/netstandard1.3/de/System.Runtime.xml",
  3907. "ref/netstandard1.3/es/System.Runtime.xml",
  3908. "ref/netstandard1.3/fr/System.Runtime.xml",
  3909. "ref/netstandard1.3/it/System.Runtime.xml",
  3910. "ref/netstandard1.3/ja/System.Runtime.xml",
  3911. "ref/netstandard1.3/ko/System.Runtime.xml",
  3912. "ref/netstandard1.3/ru/System.Runtime.xml",
  3913. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  3914. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  3915. "ref/netstandard1.5/System.Runtime.dll",
  3916. "ref/netstandard1.5/System.Runtime.xml",
  3917. "ref/netstandard1.5/de/System.Runtime.xml",
  3918. "ref/netstandard1.5/es/System.Runtime.xml",
  3919. "ref/netstandard1.5/fr/System.Runtime.xml",
  3920. "ref/netstandard1.5/it/System.Runtime.xml",
  3921. "ref/netstandard1.5/ja/System.Runtime.xml",
  3922. "ref/netstandard1.5/ko/System.Runtime.xml",
  3923. "ref/netstandard1.5/ru/System.Runtime.xml",
  3924. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  3925. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  3926. "ref/portable-net45+win8+wp80+wpa81/_._",
  3927. "ref/win8/_._",
  3928. "ref/wp80/_._",
  3929. "ref/wpa81/_._",
  3930. "ref/xamarinios10/_._",
  3931. "ref/xamarinmac20/_._",
  3932. "ref/xamarintvos10/_._",
  3933. "ref/xamarinwatchos10/_._",
  3934. "system.runtime.4.3.0.nupkg.sha512",
  3935. "system.runtime.nuspec"
  3936. ]
  3937. },
  3938. "System.Runtime.Caching/6.0.0": {
  3939. "sha512": "E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==",
  3940. "type": "package",
  3941. "path": "system.runtime.caching/6.0.0",
  3942. "files": [
  3943. ".nupkg.metadata",
  3944. ".signature.p7s",
  3945. "Icon.png",
  3946. "LICENSE.TXT",
  3947. "THIRD-PARTY-NOTICES.TXT",
  3948. "buildTransitive/netcoreapp2.0/System.Runtime.Caching.targets",
  3949. "buildTransitive/netcoreapp3.1/_._",
  3950. "lib/MonoAndroid10/_._",
  3951. "lib/MonoTouch10/_._",
  3952. "lib/net461/_._",
  3953. "lib/net6.0/System.Runtime.Caching.dll",
  3954. "lib/net6.0/System.Runtime.Caching.xml",
  3955. "lib/netcoreapp3.1/System.Runtime.Caching.dll",
  3956. "lib/netcoreapp3.1/System.Runtime.Caching.xml",
  3957. "lib/netstandard2.0/System.Runtime.Caching.dll",
  3958. "lib/netstandard2.0/System.Runtime.Caching.xml",
  3959. "lib/xamarinios10/_._",
  3960. "lib/xamarinmac20/_._",
  3961. "lib/xamarintvos10/_._",
  3962. "lib/xamarinwatchos10/_._",
  3963. "runtimes/win/lib/net461/_._",
  3964. "runtimes/win/lib/net6.0/System.Runtime.Caching.dll",
  3965. "runtimes/win/lib/net6.0/System.Runtime.Caching.xml",
  3966. "runtimes/win/lib/netcoreapp3.1/System.Runtime.Caching.dll",
  3967. "runtimes/win/lib/netcoreapp3.1/System.Runtime.Caching.xml",
  3968. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll",
  3969. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.xml",
  3970. "system.runtime.caching.6.0.0.nupkg.sha512",
  3971. "system.runtime.caching.nuspec",
  3972. "useSharedDesignerContext.txt"
  3973. ]
  3974. },
  3975. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  3976. "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  3977. "type": "package",
  3978. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  3979. "files": [
  3980. ".nupkg.metadata",
  3981. ".signature.p7s",
  3982. "Icon.png",
  3983. "LICENSE.TXT",
  3984. "THIRD-PARTY-NOTICES.TXT",
  3985. "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
  3986. "buildTransitive/netcoreapp3.1/_._",
  3987. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
  3988. "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
  3989. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
  3990. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
  3991. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
  3992. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
  3993. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  3994. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  3995. "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
  3996. "system.runtime.compilerservices.unsafe.nuspec",
  3997. "useSharedDesignerContext.txt"
  3998. ]
  3999. },
  4000. "System.Security.AccessControl/6.0.0": {
  4001. "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==",
  4002. "type": "package",
  4003. "path": "system.security.accesscontrol/6.0.0",
  4004. "files": [
  4005. ".nupkg.metadata",
  4006. ".signature.p7s",
  4007. "Icon.png",
  4008. "LICENSE.TXT",
  4009. "THIRD-PARTY-NOTICES.TXT",
  4010. "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets",
  4011. "buildTransitive/netcoreapp3.1/_._",
  4012. "lib/net461/System.Security.AccessControl.dll",
  4013. "lib/net461/System.Security.AccessControl.xml",
  4014. "lib/net6.0/System.Security.AccessControl.dll",
  4015. "lib/net6.0/System.Security.AccessControl.xml",
  4016. "lib/netstandard2.0/System.Security.AccessControl.dll",
  4017. "lib/netstandard2.0/System.Security.AccessControl.xml",
  4018. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  4019. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  4020. "runtimes/win/lib/net6.0/System.Security.AccessControl.dll",
  4021. "runtimes/win/lib/net6.0/System.Security.AccessControl.xml",
  4022. "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll",
  4023. "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml",
  4024. "system.security.accesscontrol.6.0.0.nupkg.sha512",
  4025. "system.security.accesscontrol.nuspec",
  4026. "useSharedDesignerContext.txt"
  4027. ]
  4028. },
  4029. "System.Security.Cryptography.Cng/5.0.0": {
  4030. "sha512": "jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==",
  4031. "type": "package",
  4032. "path": "system.security.cryptography.cng/5.0.0",
  4033. "files": [
  4034. ".nupkg.metadata",
  4035. ".signature.p7s",
  4036. "Icon.png",
  4037. "LICENSE.TXT",
  4038. "THIRD-PARTY-NOTICES.TXT",
  4039. "lib/MonoAndroid10/_._",
  4040. "lib/MonoTouch10/_._",
  4041. "lib/net46/System.Security.Cryptography.Cng.dll",
  4042. "lib/net461/System.Security.Cryptography.Cng.dll",
  4043. "lib/net461/System.Security.Cryptography.Cng.xml",
  4044. "lib/net462/System.Security.Cryptography.Cng.dll",
  4045. "lib/net462/System.Security.Cryptography.Cng.xml",
  4046. "lib/net47/System.Security.Cryptography.Cng.dll",
  4047. "lib/net47/System.Security.Cryptography.Cng.xml",
  4048. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  4049. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  4050. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  4051. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  4052. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  4053. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  4054. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  4055. "lib/netstandard2.0/System.Security.Cryptography.Cng.xml",
  4056. "lib/netstandard2.1/System.Security.Cryptography.Cng.dll",
  4057. "lib/netstandard2.1/System.Security.Cryptography.Cng.xml",
  4058. "lib/uap10.0.16299/_._",
  4059. "lib/xamarinios10/_._",
  4060. "lib/xamarinmac20/_._",
  4061. "lib/xamarintvos10/_._",
  4062. "lib/xamarinwatchos10/_._",
  4063. "ref/MonoAndroid10/_._",
  4064. "ref/MonoTouch10/_._",
  4065. "ref/net46/System.Security.Cryptography.Cng.dll",
  4066. "ref/net461/System.Security.Cryptography.Cng.dll",
  4067. "ref/net461/System.Security.Cryptography.Cng.xml",
  4068. "ref/net462/System.Security.Cryptography.Cng.dll",
  4069. "ref/net462/System.Security.Cryptography.Cng.xml",
  4070. "ref/net47/System.Security.Cryptography.Cng.dll",
  4071. "ref/net47/System.Security.Cryptography.Cng.xml",
  4072. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  4073. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  4074. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  4075. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  4076. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  4077. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  4078. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  4079. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  4080. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  4081. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  4082. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  4083. "ref/netstandard2.1/System.Security.Cryptography.Cng.dll",
  4084. "ref/netstandard2.1/System.Security.Cryptography.Cng.xml",
  4085. "ref/uap10.0.16299/_._",
  4086. "ref/xamarinios10/_._",
  4087. "ref/xamarinmac20/_._",
  4088. "ref/xamarintvos10/_._",
  4089. "ref/xamarinwatchos10/_._",
  4090. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  4091. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  4092. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.xml",
  4093. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  4094. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.xml",
  4095. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  4096. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.xml",
  4097. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  4098. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  4099. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  4100. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  4101. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  4102. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  4103. "runtimes/win/lib/uap10.0.16299/_._",
  4104. "system.security.cryptography.cng.5.0.0.nupkg.sha512",
  4105. "system.security.cryptography.cng.nuspec",
  4106. "useSharedDesignerContext.txt",
  4107. "version.txt"
  4108. ]
  4109. },
  4110. "System.Security.Cryptography.ProtectedData/6.0.0": {
  4111. "sha512": "rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==",
  4112. "type": "package",
  4113. "path": "system.security.cryptography.protecteddata/6.0.0",
  4114. "files": [
  4115. ".nupkg.metadata",
  4116. ".signature.p7s",
  4117. "Icon.png",
  4118. "LICENSE.TXT",
  4119. "THIRD-PARTY-NOTICES.TXT",
  4120. "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets",
  4121. "buildTransitive/netcoreapp3.1/_._",
  4122. "lib/MonoAndroid10/_._",
  4123. "lib/MonoTouch10/_._",
  4124. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  4125. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  4126. "lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
  4127. "lib/net6.0/System.Security.Cryptography.ProtectedData.xml",
  4128. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  4129. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  4130. "lib/xamarinios10/_._",
  4131. "lib/xamarinmac20/_._",
  4132. "lib/xamarintvos10/_._",
  4133. "lib/xamarinwatchos10/_._",
  4134. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  4135. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  4136. "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
  4137. "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.xml",
  4138. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  4139. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  4140. "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512",
  4141. "system.security.cryptography.protecteddata.nuspec",
  4142. "useSharedDesignerContext.txt"
  4143. ]
  4144. },
  4145. "System.Security.Permissions/6.0.0": {
  4146. "sha512": "T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==",
  4147. "type": "package",
  4148. "path": "system.security.permissions/6.0.0",
  4149. "files": [
  4150. ".nupkg.metadata",
  4151. ".signature.p7s",
  4152. "Icon.png",
  4153. "LICENSE.TXT",
  4154. "THIRD-PARTY-NOTICES.TXT",
  4155. "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets",
  4156. "buildTransitive/netcoreapp3.1/_._",
  4157. "lib/net461/System.Security.Permissions.dll",
  4158. "lib/net461/System.Security.Permissions.xml",
  4159. "lib/net5.0/System.Security.Permissions.dll",
  4160. "lib/net5.0/System.Security.Permissions.xml",
  4161. "lib/net6.0/System.Security.Permissions.dll",
  4162. "lib/net6.0/System.Security.Permissions.xml",
  4163. "lib/netcoreapp3.1/System.Security.Permissions.dll",
  4164. "lib/netcoreapp3.1/System.Security.Permissions.xml",
  4165. "lib/netstandard2.0/System.Security.Permissions.dll",
  4166. "lib/netstandard2.0/System.Security.Permissions.xml",
  4167. "runtimes/win/lib/net461/System.Security.Permissions.dll",
  4168. "runtimes/win/lib/net461/System.Security.Permissions.xml",
  4169. "system.security.permissions.6.0.0.nupkg.sha512",
  4170. "system.security.permissions.nuspec",
  4171. "useSharedDesignerContext.txt"
  4172. ]
  4173. },
  4174. "System.Security.Principal.Windows/5.0.0": {
  4175. "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
  4176. "type": "package",
  4177. "path": "system.security.principal.windows/5.0.0",
  4178. "files": [
  4179. ".nupkg.metadata",
  4180. ".signature.p7s",
  4181. "Icon.png",
  4182. "LICENSE.TXT",
  4183. "THIRD-PARTY-NOTICES.TXT",
  4184. "lib/net46/System.Security.Principal.Windows.dll",
  4185. "lib/net461/System.Security.Principal.Windows.dll",
  4186. "lib/net461/System.Security.Principal.Windows.xml",
  4187. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  4188. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  4189. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  4190. "lib/uap10.0.16299/_._",
  4191. "ref/net46/System.Security.Principal.Windows.dll",
  4192. "ref/net461/System.Security.Principal.Windows.dll",
  4193. "ref/net461/System.Security.Principal.Windows.xml",
  4194. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  4195. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  4196. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  4197. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  4198. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  4199. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  4200. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  4201. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  4202. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  4203. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  4204. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  4205. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  4206. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  4207. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  4208. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  4209. "ref/uap10.0.16299/_._",
  4210. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  4211. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  4212. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  4213. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  4214. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  4215. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  4216. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  4217. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  4218. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  4219. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  4220. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  4221. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  4222. "runtimes/win/lib/uap10.0.16299/_._",
  4223. "system.security.principal.windows.5.0.0.nupkg.sha512",
  4224. "system.security.principal.windows.nuspec",
  4225. "useSharedDesignerContext.txt",
  4226. "version.txt"
  4227. ]
  4228. },
  4229. "System.Text.Encoding/4.3.0": {
  4230. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  4231. "type": "package",
  4232. "path": "system.text.encoding/4.3.0",
  4233. "files": [
  4234. ".nupkg.metadata",
  4235. ".signature.p7s",
  4236. "ThirdPartyNotices.txt",
  4237. "dotnet_library_license.txt",
  4238. "lib/MonoAndroid10/_._",
  4239. "lib/MonoTouch10/_._",
  4240. "lib/net45/_._",
  4241. "lib/portable-net45+win8+wp8+wpa81/_._",
  4242. "lib/win8/_._",
  4243. "lib/wp80/_._",
  4244. "lib/wpa81/_._",
  4245. "lib/xamarinios10/_._",
  4246. "lib/xamarinmac20/_._",
  4247. "lib/xamarintvos10/_._",
  4248. "lib/xamarinwatchos10/_._",
  4249. "ref/MonoAndroid10/_._",
  4250. "ref/MonoTouch10/_._",
  4251. "ref/net45/_._",
  4252. "ref/netcore50/System.Text.Encoding.dll",
  4253. "ref/netcore50/System.Text.Encoding.xml",
  4254. "ref/netcore50/de/System.Text.Encoding.xml",
  4255. "ref/netcore50/es/System.Text.Encoding.xml",
  4256. "ref/netcore50/fr/System.Text.Encoding.xml",
  4257. "ref/netcore50/it/System.Text.Encoding.xml",
  4258. "ref/netcore50/ja/System.Text.Encoding.xml",
  4259. "ref/netcore50/ko/System.Text.Encoding.xml",
  4260. "ref/netcore50/ru/System.Text.Encoding.xml",
  4261. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  4262. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  4263. "ref/netstandard1.0/System.Text.Encoding.dll",
  4264. "ref/netstandard1.0/System.Text.Encoding.xml",
  4265. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  4266. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  4267. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  4268. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  4269. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  4270. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  4271. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  4272. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  4273. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  4274. "ref/netstandard1.3/System.Text.Encoding.dll",
  4275. "ref/netstandard1.3/System.Text.Encoding.xml",
  4276. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  4277. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  4278. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  4279. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  4280. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  4281. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  4282. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  4283. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  4284. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  4285. "ref/portable-net45+win8+wp8+wpa81/_._",
  4286. "ref/win8/_._",
  4287. "ref/wp80/_._",
  4288. "ref/wpa81/_._",
  4289. "ref/xamarinios10/_._",
  4290. "ref/xamarinmac20/_._",
  4291. "ref/xamarintvos10/_._",
  4292. "ref/xamarinwatchos10/_._",
  4293. "system.text.encoding.4.3.0.nupkg.sha512",
  4294. "system.text.encoding.nuspec"
  4295. ]
  4296. },
  4297. "System.Text.Encoding.CodePages/6.0.0": {
  4298. "sha512": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
  4299. "type": "package",
  4300. "path": "system.text.encoding.codepages/6.0.0",
  4301. "files": [
  4302. ".nupkg.metadata",
  4303. ".signature.p7s",
  4304. "Icon.png",
  4305. "LICENSE.TXT",
  4306. "THIRD-PARTY-NOTICES.TXT",
  4307. "buildTransitive/netcoreapp2.0/System.Text.Encoding.CodePages.targets",
  4308. "buildTransitive/netcoreapp3.1/_._",
  4309. "lib/MonoAndroid10/_._",
  4310. "lib/MonoTouch10/_._",
  4311. "lib/net461/System.Text.Encoding.CodePages.dll",
  4312. "lib/net461/System.Text.Encoding.CodePages.xml",
  4313. "lib/net6.0/System.Text.Encoding.CodePages.dll",
  4314. "lib/net6.0/System.Text.Encoding.CodePages.xml",
  4315. "lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll",
  4316. "lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml",
  4317. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  4318. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  4319. "lib/xamarinios10/_._",
  4320. "lib/xamarinmac20/_._",
  4321. "lib/xamarintvos10/_._",
  4322. "lib/xamarinwatchos10/_._",
  4323. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  4324. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  4325. "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll",
  4326. "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.xml",
  4327. "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll",
  4328. "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml",
  4329. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  4330. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  4331. "system.text.encoding.codepages.6.0.0.nupkg.sha512",
  4332. "system.text.encoding.codepages.nuspec",
  4333. "useSharedDesignerContext.txt"
  4334. ]
  4335. },
  4336. "System.Text.Encodings.Web/8.0.0": {
  4337. "sha512": "yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==",
  4338. "type": "package",
  4339. "path": "system.text.encodings.web/8.0.0",
  4340. "files": [
  4341. ".nupkg.metadata",
  4342. ".signature.p7s",
  4343. "Icon.png",
  4344. "LICENSE.TXT",
  4345. "THIRD-PARTY-NOTICES.TXT",
  4346. "buildTransitive/net461/System.Text.Encodings.Web.targets",
  4347. "buildTransitive/net462/_._",
  4348. "buildTransitive/net6.0/_._",
  4349. "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets",
  4350. "lib/net462/System.Text.Encodings.Web.dll",
  4351. "lib/net462/System.Text.Encodings.Web.xml",
  4352. "lib/net6.0/System.Text.Encodings.Web.dll",
  4353. "lib/net6.0/System.Text.Encodings.Web.xml",
  4354. "lib/net7.0/System.Text.Encodings.Web.dll",
  4355. "lib/net7.0/System.Text.Encodings.Web.xml",
  4356. "lib/net8.0/System.Text.Encodings.Web.dll",
  4357. "lib/net8.0/System.Text.Encodings.Web.xml",
  4358. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  4359. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  4360. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll",
  4361. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml",
  4362. "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll",
  4363. "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.xml",
  4364. "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll",
  4365. "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.xml",
  4366. "system.text.encodings.web.8.0.0.nupkg.sha512",
  4367. "system.text.encodings.web.nuspec",
  4368. "useSharedDesignerContext.txt"
  4369. ]
  4370. },
  4371. "System.Text.Json/8.0.0": {
  4372. "sha512": "OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ==",
  4373. "type": "package",
  4374. "path": "system.text.json/8.0.0",
  4375. "files": [
  4376. ".nupkg.metadata",
  4377. ".signature.p7s",
  4378. "Icon.png",
  4379. "LICENSE.TXT",
  4380. "PACKAGE.md",
  4381. "THIRD-PARTY-NOTICES.TXT",
  4382. "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll",
  4383. "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  4384. "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  4385. "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  4386. "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  4387. "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  4388. "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  4389. "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  4390. "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  4391. "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  4392. "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  4393. "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  4394. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  4395. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  4396. "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll",
  4397. "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  4398. "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  4399. "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  4400. "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  4401. "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  4402. "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  4403. "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  4404. "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  4405. "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  4406. "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  4407. "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  4408. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  4409. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  4410. "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll",
  4411. "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  4412. "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  4413. "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  4414. "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  4415. "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  4416. "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  4417. "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  4418. "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  4419. "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  4420. "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  4421. "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  4422. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  4423. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  4424. "buildTransitive/net461/System.Text.Json.targets",
  4425. "buildTransitive/net462/System.Text.Json.targets",
  4426. "buildTransitive/net6.0/System.Text.Json.targets",
  4427. "buildTransitive/netcoreapp2.0/System.Text.Json.targets",
  4428. "buildTransitive/netstandard2.0/System.Text.Json.targets",
  4429. "lib/net462/System.Text.Json.dll",
  4430. "lib/net462/System.Text.Json.xml",
  4431. "lib/net6.0/System.Text.Json.dll",
  4432. "lib/net6.0/System.Text.Json.xml",
  4433. "lib/net7.0/System.Text.Json.dll",
  4434. "lib/net7.0/System.Text.Json.xml",
  4435. "lib/net8.0/System.Text.Json.dll",
  4436. "lib/net8.0/System.Text.Json.xml",
  4437. "lib/netstandard2.0/System.Text.Json.dll",
  4438. "lib/netstandard2.0/System.Text.Json.xml",
  4439. "system.text.json.8.0.0.nupkg.sha512",
  4440. "system.text.json.nuspec",
  4441. "useSharedDesignerContext.txt"
  4442. ]
  4443. },
  4444. "System.Threading.Channels/6.0.0": {
  4445. "sha512": "TY8/9+tI0mNaUMgntOxxaq2ndTkdXqLSxvPmas7XEqOlv9lQtB7wLjYGd756lOaO7Dvb5r/WXhluM+0Xe87v5Q==",
  4446. "type": "package",
  4447. "path": "system.threading.channels/6.0.0",
  4448. "files": [
  4449. ".nupkg.metadata",
  4450. ".signature.p7s",
  4451. "Icon.png",
  4452. "LICENSE.TXT",
  4453. "THIRD-PARTY-NOTICES.TXT",
  4454. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets",
  4455. "buildTransitive/netcoreapp3.1/_._",
  4456. "lib/net461/System.Threading.Channels.dll",
  4457. "lib/net461/System.Threading.Channels.xml",
  4458. "lib/net6.0/System.Threading.Channels.dll",
  4459. "lib/net6.0/System.Threading.Channels.xml",
  4460. "lib/netcoreapp3.1/System.Threading.Channels.dll",
  4461. "lib/netcoreapp3.1/System.Threading.Channels.xml",
  4462. "lib/netstandard2.0/System.Threading.Channels.dll",
  4463. "lib/netstandard2.0/System.Threading.Channels.xml",
  4464. "lib/netstandard2.1/System.Threading.Channels.dll",
  4465. "lib/netstandard2.1/System.Threading.Channels.xml",
  4466. "system.threading.channels.6.0.0.nupkg.sha512",
  4467. "system.threading.channels.nuspec",
  4468. "useSharedDesignerContext.txt"
  4469. ]
  4470. },
  4471. "System.Threading.Tasks.Extensions/4.5.4": {
  4472. "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
  4473. "type": "package",
  4474. "path": "system.threading.tasks.extensions/4.5.4",
  4475. "files": [
  4476. ".nupkg.metadata",
  4477. ".signature.p7s",
  4478. "LICENSE.TXT",
  4479. "THIRD-PARTY-NOTICES.TXT",
  4480. "lib/MonoAndroid10/_._",
  4481. "lib/MonoTouch10/_._",
  4482. "lib/net461/System.Threading.Tasks.Extensions.dll",
  4483. "lib/net461/System.Threading.Tasks.Extensions.xml",
  4484. "lib/netcoreapp2.1/_._",
  4485. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  4486. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  4487. "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
  4488. "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
  4489. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  4490. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  4491. "lib/xamarinios10/_._",
  4492. "lib/xamarinmac20/_._",
  4493. "lib/xamarintvos10/_._",
  4494. "lib/xamarinwatchos10/_._",
  4495. "ref/MonoAndroid10/_._",
  4496. "ref/MonoTouch10/_._",
  4497. "ref/netcoreapp2.1/_._",
  4498. "ref/xamarinios10/_._",
  4499. "ref/xamarinmac20/_._",
  4500. "ref/xamarintvos10/_._",
  4501. "ref/xamarinwatchos10/_._",
  4502. "system.threading.tasks.extensions.4.5.4.nupkg.sha512",
  4503. "system.threading.tasks.extensions.nuspec",
  4504. "useSharedDesignerContext.txt",
  4505. "version.txt"
  4506. ]
  4507. },
  4508. "System.Windows.Extensions/6.0.0": {
  4509. "sha512": "IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==",
  4510. "type": "package",
  4511. "path": "system.windows.extensions/6.0.0",
  4512. "files": [
  4513. ".nupkg.metadata",
  4514. ".signature.p7s",
  4515. "Icon.png",
  4516. "LICENSE.TXT",
  4517. "THIRD-PARTY-NOTICES.TXT",
  4518. "lib/net6.0/System.Windows.Extensions.dll",
  4519. "lib/net6.0/System.Windows.Extensions.xml",
  4520. "lib/netcoreapp3.1/System.Windows.Extensions.dll",
  4521. "lib/netcoreapp3.1/System.Windows.Extensions.xml",
  4522. "runtimes/win/lib/net6.0/System.Windows.Extensions.dll",
  4523. "runtimes/win/lib/net6.0/System.Windows.Extensions.xml",
  4524. "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll",
  4525. "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.xml",
  4526. "system.windows.extensions.6.0.0.nupkg.sha512",
  4527. "system.windows.extensions.nuspec",
  4528. "useSharedDesignerContext.txt"
  4529. ]
  4530. },
  4531. "AipGateway.API.Domain/1.0.0": {
  4532. "type": "project",
  4533. "path": "../AipGateway.API.Domain/AipGateway.API.Domain.csproj",
  4534. "msbuildProject": "../AipGateway.API.Domain/AipGateway.API.Domain.csproj"
  4535. }
  4536. },
  4537. "projectFileDependencyGroups": {
  4538. "net8.0": [
  4539. "AipGateway.API.Domain >= 1.0.0",
  4540. "Microsoft.EntityFrameworkCore >= 8.0.4",
  4541. "Microsoft.EntityFrameworkCore.Tools >= 8.0.0"
  4542. ]
  4543. },
  4544. "packageFolders": {
  4545. "C:\\Users\\OpenValue\\.nuget\\packages\\": {},
  4546. "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
  4547. },
  4548. "project": {
  4549. "version": "1.0.0",
  4550. "restore": {
  4551. "projectUniqueName": "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.API.Infrastructure\\AipGateway.API.Infrastructure.csproj",
  4552. "projectName": "AipGateway.API.Infrastructure",
  4553. "projectPath": "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.API.Infrastructure\\AipGateway.API.Infrastructure.csproj",
  4554. "packagesPath": "C:\\Users\\OpenValue\\.nuget\\packages\\",
  4555. "outputPath": "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.API.Infrastructure\\obj\\",
  4556. "projectStyle": "PackageReference",
  4557. "fallbackFolders": [
  4558. "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
  4559. ],
  4560. "configFilePaths": [
  4561. "C:\\Users\\OpenValue\\AppData\\Roaming\\NuGet\\NuGet.Config",
  4562. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  4563. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  4564. ],
  4565. "originalTargetFrameworks": [
  4566. "net8.0"
  4567. ],
  4568. "sources": {
  4569. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  4570. "C:\\Program Files\\dotnet\\library-packs": {},
  4571. "https://api.nuget.org/v3/index.json": {}
  4572. },
  4573. "frameworks": {
  4574. "net8.0": {
  4575. "targetAlias": "net8.0",
  4576. "projectReferences": {
  4577. "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.API.Domain\\AipGateway.API.Domain.csproj": {
  4578. "projectPath": "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.API.Domain\\AipGateway.API.Domain.csproj"
  4579. }
  4580. }
  4581. }
  4582. },
  4583. "warningProperties": {
  4584. "warnAsError": [
  4585. "NU1605"
  4586. ]
  4587. },
  4588. "restoreAuditProperties": {
  4589. "enableAudit": "true",
  4590. "auditLevel": "low",
  4591. "auditMode": "direct"
  4592. }
  4593. },
  4594. "frameworks": {
  4595. "net8.0": {
  4596. "targetAlias": "net8.0",
  4597. "dependencies": {
  4598. "Microsoft.EntityFrameworkCore": {
  4599. "target": "Package",
  4600. "version": "[8.0.4, )"
  4601. },
  4602. "Microsoft.EntityFrameworkCore.Tools": {
  4603. "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
  4604. "suppressParent": "All",
  4605. "target": "Package",
  4606. "version": "[8.0.0, )"
  4607. }
  4608. },
  4609. "imports": [
  4610. "net461",
  4611. "net462",
  4612. "net47",
  4613. "net471",
  4614. "net472",
  4615. "net48",
  4616. "net481"
  4617. ],
  4618. "assetTargetFallback": true,
  4619. "warn": true,
  4620. "frameworkReferences": {
  4621. "Microsoft.NETCore.App": {
  4622. "privateAssets": "all"
  4623. }
  4624. },
  4625. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json"
  4626. }
  4627. }
  4628. }
  4629. }