project.assets.json 212 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103
  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. "Coravel/5.0.3": {
  79. "type": "package",
  80. "dependencies": {
  81. "Microsoft.Extensions.Caching.Memory": "3.1.0",
  82. "Microsoft.Extensions.DependencyInjection": "6.0.1",
  83. "Microsoft.Extensions.Hosting.Abstractions": "3.1.0",
  84. "Microsoft.Extensions.Logging.Abstractions": "3.1.0"
  85. },
  86. "compile": {
  87. "lib/net6.0/Coravel.dll": {
  88. "related": ".xml"
  89. }
  90. },
  91. "runtime": {
  92. "lib/net6.0/Coravel.dll": {
  93. "related": ".xml"
  94. }
  95. }
  96. },
  97. "Dapper/2.1.35": {
  98. "type": "package",
  99. "compile": {
  100. "lib/net7.0/Dapper.dll": {
  101. "related": ".xml"
  102. }
  103. },
  104. "runtime": {
  105. "lib/net7.0/Dapper.dll": {
  106. "related": ".xml"
  107. }
  108. }
  109. },
  110. "Experimental.System.Messaging/1.1.0": {
  111. "type": "package",
  112. "compile": {
  113. "lib/netstandard2.0/Experimental.System.Messaging.dll": {
  114. "related": ".xml"
  115. }
  116. },
  117. "runtime": {
  118. "lib/netstandard2.0/Experimental.System.Messaging.dll": {
  119. "related": ".xml"
  120. }
  121. }
  122. },
  123. "FluentValidation/11.9.1": {
  124. "type": "package",
  125. "compile": {
  126. "lib/net8.0/FluentValidation.dll": {
  127. "related": ".xml"
  128. }
  129. },
  130. "runtime": {
  131. "lib/net8.0/FluentValidation.dll": {
  132. "related": ".xml"
  133. }
  134. }
  135. },
  136. "FluentValidation.DependencyInjectionExtensions/11.9.1": {
  137. "type": "package",
  138. "dependencies": {
  139. "FluentValidation": "11.9.1",
  140. "Microsoft.Extensions.Dependencyinjection.Abstractions": "2.1.0"
  141. },
  142. "compile": {
  143. "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": {
  144. "related": ".xml"
  145. }
  146. },
  147. "runtime": {
  148. "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": {
  149. "related": ".xml"
  150. }
  151. }
  152. },
  153. "log4net/2.0.17": {
  154. "type": "package",
  155. "dependencies": {
  156. "System.Configuration.ConfigurationManager": "4.5.0"
  157. },
  158. "compile": {
  159. "lib/netstandard2.0/log4net.dll": {
  160. "related": ".xml"
  161. }
  162. },
  163. "runtime": {
  164. "lib/netstandard2.0/log4net.dll": {
  165. "related": ".xml"
  166. }
  167. }
  168. },
  169. "Microsoft.AspNetCore.Authentication.JwtBearer/8.0.4": {
  170. "type": "package",
  171. "dependencies": {
  172. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "7.1.2"
  173. },
  174. "compile": {
  175. "lib/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {
  176. "related": ".xml"
  177. }
  178. },
  179. "runtime": {
  180. "lib/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {
  181. "related": ".xml"
  182. }
  183. },
  184. "frameworkReferences": [
  185. "Microsoft.AspNetCore.App"
  186. ]
  187. },
  188. "Microsoft.AspNetCore.Cryptography.Internal/8.0.0": {
  189. "type": "package",
  190. "compile": {
  191. "lib/net8.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {
  192. "related": ".xml"
  193. }
  194. },
  195. "runtime": {
  196. "lib/net8.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {
  197. "related": ".xml"
  198. }
  199. }
  200. },
  201. "Microsoft.AspNetCore.Cryptography.KeyDerivation/8.0.0": {
  202. "type": "package",
  203. "dependencies": {
  204. "Microsoft.AspNetCore.Cryptography.Internal": "8.0.0"
  205. },
  206. "compile": {
  207. "lib/net8.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {
  208. "related": ".xml"
  209. }
  210. },
  211. "runtime": {
  212. "lib/net8.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {
  213. "related": ".xml"
  214. }
  215. }
  216. },
  217. "Microsoft.AspNetCore.Http.Features/5.0.17": {
  218. "type": "package",
  219. "dependencies": {
  220. "Microsoft.Extensions.Primitives": "5.0.1",
  221. "System.IO.Pipelines": "5.0.2"
  222. },
  223. "compile": {
  224. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  225. "related": ".xml"
  226. }
  227. },
  228. "runtime": {
  229. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  230. "related": ".xml"
  231. }
  232. }
  233. },
  234. "Microsoft.AspNetCore.Identity.EntityFrameworkCore/8.0.0": {
  235. "type": "package",
  236. "dependencies": {
  237. "Microsoft.EntityFrameworkCore.Relational": "8.0.0",
  238. "Microsoft.Extensions.Identity.Stores": "8.0.0"
  239. },
  240. "compile": {
  241. "lib/net8.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {
  242. "related": ".xml"
  243. }
  244. },
  245. "runtime": {
  246. "lib/net8.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {
  247. "related": ".xml"
  248. }
  249. }
  250. },
  251. "Microsoft.AspNetCore.JsonPatch/8.0.4": {
  252. "type": "package",
  253. "dependencies": {
  254. "Microsoft.CSharp": "4.7.0",
  255. "Newtonsoft.Json": "13.0.3"
  256. },
  257. "compile": {
  258. "lib/net8.0/Microsoft.AspNetCore.JsonPatch.dll": {
  259. "related": ".xml"
  260. }
  261. },
  262. "runtime": {
  263. "lib/net8.0/Microsoft.AspNetCore.JsonPatch.dll": {
  264. "related": ".xml"
  265. }
  266. }
  267. },
  268. "Microsoft.AspNetCore.Mvc.NewtonsoftJson/8.0.4": {
  269. "type": "package",
  270. "dependencies": {
  271. "Microsoft.AspNetCore.JsonPatch": "8.0.4",
  272. "Newtonsoft.Json": "13.0.3",
  273. "Newtonsoft.Json.Bson": "1.0.2"
  274. },
  275. "compile": {
  276. "lib/net8.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": {
  277. "related": ".xml"
  278. }
  279. },
  280. "runtime": {
  281. "lib/net8.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": {
  282. "related": ".xml"
  283. }
  284. },
  285. "frameworkReferences": [
  286. "Microsoft.AspNetCore.App"
  287. ]
  288. },
  289. "Microsoft.Bcl.AsyncInterfaces/1.1.1": {
  290. "type": "package",
  291. "compile": {
  292. "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
  293. },
  294. "runtime": {
  295. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
  296. "related": ".xml"
  297. }
  298. }
  299. },
  300. "Microsoft.CSharp/4.7.0": {
  301. "type": "package",
  302. "compile": {
  303. "ref/netcoreapp2.0/_._": {}
  304. },
  305. "runtime": {
  306. "lib/netcoreapp2.0/_._": {}
  307. }
  308. },
  309. "Microsoft.Data.SqlClient/5.1.5": {
  310. "type": "package",
  311. "dependencies": {
  312. "Azure.Identity": "1.10.3",
  313. "Microsoft.Data.SqlClient.SNI.runtime": "5.1.1",
  314. "Microsoft.Identity.Client": "4.56.0",
  315. "Microsoft.IdentityModel.JsonWebTokens": "6.35.0",
  316. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.35.0",
  317. "Microsoft.SqlServer.Server": "1.0.0",
  318. "System.Configuration.ConfigurationManager": "6.0.1",
  319. "System.Diagnostics.DiagnosticSource": "6.0.1",
  320. "System.Runtime.Caching": "6.0.0",
  321. "System.Security.Cryptography.Cng": "5.0.0",
  322. "System.Security.Principal.Windows": "5.0.0",
  323. "System.Text.Encoding.CodePages": "6.0.0",
  324. "System.Text.Encodings.Web": "6.0.0"
  325. },
  326. "compile": {
  327. "ref/net6.0/Microsoft.Data.SqlClient.dll": {
  328. "related": ".pdb;.xml"
  329. }
  330. },
  331. "runtime": {
  332. "lib/net6.0/Microsoft.Data.SqlClient.dll": {
  333. "related": ".pdb;.xml"
  334. }
  335. },
  336. "runtimeTargets": {
  337. "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll": {
  338. "assetType": "runtime",
  339. "rid": "unix"
  340. },
  341. "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll": {
  342. "assetType": "runtime",
  343. "rid": "win"
  344. }
  345. }
  346. },
  347. "Microsoft.Data.SqlClient.SNI.runtime/5.1.1": {
  348. "type": "package",
  349. "runtimeTargets": {
  350. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": {
  351. "assetType": "native",
  352. "rid": "win-arm"
  353. },
  354. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": {
  355. "assetType": "native",
  356. "rid": "win-arm64"
  357. },
  358. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": {
  359. "assetType": "native",
  360. "rid": "win-x64"
  361. },
  362. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": {
  363. "assetType": "native",
  364. "rid": "win-x86"
  365. }
  366. }
  367. },
  368. "Microsoft.EntityFrameworkCore/8.0.4": {
  369. "type": "package",
  370. "dependencies": {
  371. "Microsoft.EntityFrameworkCore.Abstractions": "8.0.4",
  372. "Microsoft.EntityFrameworkCore.Analyzers": "8.0.4",
  373. "Microsoft.Extensions.Caching.Memory": "8.0.0",
  374. "Microsoft.Extensions.Logging": "8.0.0"
  375. },
  376. "compile": {
  377. "lib/net8.0/Microsoft.EntityFrameworkCore.dll": {
  378. "related": ".xml"
  379. }
  380. },
  381. "runtime": {
  382. "lib/net8.0/Microsoft.EntityFrameworkCore.dll": {
  383. "related": ".xml"
  384. }
  385. },
  386. "build": {
  387. "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props": {}
  388. }
  389. },
  390. "Microsoft.EntityFrameworkCore.Abstractions/8.0.4": {
  391. "type": "package",
  392. "compile": {
  393. "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  394. "related": ".xml"
  395. }
  396. },
  397. "runtime": {
  398. "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  399. "related": ".xml"
  400. }
  401. }
  402. },
  403. "Microsoft.EntityFrameworkCore.Analyzers/8.0.4": {
  404. "type": "package",
  405. "compile": {
  406. "lib/netstandard2.0/_._": {}
  407. },
  408. "runtime": {
  409. "lib/netstandard2.0/_._": {}
  410. }
  411. },
  412. "Microsoft.EntityFrameworkCore.Relational/8.0.4": {
  413. "type": "package",
  414. "dependencies": {
  415. "Microsoft.EntityFrameworkCore": "8.0.4",
  416. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
  417. },
  418. "compile": {
  419. "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": {
  420. "related": ".xml"
  421. }
  422. },
  423. "runtime": {
  424. "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": {
  425. "related": ".xml"
  426. }
  427. }
  428. },
  429. "Microsoft.EntityFrameworkCore.SqlServer/8.0.4": {
  430. "type": "package",
  431. "dependencies": {
  432. "Microsoft.Data.SqlClient": "5.1.5",
  433. "Microsoft.EntityFrameworkCore.Relational": "8.0.4"
  434. },
  435. "compile": {
  436. "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
  437. "related": ".xml"
  438. }
  439. },
  440. "runtime": {
  441. "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
  442. "related": ".xml"
  443. }
  444. }
  445. },
  446. "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
  447. "type": "package",
  448. "build": {
  449. "build/Microsoft.Extensions.ApiDescription.Server.props": {},
  450. "build/Microsoft.Extensions.ApiDescription.Server.targets": {}
  451. },
  452. "buildMultiTargeting": {
  453. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {},
  454. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {}
  455. }
  456. },
  457. "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
  458. "type": "package",
  459. "dependencies": {
  460. "Microsoft.Extensions.Primitives": "8.0.0"
  461. },
  462. "compile": {
  463. "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  464. "related": ".xml"
  465. }
  466. },
  467. "runtime": {
  468. "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  469. "related": ".xml"
  470. }
  471. },
  472. "build": {
  473. "buildTransitive/net6.0/_._": {}
  474. }
  475. },
  476. "Microsoft.Extensions.Caching.Memory/8.0.0": {
  477. "type": "package",
  478. "dependencies": {
  479. "Microsoft.Extensions.Caching.Abstractions": "8.0.0",
  480. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  481. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  482. "Microsoft.Extensions.Options": "8.0.0",
  483. "Microsoft.Extensions.Primitives": "8.0.0"
  484. },
  485. "compile": {
  486. "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": {
  487. "related": ".xml"
  488. }
  489. },
  490. "runtime": {
  491. "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": {
  492. "related": ".xml"
  493. }
  494. },
  495. "build": {
  496. "buildTransitive/net6.0/_._": {}
  497. }
  498. },
  499. "Microsoft.Extensions.Configuration/8.0.0": {
  500. "type": "package",
  501. "dependencies": {
  502. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  503. "Microsoft.Extensions.Primitives": "8.0.0"
  504. },
  505. "compile": {
  506. "lib/net8.0/Microsoft.Extensions.Configuration.dll": {
  507. "related": ".xml"
  508. }
  509. },
  510. "runtime": {
  511. "lib/net8.0/Microsoft.Extensions.Configuration.dll": {
  512. "related": ".xml"
  513. }
  514. },
  515. "build": {
  516. "buildTransitive/net6.0/_._": {}
  517. }
  518. },
  519. "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
  520. "type": "package",
  521. "dependencies": {
  522. "Microsoft.Extensions.Primitives": "8.0.0"
  523. },
  524. "compile": {
  525. "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  526. "related": ".xml"
  527. }
  528. },
  529. "runtime": {
  530. "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  531. "related": ".xml"
  532. }
  533. },
  534. "build": {
  535. "buildTransitive/net6.0/_._": {}
  536. }
  537. },
  538. "Microsoft.Extensions.Configuration.Binder/8.0.0": {
  539. "type": "package",
  540. "dependencies": {
  541. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
  542. },
  543. "compile": {
  544. "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll": {
  545. "related": ".xml"
  546. }
  547. },
  548. "runtime": {
  549. "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll": {
  550. "related": ".xml"
  551. }
  552. },
  553. "build": {
  554. "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets": {}
  555. }
  556. },
  557. "Microsoft.Extensions.DependencyInjection/8.0.0": {
  558. "type": "package",
  559. "dependencies": {
  560. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0"
  561. },
  562. "compile": {
  563. "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": {
  564. "related": ".xml"
  565. }
  566. },
  567. "runtime": {
  568. "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": {
  569. "related": ".xml"
  570. }
  571. },
  572. "build": {
  573. "buildTransitive/net6.0/_._": {}
  574. }
  575. },
  576. "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.1": {
  577. "type": "package",
  578. "compile": {
  579. "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  580. "related": ".xml"
  581. }
  582. },
  583. "runtime": {
  584. "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  585. "related": ".xml"
  586. }
  587. },
  588. "build": {
  589. "buildTransitive/net6.0/_._": {}
  590. }
  591. },
  592. "Microsoft.Extensions.DependencyModel/8.0.0": {
  593. "type": "package",
  594. "dependencies": {
  595. "System.Text.Encodings.Web": "8.0.0",
  596. "System.Text.Json": "8.0.0"
  597. },
  598. "compile": {
  599. "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": {
  600. "related": ".xml"
  601. }
  602. },
  603. "runtime": {
  604. "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": {
  605. "related": ".xml"
  606. }
  607. },
  608. "build": {
  609. "buildTransitive/net6.0/_._": {}
  610. }
  611. },
  612. "Microsoft.Extensions.Diagnostics.Abstractions/8.0.0": {
  613. "type": "package",
  614. "dependencies": {
  615. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  616. "Microsoft.Extensions.Options": "8.0.0",
  617. "System.Diagnostics.DiagnosticSource": "8.0.0"
  618. },
  619. "compile": {
  620. "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {
  621. "related": ".xml"
  622. }
  623. },
  624. "runtime": {
  625. "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {
  626. "related": ".xml"
  627. }
  628. },
  629. "build": {
  630. "buildTransitive/net6.0/_._": {}
  631. }
  632. },
  633. "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
  634. "type": "package",
  635. "dependencies": {
  636. "Microsoft.Extensions.Primitives": "8.0.0"
  637. },
  638. "compile": {
  639. "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  640. "related": ".xml"
  641. }
  642. },
  643. "runtime": {
  644. "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  645. "related": ".xml"
  646. }
  647. },
  648. "build": {
  649. "buildTransitive/net6.0/_._": {}
  650. }
  651. },
  652. "Microsoft.Extensions.Hosting.Abstractions/8.0.0": {
  653. "type": "package",
  654. "dependencies": {
  655. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  656. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  657. "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0",
  658. "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
  659. "Microsoft.Extensions.Logging.Abstractions": "8.0.0"
  660. },
  661. "compile": {
  662. "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
  663. "related": ".xml"
  664. }
  665. },
  666. "runtime": {
  667. "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
  668. "related": ".xml"
  669. }
  670. },
  671. "build": {
  672. "buildTransitive/net6.0/_._": {}
  673. }
  674. },
  675. "Microsoft.Extensions.Identity.Core/8.0.0": {
  676. "type": "package",
  677. "dependencies": {
  678. "Microsoft.AspNetCore.Cryptography.KeyDerivation": "8.0.0",
  679. "Microsoft.Extensions.Logging": "8.0.0",
  680. "Microsoft.Extensions.Options": "8.0.0"
  681. },
  682. "compile": {
  683. "lib/net8.0/Microsoft.Extensions.Identity.Core.dll": {
  684. "related": ".xml"
  685. }
  686. },
  687. "runtime": {
  688. "lib/net8.0/Microsoft.Extensions.Identity.Core.dll": {
  689. "related": ".xml"
  690. }
  691. }
  692. },
  693. "Microsoft.Extensions.Identity.Stores/8.0.0": {
  694. "type": "package",
  695. "dependencies": {
  696. "Microsoft.Extensions.Caching.Abstractions": "8.0.0",
  697. "Microsoft.Extensions.Identity.Core": "8.0.0",
  698. "Microsoft.Extensions.Logging": "8.0.0"
  699. },
  700. "compile": {
  701. "lib/net8.0/Microsoft.Extensions.Identity.Stores.dll": {
  702. "related": ".xml"
  703. }
  704. },
  705. "runtime": {
  706. "lib/net8.0/Microsoft.Extensions.Identity.Stores.dll": {
  707. "related": ".xml"
  708. }
  709. }
  710. },
  711. "Microsoft.Extensions.Logging/8.0.0": {
  712. "type": "package",
  713. "dependencies": {
  714. "Microsoft.Extensions.DependencyInjection": "8.0.0",
  715. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  716. "Microsoft.Extensions.Options": "8.0.0"
  717. },
  718. "compile": {
  719. "lib/net8.0/Microsoft.Extensions.Logging.dll": {
  720. "related": ".xml"
  721. }
  722. },
  723. "runtime": {
  724. "lib/net8.0/Microsoft.Extensions.Logging.dll": {
  725. "related": ".xml"
  726. }
  727. },
  728. "build": {
  729. "buildTransitive/net6.0/_._": {}
  730. }
  731. },
  732. "Microsoft.Extensions.Logging.Abstractions/8.0.0": {
  733. "type": "package",
  734. "dependencies": {
  735. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0"
  736. },
  737. "compile": {
  738. "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  739. "related": ".xml"
  740. }
  741. },
  742. "runtime": {
  743. "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  744. "related": ".xml"
  745. }
  746. },
  747. "build": {
  748. "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
  749. }
  750. },
  751. "Microsoft.Extensions.Logging.Log4Net.AspNetCore/8.0.0": {
  752. "type": "package",
  753. "dependencies": {
  754. "Microsoft.Extensions.Configuration": "8.0.0",
  755. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  756. "Microsoft.Extensions.Configuration.Binder": "8.0.0",
  757. "Microsoft.Extensions.Logging": "8.0.0",
  758. "log4net": "2.0.15"
  759. },
  760. "compile": {
  761. "lib/net8.0/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll": {}
  762. },
  763. "runtime": {
  764. "lib/net8.0/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll": {}
  765. }
  766. },
  767. "Microsoft.Extensions.Options/8.0.0": {
  768. "type": "package",
  769. "dependencies": {
  770. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  771. "Microsoft.Extensions.Primitives": "8.0.0"
  772. },
  773. "compile": {
  774. "lib/net8.0/Microsoft.Extensions.Options.dll": {
  775. "related": ".xml"
  776. }
  777. },
  778. "runtime": {
  779. "lib/net8.0/Microsoft.Extensions.Options.dll": {
  780. "related": ".xml"
  781. }
  782. },
  783. "build": {
  784. "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {}
  785. }
  786. },
  787. "Microsoft.Extensions.Primitives/8.0.0": {
  788. "type": "package",
  789. "compile": {
  790. "lib/net8.0/Microsoft.Extensions.Primitives.dll": {
  791. "related": ".xml"
  792. }
  793. },
  794. "runtime": {
  795. "lib/net8.0/Microsoft.Extensions.Primitives.dll": {
  796. "related": ".xml"
  797. }
  798. },
  799. "build": {
  800. "buildTransitive/net6.0/_._": {}
  801. }
  802. },
  803. "Microsoft.Identity.Client/4.61.3": {
  804. "type": "package",
  805. "dependencies": {
  806. "Microsoft.IdentityModel.Abstractions": "6.35.0",
  807. "System.Diagnostics.DiagnosticSource": "6.0.1"
  808. },
  809. "compile": {
  810. "lib/net6.0/Microsoft.Identity.Client.dll": {
  811. "related": ".xml"
  812. }
  813. },
  814. "runtime": {
  815. "lib/net6.0/Microsoft.Identity.Client.dll": {
  816. "related": ".xml"
  817. }
  818. }
  819. },
  820. "Microsoft.Identity.Client.Extensions.Msal/4.61.3": {
  821. "type": "package",
  822. "dependencies": {
  823. "Microsoft.Identity.Client": "4.61.3",
  824. "System.Security.Cryptography.ProtectedData": "4.5.0"
  825. },
  826. "compile": {
  827. "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll": {
  828. "related": ".xml"
  829. }
  830. },
  831. "runtime": {
  832. "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll": {
  833. "related": ".xml"
  834. }
  835. }
  836. },
  837. "Microsoft.IdentityModel.Abstractions/7.1.2": {
  838. "type": "package",
  839. "compile": {
  840. "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll": {
  841. "related": ".xml"
  842. }
  843. },
  844. "runtime": {
  845. "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll": {
  846. "related": ".xml"
  847. }
  848. }
  849. },
  850. "Microsoft.IdentityModel.JsonWebTokens/7.1.2": {
  851. "type": "package",
  852. "dependencies": {
  853. "Microsoft.IdentityModel.Tokens": "7.1.2"
  854. },
  855. "compile": {
  856. "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  857. "related": ".xml"
  858. }
  859. },
  860. "runtime": {
  861. "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  862. "related": ".xml"
  863. }
  864. }
  865. },
  866. "Microsoft.IdentityModel.Logging/7.1.2": {
  867. "type": "package",
  868. "dependencies": {
  869. "Microsoft.IdentityModel.Abstractions": "7.1.2"
  870. },
  871. "compile": {
  872. "lib/net8.0/Microsoft.IdentityModel.Logging.dll": {
  873. "related": ".xml"
  874. }
  875. },
  876. "runtime": {
  877. "lib/net8.0/Microsoft.IdentityModel.Logging.dll": {
  878. "related": ".xml"
  879. }
  880. }
  881. },
  882. "Microsoft.IdentityModel.Protocols/7.1.2": {
  883. "type": "package",
  884. "dependencies": {
  885. "Microsoft.IdentityModel.Logging": "7.1.2",
  886. "Microsoft.IdentityModel.Tokens": "7.1.2"
  887. },
  888. "compile": {
  889. "lib/net8.0/Microsoft.IdentityModel.Protocols.dll": {
  890. "related": ".xml"
  891. }
  892. },
  893. "runtime": {
  894. "lib/net8.0/Microsoft.IdentityModel.Protocols.dll": {
  895. "related": ".xml"
  896. }
  897. }
  898. },
  899. "Microsoft.IdentityModel.Protocols.OpenIdConnect/7.1.2": {
  900. "type": "package",
  901. "dependencies": {
  902. "Microsoft.IdentityModel.Protocols": "7.1.2",
  903. "System.IdentityModel.Tokens.Jwt": "7.1.2"
  904. },
  905. "compile": {
  906. "lib/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  907. "related": ".xml"
  908. }
  909. },
  910. "runtime": {
  911. "lib/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  912. "related": ".xml"
  913. }
  914. }
  915. },
  916. "Microsoft.IdentityModel.Tokens/7.1.2": {
  917. "type": "package",
  918. "dependencies": {
  919. "Microsoft.IdentityModel.Logging": "7.1.2"
  920. },
  921. "compile": {
  922. "lib/net8.0/Microsoft.IdentityModel.Tokens.dll": {
  923. "related": ".xml"
  924. }
  925. },
  926. "runtime": {
  927. "lib/net8.0/Microsoft.IdentityModel.Tokens.dll": {
  928. "related": ".xml"
  929. }
  930. }
  931. },
  932. "Microsoft.InformationProtection.File/1.14.128": {
  933. "type": "package",
  934. "compile": {
  935. "lib/netstandard2.0/Microsoft.InformationProtection.dll": {
  936. "related": ".xml"
  937. }
  938. },
  939. "runtime": {
  940. "lib/netstandard2.0/Microsoft.InformationProtection.dll": {
  941. "related": ".xml"
  942. }
  943. },
  944. "build": {
  945. "build/netstandard2.0/_._": {}
  946. }
  947. },
  948. "Microsoft.OpenApi/1.3.1": {
  949. "type": "package",
  950. "compile": {
  951. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  952. "related": ".pdb;.xml"
  953. }
  954. },
  955. "runtime": {
  956. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  957. "related": ".pdb;.xml"
  958. }
  959. }
  960. },
  961. "Microsoft.SqlServer.Server/1.0.0": {
  962. "type": "package",
  963. "compile": {
  964. "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": {
  965. "related": ".pdb;.xml"
  966. }
  967. },
  968. "runtime": {
  969. "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": {
  970. "related": ".pdb;.xml"
  971. }
  972. }
  973. },
  974. "Microsoft.Win32.SystemEvents/6.0.0": {
  975. "type": "package",
  976. "compile": {
  977. "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
  978. "related": ".xml"
  979. }
  980. },
  981. "runtime": {
  982. "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
  983. "related": ".xml"
  984. }
  985. },
  986. "build": {
  987. "buildTransitive/netcoreapp3.1/_._": {}
  988. },
  989. "runtimeTargets": {
  990. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
  991. "assetType": "runtime",
  992. "rid": "win"
  993. }
  994. }
  995. },
  996. "Newtonsoft.Json/13.0.3": {
  997. "type": "package",
  998. "compile": {
  999. "lib/net6.0/Newtonsoft.Json.dll": {
  1000. "related": ".xml"
  1001. }
  1002. },
  1003. "runtime": {
  1004. "lib/net6.0/Newtonsoft.Json.dll": {
  1005. "related": ".xml"
  1006. }
  1007. }
  1008. },
  1009. "Newtonsoft.Json.Bson/1.0.2": {
  1010. "type": "package",
  1011. "dependencies": {
  1012. "Newtonsoft.Json": "12.0.1"
  1013. },
  1014. "compile": {
  1015. "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": {
  1016. "related": ".pdb;.xml"
  1017. }
  1018. },
  1019. "runtime": {
  1020. "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": {
  1021. "related": ".pdb;.xml"
  1022. }
  1023. }
  1024. },
  1025. "NReco.PdfGenerator/1.2.1": {
  1026. "type": "package",
  1027. "compile": {
  1028. "lib/netstandard2.0/NReco.PdfGenerator.dll": {
  1029. "related": ".xml"
  1030. }
  1031. },
  1032. "runtime": {
  1033. "lib/netstandard2.0/NReco.PdfGenerator.dll": {
  1034. "related": ".xml"
  1035. }
  1036. }
  1037. },
  1038. "Scrutor/3.3.0": {
  1039. "type": "package",
  1040. "dependencies": {
  1041. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.9",
  1042. "Microsoft.Extensions.DependencyModel": "3.1.6"
  1043. },
  1044. "compile": {
  1045. "lib/netcoreapp3.1/Scrutor.dll": {
  1046. "related": ".pdb;.xml"
  1047. }
  1048. },
  1049. "runtime": {
  1050. "lib/netcoreapp3.1/Scrutor.dll": {
  1051. "related": ".pdb;.xml"
  1052. }
  1053. }
  1054. },
  1055. "Serilog/4.0.0": {
  1056. "type": "package",
  1057. "compile": {
  1058. "lib/net8.0/Serilog.dll": {
  1059. "related": ".xml"
  1060. }
  1061. },
  1062. "runtime": {
  1063. "lib/net8.0/Serilog.dll": {
  1064. "related": ".xml"
  1065. }
  1066. }
  1067. },
  1068. "Serilog.AspNetCore/8.0.1": {
  1069. "type": "package",
  1070. "dependencies": {
  1071. "Microsoft.Extensions.DependencyInjection": "8.0.0",
  1072. "Microsoft.Extensions.Logging": "8.0.0",
  1073. "Serilog": "3.1.1",
  1074. "Serilog.Extensions.Hosting": "8.0.0",
  1075. "Serilog.Extensions.Logging": "8.0.0",
  1076. "Serilog.Formatting.Compact": "2.0.0",
  1077. "Serilog.Settings.Configuration": "8.0.0",
  1078. "Serilog.Sinks.Console": "5.0.0",
  1079. "Serilog.Sinks.Debug": "2.0.0",
  1080. "Serilog.Sinks.File": "5.0.0"
  1081. },
  1082. "compile": {
  1083. "lib/net8.0/Serilog.AspNetCore.dll": {
  1084. "related": ".xml"
  1085. }
  1086. },
  1087. "runtime": {
  1088. "lib/net8.0/Serilog.AspNetCore.dll": {
  1089. "related": ".xml"
  1090. }
  1091. },
  1092. "frameworkReferences": [
  1093. "Microsoft.AspNetCore.App"
  1094. ]
  1095. },
  1096. "Serilog.Enrichers.Thread/4.0.0": {
  1097. "type": "package",
  1098. "dependencies": {
  1099. "Serilog": "4.0.0"
  1100. },
  1101. "compile": {
  1102. "lib/net8.0/Serilog.Enrichers.Thread.dll": {
  1103. "related": ".xml"
  1104. }
  1105. },
  1106. "runtime": {
  1107. "lib/net8.0/Serilog.Enrichers.Thread.dll": {
  1108. "related": ".xml"
  1109. }
  1110. }
  1111. },
  1112. "Serilog.Extensions.Hosting/8.0.0": {
  1113. "type": "package",
  1114. "dependencies": {
  1115. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  1116. "Microsoft.Extensions.Hosting.Abstractions": "8.0.0",
  1117. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  1118. "Serilog": "3.1.1",
  1119. "Serilog.Extensions.Logging": "8.0.0"
  1120. },
  1121. "compile": {
  1122. "lib/net8.0/Serilog.Extensions.Hosting.dll": {
  1123. "related": ".xml"
  1124. }
  1125. },
  1126. "runtime": {
  1127. "lib/net8.0/Serilog.Extensions.Hosting.dll": {
  1128. "related": ".xml"
  1129. }
  1130. }
  1131. },
  1132. "Serilog.Extensions.Logging/8.0.0": {
  1133. "type": "package",
  1134. "dependencies": {
  1135. "Microsoft.Extensions.Logging": "8.0.0",
  1136. "Serilog": "3.1.1"
  1137. },
  1138. "compile": {
  1139. "lib/net8.0/Serilog.Extensions.Logging.dll": {
  1140. "related": ".xml"
  1141. }
  1142. },
  1143. "runtime": {
  1144. "lib/net8.0/Serilog.Extensions.Logging.dll": {
  1145. "related": ".xml"
  1146. }
  1147. }
  1148. },
  1149. "Serilog.Formatting.Compact/2.0.0": {
  1150. "type": "package",
  1151. "dependencies": {
  1152. "Serilog": "3.1.0"
  1153. },
  1154. "compile": {
  1155. "lib/net7.0/Serilog.Formatting.Compact.dll": {
  1156. "related": ".xml"
  1157. }
  1158. },
  1159. "runtime": {
  1160. "lib/net7.0/Serilog.Formatting.Compact.dll": {
  1161. "related": ".xml"
  1162. }
  1163. }
  1164. },
  1165. "Serilog.Settings.Configuration/8.0.0": {
  1166. "type": "package",
  1167. "dependencies": {
  1168. "Microsoft.Extensions.Configuration.Binder": "8.0.0",
  1169. "Microsoft.Extensions.DependencyModel": "8.0.0",
  1170. "Serilog": "3.1.1"
  1171. },
  1172. "compile": {
  1173. "lib/net8.0/Serilog.Settings.Configuration.dll": {
  1174. "related": ".xml"
  1175. }
  1176. },
  1177. "runtime": {
  1178. "lib/net8.0/Serilog.Settings.Configuration.dll": {
  1179. "related": ".xml"
  1180. }
  1181. }
  1182. },
  1183. "Serilog.Sinks.Console/6.0.0": {
  1184. "type": "package",
  1185. "dependencies": {
  1186. "Serilog": "4.0.0"
  1187. },
  1188. "compile": {
  1189. "lib/net8.0/Serilog.Sinks.Console.dll": {
  1190. "related": ".xml"
  1191. }
  1192. },
  1193. "runtime": {
  1194. "lib/net8.0/Serilog.Sinks.Console.dll": {
  1195. "related": ".xml"
  1196. }
  1197. }
  1198. },
  1199. "Serilog.Sinks.Debug/2.0.0": {
  1200. "type": "package",
  1201. "dependencies": {
  1202. "Serilog": "2.10.0"
  1203. },
  1204. "compile": {
  1205. "lib/netstandard2.1/Serilog.Sinks.Debug.dll": {
  1206. "related": ".xml"
  1207. }
  1208. },
  1209. "runtime": {
  1210. "lib/netstandard2.1/Serilog.Sinks.Debug.dll": {
  1211. "related": ".xml"
  1212. }
  1213. }
  1214. },
  1215. "Serilog.Sinks.File/6.0.0": {
  1216. "type": "package",
  1217. "dependencies": {
  1218. "Serilog": "4.0.0"
  1219. },
  1220. "compile": {
  1221. "lib/net8.0/Serilog.Sinks.File.dll": {
  1222. "related": ".xml"
  1223. }
  1224. },
  1225. "runtime": {
  1226. "lib/net8.0/Serilog.Sinks.File.dll": {
  1227. "related": ".xml"
  1228. }
  1229. }
  1230. },
  1231. "Swashbuckle.AspNetCore/6.5.0": {
  1232. "type": "package",
  1233. "dependencies": {
  1234. "Microsoft.Extensions.ApiDescription.Server": "6.0.5",
  1235. "Swashbuckle.AspNetCore.Swagger": "6.5.0",
  1236. "Swashbuckle.AspNetCore.SwaggerGen": "6.5.0",
  1237. "Swashbuckle.AspNetCore.SwaggerUI": "6.5.0"
  1238. },
  1239. "build": {
  1240. "build/Swashbuckle.AspNetCore.props": {}
  1241. }
  1242. },
  1243. "Swashbuckle.AspNetCore.Annotations/6.5.0": {
  1244. "type": "package",
  1245. "dependencies": {
  1246. "Swashbuckle.AspNetCore.SwaggerGen": "6.5.0"
  1247. },
  1248. "compile": {
  1249. "lib/net7.0/Swashbuckle.AspNetCore.Annotations.dll": {
  1250. "related": ".pdb;.xml"
  1251. }
  1252. },
  1253. "runtime": {
  1254. "lib/net7.0/Swashbuckle.AspNetCore.Annotations.dll": {
  1255. "related": ".pdb;.xml"
  1256. }
  1257. }
  1258. },
  1259. "Swashbuckle.AspNetCore.Filters/8.0.2": {
  1260. "type": "package",
  1261. "dependencies": {
  1262. "Microsoft.Extensions.DependencyInjection": "2.1.0",
  1263. "Microsoft.OpenApi": "1.3.1",
  1264. "Scrutor": "3.3.0",
  1265. "Swashbuckle.AspNetCore.Filters.Abstractions": "8.0.2",
  1266. "Swashbuckle.AspNetCore.SwaggerGen": "5.0.0"
  1267. },
  1268. "compile": {
  1269. "lib/net5.0/Swashbuckle.AspNetCore.Filters.dll": {}
  1270. },
  1271. "runtime": {
  1272. "lib/net5.0/Swashbuckle.AspNetCore.Filters.dll": {}
  1273. }
  1274. },
  1275. "Swashbuckle.AspNetCore.Filters.Abstractions/8.0.2": {
  1276. "type": "package",
  1277. "compile": {
  1278. "lib/net5.0/Swashbuckle.AspNetCore.Filters.Abstractions.dll": {}
  1279. },
  1280. "runtime": {
  1281. "lib/net5.0/Swashbuckle.AspNetCore.Filters.Abstractions.dll": {}
  1282. }
  1283. },
  1284. "Swashbuckle.AspNetCore.Swagger/6.5.0": {
  1285. "type": "package",
  1286. "dependencies": {
  1287. "Microsoft.OpenApi": "1.2.3"
  1288. },
  1289. "compile": {
  1290. "lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1291. "related": ".pdb;.xml"
  1292. }
  1293. },
  1294. "runtime": {
  1295. "lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1296. "related": ".pdb;.xml"
  1297. }
  1298. },
  1299. "frameworkReferences": [
  1300. "Microsoft.AspNetCore.App"
  1301. ]
  1302. },
  1303. "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": {
  1304. "type": "package",
  1305. "dependencies": {
  1306. "Swashbuckle.AspNetCore.Swagger": "6.5.0"
  1307. },
  1308. "compile": {
  1309. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1310. "related": ".pdb;.xml"
  1311. }
  1312. },
  1313. "runtime": {
  1314. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1315. "related": ".pdb;.xml"
  1316. }
  1317. }
  1318. },
  1319. "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": {
  1320. "type": "package",
  1321. "compile": {
  1322. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1323. "related": ".pdb;.xml"
  1324. }
  1325. },
  1326. "runtime": {
  1327. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1328. "related": ".pdb;.xml"
  1329. }
  1330. },
  1331. "frameworkReferences": [
  1332. "Microsoft.AspNetCore.App"
  1333. ]
  1334. },
  1335. "System.Configuration.ConfigurationManager/6.0.1": {
  1336. "type": "package",
  1337. "dependencies": {
  1338. "System.Security.Cryptography.ProtectedData": "6.0.0",
  1339. "System.Security.Permissions": "6.0.0"
  1340. },
  1341. "compile": {
  1342. "lib/net6.0/System.Configuration.ConfigurationManager.dll": {
  1343. "related": ".xml"
  1344. }
  1345. },
  1346. "runtime": {
  1347. "lib/net6.0/System.Configuration.ConfigurationManager.dll": {
  1348. "related": ".xml"
  1349. }
  1350. },
  1351. "build": {
  1352. "buildTransitive/netcoreapp3.1/_._": {}
  1353. }
  1354. },
  1355. "System.Diagnostics.DiagnosticSource/8.0.0": {
  1356. "type": "package",
  1357. "compile": {
  1358. "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": {
  1359. "related": ".xml"
  1360. }
  1361. },
  1362. "runtime": {
  1363. "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": {
  1364. "related": ".xml"
  1365. }
  1366. },
  1367. "build": {
  1368. "buildTransitive/net6.0/_._": {}
  1369. }
  1370. },
  1371. "System.Drawing.Common/6.0.0": {
  1372. "type": "package",
  1373. "dependencies": {
  1374. "Microsoft.Win32.SystemEvents": "6.0.0"
  1375. },
  1376. "compile": {
  1377. "lib/net6.0/System.Drawing.Common.dll": {
  1378. "related": ".xml"
  1379. }
  1380. },
  1381. "runtime": {
  1382. "lib/net6.0/System.Drawing.Common.dll": {
  1383. "related": ".xml"
  1384. }
  1385. },
  1386. "build": {
  1387. "buildTransitive/netcoreapp3.1/_._": {}
  1388. },
  1389. "runtimeTargets": {
  1390. "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": {
  1391. "assetType": "runtime",
  1392. "rid": "unix"
  1393. },
  1394. "runtimes/win/lib/net6.0/System.Drawing.Common.dll": {
  1395. "assetType": "runtime",
  1396. "rid": "win"
  1397. }
  1398. }
  1399. },
  1400. "System.Formats.Asn1/5.0.0": {
  1401. "type": "package",
  1402. "compile": {
  1403. "lib/netstandard2.0/_._": {
  1404. "related": ".xml"
  1405. }
  1406. },
  1407. "runtime": {
  1408. "lib/netstandard2.0/System.Formats.Asn1.dll": {
  1409. "related": ".xml"
  1410. }
  1411. }
  1412. },
  1413. "System.IdentityModel.Tokens.Jwt/7.1.2": {
  1414. "type": "package",
  1415. "dependencies": {
  1416. "Microsoft.IdentityModel.JsonWebTokens": "7.1.2",
  1417. "Microsoft.IdentityModel.Tokens": "7.1.2"
  1418. },
  1419. "compile": {
  1420. "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll": {
  1421. "related": ".xml"
  1422. }
  1423. },
  1424. "runtime": {
  1425. "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll": {
  1426. "related": ".xml"
  1427. }
  1428. }
  1429. },
  1430. "System.IO.Pipelines/5.0.2": {
  1431. "type": "package",
  1432. "compile": {
  1433. "ref/netcoreapp2.0/System.IO.Pipelines.dll": {
  1434. "related": ".xml"
  1435. }
  1436. },
  1437. "runtime": {
  1438. "lib/netcoreapp3.0/System.IO.Pipelines.dll": {
  1439. "related": ".xml"
  1440. }
  1441. }
  1442. },
  1443. "System.Memory/4.5.4": {
  1444. "type": "package",
  1445. "compile": {
  1446. "ref/netcoreapp2.1/_._": {}
  1447. },
  1448. "runtime": {
  1449. "lib/netcoreapp2.1/_._": {}
  1450. }
  1451. },
  1452. "System.Memory.Data/1.0.2": {
  1453. "type": "package",
  1454. "dependencies": {
  1455. "System.Text.Encodings.Web": "4.7.2",
  1456. "System.Text.Json": "4.6.0"
  1457. },
  1458. "compile": {
  1459. "lib/netstandard2.0/System.Memory.Data.dll": {
  1460. "related": ".xml"
  1461. }
  1462. },
  1463. "runtime": {
  1464. "lib/netstandard2.0/System.Memory.Data.dll": {
  1465. "related": ".xml"
  1466. }
  1467. }
  1468. },
  1469. "System.Numerics.Vectors/4.5.0": {
  1470. "type": "package",
  1471. "compile": {
  1472. "ref/netcoreapp2.0/_._": {}
  1473. },
  1474. "runtime": {
  1475. "lib/netcoreapp2.0/_._": {}
  1476. }
  1477. },
  1478. "System.Runtime.Caching/6.0.0": {
  1479. "type": "package",
  1480. "dependencies": {
  1481. "System.Configuration.ConfigurationManager": "6.0.0"
  1482. },
  1483. "compile": {
  1484. "lib/net6.0/_._": {
  1485. "related": ".xml"
  1486. }
  1487. },
  1488. "runtime": {
  1489. "lib/net6.0/System.Runtime.Caching.dll": {
  1490. "related": ".xml"
  1491. }
  1492. },
  1493. "build": {
  1494. "buildTransitive/netcoreapp3.1/_._": {}
  1495. },
  1496. "runtimeTargets": {
  1497. "runtimes/win/lib/net6.0/System.Runtime.Caching.dll": {
  1498. "assetType": "runtime",
  1499. "rid": "win"
  1500. }
  1501. }
  1502. },
  1503. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  1504. "type": "package",
  1505. "compile": {
  1506. "lib/net6.0/_._": {
  1507. "related": ".xml"
  1508. }
  1509. },
  1510. "runtime": {
  1511. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
  1512. "related": ".xml"
  1513. }
  1514. },
  1515. "build": {
  1516. "buildTransitive/netcoreapp3.1/_._": {}
  1517. }
  1518. },
  1519. "System.Security.AccessControl/6.0.0": {
  1520. "type": "package",
  1521. "compile": {
  1522. "lib/net6.0/System.Security.AccessControl.dll": {
  1523. "related": ".xml"
  1524. }
  1525. },
  1526. "runtime": {
  1527. "lib/net6.0/System.Security.AccessControl.dll": {
  1528. "related": ".xml"
  1529. }
  1530. },
  1531. "build": {
  1532. "buildTransitive/netcoreapp3.1/_._": {}
  1533. },
  1534. "runtimeTargets": {
  1535. "runtimes/win/lib/net6.0/System.Security.AccessControl.dll": {
  1536. "assetType": "runtime",
  1537. "rid": "win"
  1538. }
  1539. }
  1540. },
  1541. "System.Security.Cryptography.Cng/5.0.0": {
  1542. "type": "package",
  1543. "dependencies": {
  1544. "System.Formats.Asn1": "5.0.0"
  1545. },
  1546. "compile": {
  1547. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
  1548. "related": ".xml"
  1549. }
  1550. },
  1551. "runtime": {
  1552. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
  1553. "related": ".xml"
  1554. }
  1555. },
  1556. "runtimeTargets": {
  1557. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
  1558. "assetType": "runtime",
  1559. "rid": "win"
  1560. }
  1561. }
  1562. },
  1563. "System.Security.Cryptography.ProtectedData/6.0.0": {
  1564. "type": "package",
  1565. "compile": {
  1566. "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
  1567. "related": ".xml"
  1568. }
  1569. },
  1570. "runtime": {
  1571. "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
  1572. "related": ".xml"
  1573. }
  1574. },
  1575. "build": {
  1576. "buildTransitive/netcoreapp3.1/_._": {}
  1577. },
  1578. "runtimeTargets": {
  1579. "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
  1580. "assetType": "runtime",
  1581. "rid": "win"
  1582. }
  1583. }
  1584. },
  1585. "System.Security.Permissions/6.0.0": {
  1586. "type": "package",
  1587. "dependencies": {
  1588. "System.Security.AccessControl": "6.0.0",
  1589. "System.Windows.Extensions": "6.0.0"
  1590. },
  1591. "compile": {
  1592. "lib/net6.0/System.Security.Permissions.dll": {
  1593. "related": ".xml"
  1594. }
  1595. },
  1596. "runtime": {
  1597. "lib/net6.0/System.Security.Permissions.dll": {
  1598. "related": ".xml"
  1599. }
  1600. },
  1601. "build": {
  1602. "buildTransitive/netcoreapp3.1/_._": {}
  1603. }
  1604. },
  1605. "System.Security.Principal.Windows/5.0.0": {
  1606. "type": "package",
  1607. "compile": {
  1608. "ref/netcoreapp3.0/_._": {
  1609. "related": ".xml"
  1610. }
  1611. },
  1612. "runtime": {
  1613. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  1614. "related": ".xml"
  1615. }
  1616. },
  1617. "runtimeTargets": {
  1618. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  1619. "assetType": "runtime",
  1620. "rid": "unix"
  1621. },
  1622. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  1623. "assetType": "runtime",
  1624. "rid": "win"
  1625. }
  1626. }
  1627. },
  1628. "System.Text.Encoding.CodePages/6.0.0": {
  1629. "type": "package",
  1630. "dependencies": {
  1631. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1632. },
  1633. "compile": {
  1634. "lib/net6.0/_._": {
  1635. "related": ".xml"
  1636. }
  1637. },
  1638. "runtime": {
  1639. "lib/net6.0/System.Text.Encoding.CodePages.dll": {
  1640. "related": ".xml"
  1641. }
  1642. },
  1643. "build": {
  1644. "buildTransitive/netcoreapp3.1/_._": {}
  1645. },
  1646. "runtimeTargets": {
  1647. "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll": {
  1648. "assetType": "runtime",
  1649. "rid": "win"
  1650. }
  1651. }
  1652. },
  1653. "System.Text.Encodings.Web/8.0.0": {
  1654. "type": "package",
  1655. "compile": {
  1656. "lib/net8.0/System.Text.Encodings.Web.dll": {
  1657. "related": ".xml"
  1658. }
  1659. },
  1660. "runtime": {
  1661. "lib/net8.0/System.Text.Encodings.Web.dll": {
  1662. "related": ".xml"
  1663. }
  1664. },
  1665. "build": {
  1666. "buildTransitive/net6.0/_._": {}
  1667. },
  1668. "runtimeTargets": {
  1669. "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll": {
  1670. "assetType": "runtime",
  1671. "rid": "browser"
  1672. }
  1673. }
  1674. },
  1675. "System.Text.Json/8.0.0": {
  1676. "type": "package",
  1677. "dependencies": {
  1678. "System.Text.Encodings.Web": "8.0.0"
  1679. },
  1680. "compile": {
  1681. "lib/net8.0/System.Text.Json.dll": {
  1682. "related": ".xml"
  1683. }
  1684. },
  1685. "runtime": {
  1686. "lib/net8.0/System.Text.Json.dll": {
  1687. "related": ".xml"
  1688. }
  1689. },
  1690. "build": {
  1691. "buildTransitive/net6.0/System.Text.Json.targets": {}
  1692. }
  1693. },
  1694. "System.Threading.Tasks.Extensions/4.5.4": {
  1695. "type": "package",
  1696. "compile": {
  1697. "ref/netcoreapp2.1/_._": {}
  1698. },
  1699. "runtime": {
  1700. "lib/netcoreapp2.1/_._": {}
  1701. }
  1702. },
  1703. "System.Windows.Extensions/6.0.0": {
  1704. "type": "package",
  1705. "dependencies": {
  1706. "System.Drawing.Common": "6.0.0"
  1707. },
  1708. "compile": {
  1709. "lib/net6.0/System.Windows.Extensions.dll": {
  1710. "related": ".xml"
  1711. }
  1712. },
  1713. "runtime": {
  1714. "lib/net6.0/System.Windows.Extensions.dll": {
  1715. "related": ".xml"
  1716. }
  1717. },
  1718. "runtimeTargets": {
  1719. "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": {
  1720. "assetType": "runtime",
  1721. "rid": "win"
  1722. }
  1723. }
  1724. },
  1725. "AipGateway.AIP/1.0.0": {
  1726. "type": "project",
  1727. "framework": ".NETFramework,Version=v4.8",
  1728. "dependencies": {
  1729. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  1730. "Microsoft.Identity.Client": "4.61.3",
  1731. "Microsoft.Identity.Client.Extensions.Msal": "4.61.3",
  1732. "Microsoft.InformationProtection.File": "1.14.128",
  1733. "Serilog": "4.0.0",
  1734. "log4net": "2.0.17"
  1735. },
  1736. "compile": {
  1737. "bin/placeholder/AipGateway.AIP.dll": {}
  1738. },
  1739. "runtime": {
  1740. "bin/placeholder/AipGateway.AIP.dll": {}
  1741. }
  1742. },
  1743. "AipGateway.API.Application/1.0.0": {
  1744. "type": "project",
  1745. "framework": ".NETCoreApp,Version=v8.0",
  1746. "dependencies": {
  1747. "AipGateway.AIP": "1.0.0",
  1748. "AipGateway.API.Domain": "1.0.0",
  1749. "Microsoft.AspNetCore.Authentication.JwtBearer": "8.0.4",
  1750. "Microsoft.EntityFrameworkCore": "8.0.4",
  1751. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1"
  1752. },
  1753. "compile": {
  1754. "bin/placeholder/AipGateway.API.Application.dll": {}
  1755. },
  1756. "runtime": {
  1757. "bin/placeholder/AipGateway.API.Application.dll": {}
  1758. }
  1759. },
  1760. "AipGateway.API.Domain/1.0.0": {
  1761. "type": "project",
  1762. "framework": ".NETCoreApp,Version=v8.0",
  1763. "dependencies": {
  1764. "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1",
  1765. "FluentValidation": "11.9.1",
  1766. "FluentValidation.DependencyInjectionExtensions": "11.9.1",
  1767. "Microsoft.AspNetCore.Http.Features": "5.0.17",
  1768. "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "8.0.0",
  1769. "Microsoft.EntityFrameworkCore": "8.0.4",
  1770. "Microsoft.EntityFrameworkCore.SqlServer": "8.0.4",
  1771. "Microsoft.Extensions.Identity.Stores": "8.0.0",
  1772. "NReco.PdfGenerator": "1.2.1",
  1773. "Newtonsoft.Json": "13.0.3"
  1774. },
  1775. "compile": {
  1776. "bin/placeholder/AipGateway.API.Domain.dll": {}
  1777. },
  1778. "runtime": {
  1779. "bin/placeholder/AipGateway.API.Domain.dll": {}
  1780. }
  1781. },
  1782. "AipGateway.DRM/1.0.0": {
  1783. "type": "project",
  1784. "compile": {
  1785. "bin/placeholder/AipGateway.DRM.dll": {}
  1786. },
  1787. "runtime": {
  1788. "bin/placeholder/AipGateway.DRM.dll": {}
  1789. }
  1790. },
  1791. "AipGateway.Messaging/1.0.0": {
  1792. "type": "project",
  1793. "framework": ".NETFramework,Version=v4.8",
  1794. "dependencies": {
  1795. "Experimental.System.Messaging": "1.1.0"
  1796. },
  1797. "compile": {
  1798. "bin/placeholder/AipGateway.Messaging.dll": {}
  1799. },
  1800. "runtime": {
  1801. "bin/placeholder/AipGateway.Messaging.dll": {}
  1802. }
  1803. }
  1804. }
  1805. },
  1806. "libraries": {
  1807. "AutoMapper/12.0.1": {
  1808. "sha512": "hvV62vl6Hp/WfQ24yzo3Co9+OPl8wH8hApwVtgWpiAynVJkUcs7xvehnSftawL8Pe8FrPffBRM3hwzLQqWDNjA==",
  1809. "type": "package",
  1810. "path": "automapper/12.0.1",
  1811. "files": [
  1812. ".nupkg.metadata",
  1813. ".signature.p7s",
  1814. "README.md",
  1815. "automapper.12.0.1.nupkg.sha512",
  1816. "automapper.nuspec",
  1817. "icon.png",
  1818. "lib/netstandard2.1/AutoMapper.dll",
  1819. "lib/netstandard2.1/AutoMapper.xml"
  1820. ]
  1821. },
  1822. "AutoMapper.Extensions.Microsoft.DependencyInjection/12.0.1": {
  1823. "sha512": "+g/K+Vpe3gGMKGzjslMOdqNlkikScDjWfVvmWTayrDHaG/n2pPmFBMa+jKX1r/h6BDGFdkyRjAuhFE3ykW+r1g==",
  1824. "type": "package",
  1825. "path": "automapper.extensions.microsoft.dependencyinjection/12.0.1",
  1826. "files": [
  1827. ".nupkg.metadata",
  1828. ".signature.p7s",
  1829. "README.md",
  1830. "automapper.extensions.microsoft.dependencyinjection.12.0.1.nupkg.sha512",
  1831. "automapper.extensions.microsoft.dependencyinjection.nuspec",
  1832. "icon.png",
  1833. "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll"
  1834. ]
  1835. },
  1836. "Azure.Core/1.35.0": {
  1837. "sha512": "hENcx03Jyuqv05F4RBEPbxz29UrM3Nbhnr6Wl6NQpoU9BCIbL3XLentrxDCTrH54NLS11Exxi/o8MYgT/cnKFA==",
  1838. "type": "package",
  1839. "path": "azure.core/1.35.0",
  1840. "files": [
  1841. ".nupkg.metadata",
  1842. ".signature.p7s",
  1843. "CHANGELOG.md",
  1844. "README.md",
  1845. "azure.core.1.35.0.nupkg.sha512",
  1846. "azure.core.nuspec",
  1847. "azureicon.png",
  1848. "lib/net461/Azure.Core.dll",
  1849. "lib/net461/Azure.Core.xml",
  1850. "lib/net472/Azure.Core.dll",
  1851. "lib/net472/Azure.Core.xml",
  1852. "lib/net5.0/Azure.Core.dll",
  1853. "lib/net5.0/Azure.Core.xml",
  1854. "lib/net6.0/Azure.Core.dll",
  1855. "lib/net6.0/Azure.Core.xml",
  1856. "lib/netcoreapp2.1/Azure.Core.dll",
  1857. "lib/netcoreapp2.1/Azure.Core.xml",
  1858. "lib/netstandard2.0/Azure.Core.dll",
  1859. "lib/netstandard2.0/Azure.Core.xml"
  1860. ]
  1861. },
  1862. "Azure.Identity/1.10.3": {
  1863. "sha512": "l1Xm2MWOF2Mzcwuarlw8kWQXLZk3UeB55aQXVyjj23aBfDwOZ3gu5GP2kJ6KlmZeZv2TCzw7x4L3V36iNr3gww==",
  1864. "type": "package",
  1865. "path": "azure.identity/1.10.3",
  1866. "files": [
  1867. ".nupkg.metadata",
  1868. ".signature.p7s",
  1869. "CHANGELOG.md",
  1870. "README.md",
  1871. "azure.identity.1.10.3.nupkg.sha512",
  1872. "azure.identity.nuspec",
  1873. "azureicon.png",
  1874. "lib/netstandard2.0/Azure.Identity.dll",
  1875. "lib/netstandard2.0/Azure.Identity.xml"
  1876. ]
  1877. },
  1878. "Coravel/5.0.3": {
  1879. "sha512": "NCGugxQeszLUqd1Oa6l/HP/Vl1NKM6DInlSCxp1ScCdvnBG+SIoMw7pmJLwP4acO8+7iLxy7FPtGoYOxB+a1HA==",
  1880. "type": "package",
  1881. "path": "coravel/5.0.3",
  1882. "files": [
  1883. ".nupkg.metadata",
  1884. ".signature.p7s",
  1885. "coravel.5.0.3.nupkg.sha512",
  1886. "coravel.nuspec",
  1887. "lib/net6.0/Coravel.dll",
  1888. "lib/net6.0/Coravel.xml",
  1889. "logo.png",
  1890. "readme.md"
  1891. ]
  1892. },
  1893. "Dapper/2.1.35": {
  1894. "sha512": "YKRwjVfrG7GYOovlGyQoMvr1/IJdn+7QzNXJxyMh0YfFF5yvDmTYaJOVYWsckreNjGsGSEtrMTpnzxTUq/tZQw==",
  1895. "type": "package",
  1896. "path": "dapper/2.1.35",
  1897. "files": [
  1898. ".nupkg.metadata",
  1899. ".signature.p7s",
  1900. "Dapper.png",
  1901. "dapper.2.1.35.nupkg.sha512",
  1902. "dapper.nuspec",
  1903. "lib/net461/Dapper.dll",
  1904. "lib/net461/Dapper.xml",
  1905. "lib/net5.0/Dapper.dll",
  1906. "lib/net5.0/Dapper.xml",
  1907. "lib/net7.0/Dapper.dll",
  1908. "lib/net7.0/Dapper.xml",
  1909. "lib/netstandard2.0/Dapper.dll",
  1910. "lib/netstandard2.0/Dapper.xml",
  1911. "readme.md"
  1912. ]
  1913. },
  1914. "Experimental.System.Messaging/1.1.0": {
  1915. "sha512": "vub7Mtt2WFdFKTZKECVuZx6feP5kUpS9EfVy+Yu4GDfdlMwivRdX4TbdkDYS2lKqCjqzUbnxTbJei1IOqC+CnA==",
  1916. "type": "package",
  1917. "path": "experimental.system.messaging/1.1.0",
  1918. "files": [
  1919. ".nupkg.metadata",
  1920. ".signature.p7s",
  1921. "LICENSE.txt",
  1922. "experimental.system.messaging.1.1.0.nupkg.sha512",
  1923. "experimental.system.messaging.nuspec",
  1924. "lib/netstandard2.0/Experimental.System.Messaging.dll",
  1925. "lib/netstandard2.0/Experimental.System.Messaging.xml"
  1926. ]
  1927. },
  1928. "FluentValidation/11.9.1": {
  1929. "sha512": "C+PqISSMdlOZZJx0Hx25atW32tv4vbpsaiQB+PLjK+ZGLzOFuHl1fUJ3Lny77mIZ31ZtYtNG0JgUjxa3wwLsWg==",
  1930. "type": "package",
  1931. "path": "fluentvalidation/11.9.1",
  1932. "files": [
  1933. ".nupkg.metadata",
  1934. ".signature.p7s",
  1935. "README.md",
  1936. "fluent-validation-icon.png",
  1937. "fluentvalidation.11.9.1.nupkg.sha512",
  1938. "fluentvalidation.nuspec",
  1939. "lib/net5.0/FluentValidation.dll",
  1940. "lib/net5.0/FluentValidation.xml",
  1941. "lib/net6.0/FluentValidation.dll",
  1942. "lib/net6.0/FluentValidation.xml",
  1943. "lib/net7.0/FluentValidation.dll",
  1944. "lib/net7.0/FluentValidation.xml",
  1945. "lib/net8.0/FluentValidation.dll",
  1946. "lib/net8.0/FluentValidation.xml",
  1947. "lib/netstandard2.0/FluentValidation.dll",
  1948. "lib/netstandard2.0/FluentValidation.xml",
  1949. "lib/netstandard2.1/FluentValidation.dll",
  1950. "lib/netstandard2.1/FluentValidation.xml"
  1951. ]
  1952. },
  1953. "FluentValidation.DependencyInjectionExtensions/11.9.1": {
  1954. "sha512": "3jJbFcCWhiXhrCKFPjKihzccmosv+CleYewd2zEYS4aaUHx9zQSgOvkYbWUGTbDwJ5j2nDWE0Pr1EQ2xY4pryg==",
  1955. "type": "package",
  1956. "path": "fluentvalidation.dependencyinjectionextensions/11.9.1",
  1957. "files": [
  1958. ".nupkg.metadata",
  1959. ".signature.p7s",
  1960. "README.md",
  1961. "fluent-validation-icon.png",
  1962. "fluentvalidation.dependencyinjectionextensions.11.9.1.nupkg.sha512",
  1963. "fluentvalidation.dependencyinjectionextensions.nuspec",
  1964. "lib/netstandard2.0/FluentValidation.DependencyInjectionExtensions.dll",
  1965. "lib/netstandard2.0/FluentValidation.DependencyInjectionExtensions.xml",
  1966. "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll",
  1967. "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.xml"
  1968. ]
  1969. },
  1970. "log4net/2.0.17": {
  1971. "sha512": "qnnDf/ubJzwm2i1xH7nRMjEDoD+ctse7nZDqb+p7L1PvZc6ykpMoEesWr1/9hFqlsbII2v9e8yyQHJhoDQh7ZA==",
  1972. "type": "package",
  1973. "path": "log4net/2.0.17",
  1974. "files": [
  1975. ".nupkg.metadata",
  1976. ".signature.p7s",
  1977. "lib/net20/log4net.dll",
  1978. "lib/net20/log4net.xml",
  1979. "lib/net35/log4net.dll",
  1980. "lib/net35/log4net.xml",
  1981. "lib/net40-client/log4net.dll",
  1982. "lib/net40-client/log4net.xml",
  1983. "lib/net40/log4net.dll",
  1984. "lib/net40/log4net.xml",
  1985. "lib/net45/log4net.dll",
  1986. "lib/net45/log4net.xml",
  1987. "lib/netstandard1.3/log4net.dll",
  1988. "lib/netstandard1.3/log4net.xml",
  1989. "lib/netstandard2.0/log4net.dll",
  1990. "lib/netstandard2.0/log4net.xml",
  1991. "log4net.2.0.17.nupkg.sha512",
  1992. "log4net.nuspec",
  1993. "package-icon.png"
  1994. ]
  1995. },
  1996. "Microsoft.AspNetCore.Authentication.JwtBearer/8.0.4": {
  1997. "sha512": "tHnHRBgQyiVNZJ8PksNinLdGOsE8+tFFv3E9QEtmwO+iyTHRvg4bJ4X0XZG1u9KxXMTJuAdeIWKWYr2rTLEHqQ==",
  1998. "type": "package",
  1999. "path": "microsoft.aspnetcore.authentication.jwtbearer/8.0.4",
  2000. "files": [
  2001. ".nupkg.metadata",
  2002. ".signature.p7s",
  2003. "Icon.png",
  2004. "THIRD-PARTY-NOTICES.TXT",
  2005. "lib/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll",
  2006. "lib/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.xml",
  2007. "microsoft.aspnetcore.authentication.jwtbearer.8.0.4.nupkg.sha512",
  2008. "microsoft.aspnetcore.authentication.jwtbearer.nuspec"
  2009. ]
  2010. },
  2011. "Microsoft.AspNetCore.Cryptography.Internal/8.0.0": {
  2012. "sha512": "buuMMCTxFcVkOkEftb2OafYxrveNGre9KJF4Oi1DkR4rxIj6oLam7Wq3g0Fp9hNVpJteKEPiupsxYnPrD/oUGA==",
  2013. "type": "package",
  2014. "path": "microsoft.aspnetcore.cryptography.internal/8.0.0",
  2015. "files": [
  2016. ".nupkg.metadata",
  2017. ".signature.p7s",
  2018. "Icon.png",
  2019. "THIRD-PARTY-NOTICES.TXT",
  2020. "lib/net462/Microsoft.AspNetCore.Cryptography.Internal.dll",
  2021. "lib/net462/Microsoft.AspNetCore.Cryptography.Internal.xml",
  2022. "lib/net8.0/Microsoft.AspNetCore.Cryptography.Internal.dll",
  2023. "lib/net8.0/Microsoft.AspNetCore.Cryptography.Internal.xml",
  2024. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll",
  2025. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.xml",
  2026. "microsoft.aspnetcore.cryptography.internal.8.0.0.nupkg.sha512",
  2027. "microsoft.aspnetcore.cryptography.internal.nuspec"
  2028. ]
  2029. },
  2030. "Microsoft.AspNetCore.Cryptography.KeyDerivation/8.0.0": {
  2031. "sha512": "65w93R5wqUUs35R9wjHHDf75GqAbxJsNByKZo5TbQOWSXcUbLWrDUWBQHv78iXIT0PL1pXNqKQz7OHiHMvo0/A==",
  2032. "type": "package",
  2033. "path": "microsoft.aspnetcore.cryptography.keyderivation/8.0.0",
  2034. "files": [
  2035. ".nupkg.metadata",
  2036. ".signature.p7s",
  2037. "Icon.png",
  2038. "THIRD-PARTY-NOTICES.TXT",
  2039. "lib/net462/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  2040. "lib/net462/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  2041. "lib/net8.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  2042. "lib/net8.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  2043. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  2044. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  2045. "microsoft.aspnetcore.cryptography.keyderivation.8.0.0.nupkg.sha512",
  2046. "microsoft.aspnetcore.cryptography.keyderivation.nuspec"
  2047. ]
  2048. },
  2049. "Microsoft.AspNetCore.Http.Features/5.0.17": {
  2050. "sha512": "3jG2xS+dx8DDCGV/F+STdPTg89lX3ao3dF/VEPvJaz3wzBIjuadipTtYNEXDIVuOPZwb6jdmhrX9jkzOIBm5cw==",
  2051. "type": "package",
  2052. "path": "microsoft.aspnetcore.http.features/5.0.17",
  2053. "files": [
  2054. ".nupkg.metadata",
  2055. ".signature.p7s",
  2056. "Icon.png",
  2057. "THIRD-PARTY-NOTICES.TXT",
  2058. "lib/net461/Microsoft.AspNetCore.Http.Features.dll",
  2059. "lib/net461/Microsoft.AspNetCore.Http.Features.xml",
  2060. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll",
  2061. "lib/net5.0/Microsoft.AspNetCore.Http.Features.xml",
  2062. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  2063. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  2064. "microsoft.aspnetcore.http.features.5.0.17.nupkg.sha512",
  2065. "microsoft.aspnetcore.http.features.nuspec"
  2066. ]
  2067. },
  2068. "Microsoft.AspNetCore.Identity.EntityFrameworkCore/8.0.0": {
  2069. "sha512": "ua2LSZY/f0BkNUUVPPm83eq4Xnt+FZYutiMimRrzSmv2K2t2Ia/PuP4CfibYNSwnKl6fbZ49Bwn2mQGWnmmvOA==",
  2070. "type": "package",
  2071. "path": "microsoft.aspnetcore.identity.entityframeworkcore/8.0.0",
  2072. "files": [
  2073. ".nupkg.metadata",
  2074. ".signature.p7s",
  2075. "Icon.png",
  2076. "THIRD-PARTY-NOTICES.TXT",
  2077. "lib/net8.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll",
  2078. "lib/net8.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml",
  2079. "microsoft.aspnetcore.identity.entityframeworkcore.8.0.0.nupkg.sha512",
  2080. "microsoft.aspnetcore.identity.entityframeworkcore.nuspec"
  2081. ]
  2082. },
  2083. "Microsoft.AspNetCore.JsonPatch/8.0.4": {
  2084. "sha512": "8iy7uza6GTuE5GadOryGfsGuA8xP1RTs16zqdXF5gM0b8iDfyNWnyDmatY5cZhXE1kJiko0S7s1T/gNFdIZ7Zg==",
  2085. "type": "package",
  2086. "path": "microsoft.aspnetcore.jsonpatch/8.0.4",
  2087. "files": [
  2088. ".nupkg.metadata",
  2089. ".signature.p7s",
  2090. "Icon.png",
  2091. "THIRD-PARTY-NOTICES.TXT",
  2092. "lib/net462/Microsoft.AspNetCore.JsonPatch.dll",
  2093. "lib/net462/Microsoft.AspNetCore.JsonPatch.xml",
  2094. "lib/net8.0/Microsoft.AspNetCore.JsonPatch.dll",
  2095. "lib/net8.0/Microsoft.AspNetCore.JsonPatch.xml",
  2096. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll",
  2097. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.xml",
  2098. "microsoft.aspnetcore.jsonpatch.8.0.4.nupkg.sha512",
  2099. "microsoft.aspnetcore.jsonpatch.nuspec"
  2100. ]
  2101. },
  2102. "Microsoft.AspNetCore.Mvc.NewtonsoftJson/8.0.4": {
  2103. "sha512": "lhJq0JjrlGZQwQoYrpVbokhb1AlgLGxI3QacSyKgCNOXTNwCi0pUnMR7NrfON20DkL90Kqqyl3wDrLbRaRgcsA==",
  2104. "type": "package",
  2105. "path": "microsoft.aspnetcore.mvc.newtonsoftjson/8.0.4",
  2106. "files": [
  2107. ".nupkg.metadata",
  2108. ".signature.p7s",
  2109. "Icon.png",
  2110. "THIRD-PARTY-NOTICES.TXT",
  2111. "lib/net8.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll",
  2112. "lib/net8.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.xml",
  2113. "microsoft.aspnetcore.mvc.newtonsoftjson.8.0.4.nupkg.sha512",
  2114. "microsoft.aspnetcore.mvc.newtonsoftjson.nuspec"
  2115. ]
  2116. },
  2117. "Microsoft.Bcl.AsyncInterfaces/1.1.1": {
  2118. "sha512": "yuvf07qFWFqtK3P/MRkEKLhn5r2UbSpVueRziSqj0yJQIKFwG1pq9mOayK3zE5qZCTs0CbrwL9M6R8VwqyGy2w==",
  2119. "type": "package",
  2120. "path": "microsoft.bcl.asyncinterfaces/1.1.1",
  2121. "files": [
  2122. ".nupkg.metadata",
  2123. ".signature.p7s",
  2124. "Icon.png",
  2125. "LICENSE.TXT",
  2126. "THIRD-PARTY-NOTICES.TXT",
  2127. "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll",
  2128. "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml",
  2129. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  2130. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
  2131. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  2132. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
  2133. "microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512",
  2134. "microsoft.bcl.asyncinterfaces.nuspec",
  2135. "ref/net461/Microsoft.Bcl.AsyncInterfaces.dll",
  2136. "ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  2137. "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  2138. "useSharedDesignerContext.txt",
  2139. "version.txt"
  2140. ]
  2141. },
  2142. "Microsoft.CSharp/4.7.0": {
  2143. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  2144. "type": "package",
  2145. "path": "microsoft.csharp/4.7.0",
  2146. "files": [
  2147. ".nupkg.metadata",
  2148. ".signature.p7s",
  2149. "LICENSE.TXT",
  2150. "THIRD-PARTY-NOTICES.TXT",
  2151. "lib/MonoAndroid10/_._",
  2152. "lib/MonoTouch10/_._",
  2153. "lib/net45/_._",
  2154. "lib/netcore50/Microsoft.CSharp.dll",
  2155. "lib/netcoreapp2.0/_._",
  2156. "lib/netstandard1.3/Microsoft.CSharp.dll",
  2157. "lib/netstandard2.0/Microsoft.CSharp.dll",
  2158. "lib/netstandard2.0/Microsoft.CSharp.xml",
  2159. "lib/portable-net45+win8+wp8+wpa81/_._",
  2160. "lib/uap10.0.16299/_._",
  2161. "lib/win8/_._",
  2162. "lib/wp80/_._",
  2163. "lib/wpa81/_._",
  2164. "lib/xamarinios10/_._",
  2165. "lib/xamarinmac20/_._",
  2166. "lib/xamarintvos10/_._",
  2167. "lib/xamarinwatchos10/_._",
  2168. "microsoft.csharp.4.7.0.nupkg.sha512",
  2169. "microsoft.csharp.nuspec",
  2170. "ref/MonoAndroid10/_._",
  2171. "ref/MonoTouch10/_._",
  2172. "ref/net45/_._",
  2173. "ref/netcore50/Microsoft.CSharp.dll",
  2174. "ref/netcore50/Microsoft.CSharp.xml",
  2175. "ref/netcore50/de/Microsoft.CSharp.xml",
  2176. "ref/netcore50/es/Microsoft.CSharp.xml",
  2177. "ref/netcore50/fr/Microsoft.CSharp.xml",
  2178. "ref/netcore50/it/Microsoft.CSharp.xml",
  2179. "ref/netcore50/ja/Microsoft.CSharp.xml",
  2180. "ref/netcore50/ko/Microsoft.CSharp.xml",
  2181. "ref/netcore50/ru/Microsoft.CSharp.xml",
  2182. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  2183. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  2184. "ref/netcoreapp2.0/_._",
  2185. "ref/netstandard1.0/Microsoft.CSharp.dll",
  2186. "ref/netstandard1.0/Microsoft.CSharp.xml",
  2187. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  2188. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  2189. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  2190. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  2191. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  2192. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  2193. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  2194. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  2195. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  2196. "ref/netstandard2.0/Microsoft.CSharp.dll",
  2197. "ref/netstandard2.0/Microsoft.CSharp.xml",
  2198. "ref/portable-net45+win8+wp8+wpa81/_._",
  2199. "ref/uap10.0.16299/_._",
  2200. "ref/win8/_._",
  2201. "ref/wp80/_._",
  2202. "ref/wpa81/_._",
  2203. "ref/xamarinios10/_._",
  2204. "ref/xamarinmac20/_._",
  2205. "ref/xamarintvos10/_._",
  2206. "ref/xamarinwatchos10/_._",
  2207. "useSharedDesignerContext.txt",
  2208. "version.txt"
  2209. ]
  2210. },
  2211. "Microsoft.Data.SqlClient/5.1.5": {
  2212. "sha512": "6kvhQjY5uBCdBccezFD2smfnpQjQ33cZtUZVrNvxlwoBu6uopM5INH6uSgLI7JRLtlQ3bMPwnhMq4kchsXeZ5w==",
  2213. "type": "package",
  2214. "path": "microsoft.data.sqlclient/5.1.5",
  2215. "files": [
  2216. ".nupkg.metadata",
  2217. ".signature.p7s",
  2218. "dotnet.png",
  2219. "lib/net462/Microsoft.Data.SqlClient.dll",
  2220. "lib/net462/Microsoft.Data.SqlClient.pdb",
  2221. "lib/net462/Microsoft.Data.SqlClient.xml",
  2222. "lib/net462/de/Microsoft.Data.SqlClient.resources.dll",
  2223. "lib/net462/es/Microsoft.Data.SqlClient.resources.dll",
  2224. "lib/net462/fr/Microsoft.Data.SqlClient.resources.dll",
  2225. "lib/net462/it/Microsoft.Data.SqlClient.resources.dll",
  2226. "lib/net462/ja/Microsoft.Data.SqlClient.resources.dll",
  2227. "lib/net462/ko/Microsoft.Data.SqlClient.resources.dll",
  2228. "lib/net462/pt-BR/Microsoft.Data.SqlClient.resources.dll",
  2229. "lib/net462/ru/Microsoft.Data.SqlClient.resources.dll",
  2230. "lib/net462/zh-Hans/Microsoft.Data.SqlClient.resources.dll",
  2231. "lib/net462/zh-Hant/Microsoft.Data.SqlClient.resources.dll",
  2232. "lib/net6.0/Microsoft.Data.SqlClient.dll",
  2233. "lib/net6.0/Microsoft.Data.SqlClient.pdb",
  2234. "lib/net6.0/Microsoft.Data.SqlClient.xml",
  2235. "lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  2236. "lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  2237. "lib/netstandard2.0/Microsoft.Data.SqlClient.xml",
  2238. "lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  2239. "lib/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  2240. "lib/netstandard2.1/Microsoft.Data.SqlClient.xml",
  2241. "microsoft.data.sqlclient.5.1.5.nupkg.sha512",
  2242. "microsoft.data.sqlclient.nuspec",
  2243. "ref/net462/Microsoft.Data.SqlClient.dll",
  2244. "ref/net462/Microsoft.Data.SqlClient.pdb",
  2245. "ref/net462/Microsoft.Data.SqlClient.xml",
  2246. "ref/net6.0/Microsoft.Data.SqlClient.dll",
  2247. "ref/net6.0/Microsoft.Data.SqlClient.pdb",
  2248. "ref/net6.0/Microsoft.Data.SqlClient.xml",
  2249. "ref/netstandard2.0/Microsoft.Data.SqlClient.dll",
  2250. "ref/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  2251. "ref/netstandard2.0/Microsoft.Data.SqlClient.xml",
  2252. "ref/netstandard2.1/Microsoft.Data.SqlClient.dll",
  2253. "ref/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  2254. "ref/netstandard2.1/Microsoft.Data.SqlClient.xml",
  2255. "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll",
  2256. "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.pdb",
  2257. "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  2258. "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  2259. "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  2260. "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  2261. "runtimes/win/lib/net462/Microsoft.Data.SqlClient.dll",
  2262. "runtimes/win/lib/net462/Microsoft.Data.SqlClient.pdb",
  2263. "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll",
  2264. "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.pdb",
  2265. "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  2266. "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  2267. "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  2268. "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb"
  2269. ]
  2270. },
  2271. "Microsoft.Data.SqlClient.SNI.runtime/5.1.1": {
  2272. "sha512": "wNGM5ZTQCa2blc9ikXQouybGiyMd6IHPVJvAlBEPtr6JepZEOYeDxGyprYvFVeOxlCXs7avridZQ0nYkHzQWCQ==",
  2273. "type": "package",
  2274. "path": "microsoft.data.sqlclient.sni.runtime/5.1.1",
  2275. "files": [
  2276. ".nupkg.metadata",
  2277. ".signature.p7s",
  2278. "LICENSE.txt",
  2279. "dotnet.png",
  2280. "microsoft.data.sqlclient.sni.runtime.5.1.1.nupkg.sha512",
  2281. "microsoft.data.sqlclient.sni.runtime.nuspec",
  2282. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll",
  2283. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll",
  2284. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll",
  2285. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll"
  2286. ]
  2287. },
  2288. "Microsoft.EntityFrameworkCore/8.0.4": {
  2289. "sha512": "/kyu9pXuxQvhg8RO/oN5Q5Og7cDIVvZtrt1z48rX7Yido+zEGkUkp3/Bjd9u45N2uuPPF8mn2pKDlAewCvv3/Q==",
  2290. "type": "package",
  2291. "path": "microsoft.entityframeworkcore/8.0.4",
  2292. "files": [
  2293. ".nupkg.metadata",
  2294. ".signature.p7s",
  2295. "Icon.png",
  2296. "PACKAGE.md",
  2297. "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props",
  2298. "lib/net8.0/Microsoft.EntityFrameworkCore.dll",
  2299. "lib/net8.0/Microsoft.EntityFrameworkCore.xml",
  2300. "microsoft.entityframeworkcore.8.0.4.nupkg.sha512",
  2301. "microsoft.entityframeworkcore.nuspec"
  2302. ]
  2303. },
  2304. "Microsoft.EntityFrameworkCore.Abstractions/8.0.4": {
  2305. "sha512": "S50pjtPNOvRktacaO6UAhvGCPMT56wxqEq8fQfcjaSUySPGba6mKWo6ackw6DdeAR1cA6U+U0uj27warA2KtJA==",
  2306. "type": "package",
  2307. "path": "microsoft.entityframeworkcore.abstractions/8.0.4",
  2308. "files": [
  2309. ".nupkg.metadata",
  2310. ".signature.p7s",
  2311. "Icon.png",
  2312. "PACKAGE.md",
  2313. "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
  2314. "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
  2315. "microsoft.entityframeworkcore.abstractions.8.0.4.nupkg.sha512",
  2316. "microsoft.entityframeworkcore.abstractions.nuspec"
  2317. ]
  2318. },
  2319. "Microsoft.EntityFrameworkCore.Analyzers/8.0.4": {
  2320. "sha512": "P8hfMZECdbgle4Us8HGRUKAjqVwgbtr5JqtCxqEoiVORrNQAmcpu3g1NKwTAoUsO9Z0QRgExtYoAmdggR/DkMQ==",
  2321. "type": "package",
  2322. "path": "microsoft.entityframeworkcore.analyzers/8.0.4",
  2323. "files": [
  2324. ".nupkg.metadata",
  2325. ".signature.p7s",
  2326. "Icon.png",
  2327. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  2328. "docs/PACKAGE.md",
  2329. "lib/netstandard2.0/_._",
  2330. "microsoft.entityframeworkcore.analyzers.8.0.4.nupkg.sha512",
  2331. "microsoft.entityframeworkcore.analyzers.nuspec"
  2332. ]
  2333. },
  2334. "Microsoft.EntityFrameworkCore.Relational/8.0.4": {
  2335. "sha512": "aWLT6e9a8oMzXgF0YQpYYa3mDeU+yb2UQSQ+RrIgyGgSpzPfSKgpA7v2kOVDuZr2AQ6NNAlWPaBG7wZuKQI96w==",
  2336. "type": "package",
  2337. "path": "microsoft.entityframeworkcore.relational/8.0.4",
  2338. "files": [
  2339. ".nupkg.metadata",
  2340. ".signature.p7s",
  2341. "Icon.png",
  2342. "PACKAGE.md",
  2343. "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll",
  2344. "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.xml",
  2345. "microsoft.entityframeworkcore.relational.8.0.4.nupkg.sha512",
  2346. "microsoft.entityframeworkcore.relational.nuspec"
  2347. ]
  2348. },
  2349. "Microsoft.EntityFrameworkCore.SqlServer/8.0.4": {
  2350. "sha512": "/IlHNxzZGqiuVi+FPtjFZgAOfY989fTPtxw8zhmlFwv5M2WJzBSMlAP4jNVQX/k7/qu+y1YvddPxg4O5QdeRXw==",
  2351. "type": "package",
  2352. "path": "microsoft.entityframeworkcore.sqlserver/8.0.4",
  2353. "files": [
  2354. ".nupkg.metadata",
  2355. ".signature.p7s",
  2356. "Icon.png",
  2357. "PACKAGE.md",
  2358. "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll",
  2359. "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.xml",
  2360. "microsoft.entityframeworkcore.sqlserver.8.0.4.nupkg.sha512",
  2361. "microsoft.entityframeworkcore.sqlserver.nuspec"
  2362. ]
  2363. },
  2364. "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
  2365. "sha512": "Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==",
  2366. "type": "package",
  2367. "path": "microsoft.extensions.apidescription.server/6.0.5",
  2368. "hasTools": true,
  2369. "files": [
  2370. ".nupkg.metadata",
  2371. ".signature.p7s",
  2372. "Icon.png",
  2373. "build/Microsoft.Extensions.ApiDescription.Server.props",
  2374. "build/Microsoft.Extensions.ApiDescription.Server.targets",
  2375. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props",
  2376. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets",
  2377. "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512",
  2378. "microsoft.extensions.apidescription.server.nuspec",
  2379. "tools/Newtonsoft.Json.dll",
  2380. "tools/dotnet-getdocument.deps.json",
  2381. "tools/dotnet-getdocument.dll",
  2382. "tools/dotnet-getdocument.runtimeconfig.json",
  2383. "tools/net461-x86/GetDocument.Insider.exe",
  2384. "tools/net461-x86/GetDocument.Insider.exe.config",
  2385. "tools/net461-x86/Microsoft.Win32.Primitives.dll",
  2386. "tools/net461-x86/System.AppContext.dll",
  2387. "tools/net461-x86/System.Buffers.dll",
  2388. "tools/net461-x86/System.Collections.Concurrent.dll",
  2389. "tools/net461-x86/System.Collections.NonGeneric.dll",
  2390. "tools/net461-x86/System.Collections.Specialized.dll",
  2391. "tools/net461-x86/System.Collections.dll",
  2392. "tools/net461-x86/System.ComponentModel.EventBasedAsync.dll",
  2393. "tools/net461-x86/System.ComponentModel.Primitives.dll",
  2394. "tools/net461-x86/System.ComponentModel.TypeConverter.dll",
  2395. "tools/net461-x86/System.ComponentModel.dll",
  2396. "tools/net461-x86/System.Console.dll",
  2397. "tools/net461-x86/System.Data.Common.dll",
  2398. "tools/net461-x86/System.Diagnostics.Contracts.dll",
  2399. "tools/net461-x86/System.Diagnostics.Debug.dll",
  2400. "tools/net461-x86/System.Diagnostics.DiagnosticSource.dll",
  2401. "tools/net461-x86/System.Diagnostics.FileVersionInfo.dll",
  2402. "tools/net461-x86/System.Diagnostics.Process.dll",
  2403. "tools/net461-x86/System.Diagnostics.StackTrace.dll",
  2404. "tools/net461-x86/System.Diagnostics.TextWriterTraceListener.dll",
  2405. "tools/net461-x86/System.Diagnostics.Tools.dll",
  2406. "tools/net461-x86/System.Diagnostics.TraceSource.dll",
  2407. "tools/net461-x86/System.Diagnostics.Tracing.dll",
  2408. "tools/net461-x86/System.Drawing.Primitives.dll",
  2409. "tools/net461-x86/System.Dynamic.Runtime.dll",
  2410. "tools/net461-x86/System.Globalization.Calendars.dll",
  2411. "tools/net461-x86/System.Globalization.Extensions.dll",
  2412. "tools/net461-x86/System.Globalization.dll",
  2413. "tools/net461-x86/System.IO.Compression.ZipFile.dll",
  2414. "tools/net461-x86/System.IO.Compression.dll",
  2415. "tools/net461-x86/System.IO.FileSystem.DriveInfo.dll",
  2416. "tools/net461-x86/System.IO.FileSystem.Primitives.dll",
  2417. "tools/net461-x86/System.IO.FileSystem.Watcher.dll",
  2418. "tools/net461-x86/System.IO.FileSystem.dll",
  2419. "tools/net461-x86/System.IO.IsolatedStorage.dll",
  2420. "tools/net461-x86/System.IO.MemoryMappedFiles.dll",
  2421. "tools/net461-x86/System.IO.Pipes.dll",
  2422. "tools/net461-x86/System.IO.UnmanagedMemoryStream.dll",
  2423. "tools/net461-x86/System.IO.dll",
  2424. "tools/net461-x86/System.Linq.Expressions.dll",
  2425. "tools/net461-x86/System.Linq.Parallel.dll",
  2426. "tools/net461-x86/System.Linq.Queryable.dll",
  2427. "tools/net461-x86/System.Linq.dll",
  2428. "tools/net461-x86/System.Memory.dll",
  2429. "tools/net461-x86/System.Net.Http.dll",
  2430. "tools/net461-x86/System.Net.NameResolution.dll",
  2431. "tools/net461-x86/System.Net.NetworkInformation.dll",
  2432. "tools/net461-x86/System.Net.Ping.dll",
  2433. "tools/net461-x86/System.Net.Primitives.dll",
  2434. "tools/net461-x86/System.Net.Requests.dll",
  2435. "tools/net461-x86/System.Net.Security.dll",
  2436. "tools/net461-x86/System.Net.Sockets.dll",
  2437. "tools/net461-x86/System.Net.WebHeaderCollection.dll",
  2438. "tools/net461-x86/System.Net.WebSockets.Client.dll",
  2439. "tools/net461-x86/System.Net.WebSockets.dll",
  2440. "tools/net461-x86/System.Numerics.Vectors.dll",
  2441. "tools/net461-x86/System.ObjectModel.dll",
  2442. "tools/net461-x86/System.Reflection.Extensions.dll",
  2443. "tools/net461-x86/System.Reflection.Primitives.dll",
  2444. "tools/net461-x86/System.Reflection.dll",
  2445. "tools/net461-x86/System.Resources.Reader.dll",
  2446. "tools/net461-x86/System.Resources.ResourceManager.dll",
  2447. "tools/net461-x86/System.Resources.Writer.dll",
  2448. "tools/net461-x86/System.Runtime.CompilerServices.Unsafe.dll",
  2449. "tools/net461-x86/System.Runtime.CompilerServices.VisualC.dll",
  2450. "tools/net461-x86/System.Runtime.Extensions.dll",
  2451. "tools/net461-x86/System.Runtime.Handles.dll",
  2452. "tools/net461-x86/System.Runtime.InteropServices.RuntimeInformation.dll",
  2453. "tools/net461-x86/System.Runtime.InteropServices.dll",
  2454. "tools/net461-x86/System.Runtime.Numerics.dll",
  2455. "tools/net461-x86/System.Runtime.Serialization.Formatters.dll",
  2456. "tools/net461-x86/System.Runtime.Serialization.Json.dll",
  2457. "tools/net461-x86/System.Runtime.Serialization.Primitives.dll",
  2458. "tools/net461-x86/System.Runtime.Serialization.Xml.dll",
  2459. "tools/net461-x86/System.Runtime.dll",
  2460. "tools/net461-x86/System.Security.Claims.dll",
  2461. "tools/net461-x86/System.Security.Cryptography.Algorithms.dll",
  2462. "tools/net461-x86/System.Security.Cryptography.Csp.dll",
  2463. "tools/net461-x86/System.Security.Cryptography.Encoding.dll",
  2464. "tools/net461-x86/System.Security.Cryptography.Primitives.dll",
  2465. "tools/net461-x86/System.Security.Cryptography.X509Certificates.dll",
  2466. "tools/net461-x86/System.Security.Principal.dll",
  2467. "tools/net461-x86/System.Security.SecureString.dll",
  2468. "tools/net461-x86/System.Text.Encoding.Extensions.dll",
  2469. "tools/net461-x86/System.Text.Encoding.dll",
  2470. "tools/net461-x86/System.Text.RegularExpressions.dll",
  2471. "tools/net461-x86/System.Threading.Overlapped.dll",
  2472. "tools/net461-x86/System.Threading.Tasks.Parallel.dll",
  2473. "tools/net461-x86/System.Threading.Tasks.dll",
  2474. "tools/net461-x86/System.Threading.Thread.dll",
  2475. "tools/net461-x86/System.Threading.ThreadPool.dll",
  2476. "tools/net461-x86/System.Threading.Timer.dll",
  2477. "tools/net461-x86/System.Threading.dll",
  2478. "tools/net461-x86/System.ValueTuple.dll",
  2479. "tools/net461-x86/System.Xml.ReaderWriter.dll",
  2480. "tools/net461-x86/System.Xml.XDocument.dll",
  2481. "tools/net461-x86/System.Xml.XPath.XDocument.dll",
  2482. "tools/net461-x86/System.Xml.XPath.dll",
  2483. "tools/net461-x86/System.Xml.XmlDocument.dll",
  2484. "tools/net461-x86/System.Xml.XmlSerializer.dll",
  2485. "tools/net461-x86/netstandard.dll",
  2486. "tools/net461/GetDocument.Insider.exe",
  2487. "tools/net461/GetDocument.Insider.exe.config",
  2488. "tools/net461/Microsoft.Win32.Primitives.dll",
  2489. "tools/net461/System.AppContext.dll",
  2490. "tools/net461/System.Buffers.dll",
  2491. "tools/net461/System.Collections.Concurrent.dll",
  2492. "tools/net461/System.Collections.NonGeneric.dll",
  2493. "tools/net461/System.Collections.Specialized.dll",
  2494. "tools/net461/System.Collections.dll",
  2495. "tools/net461/System.ComponentModel.EventBasedAsync.dll",
  2496. "tools/net461/System.ComponentModel.Primitives.dll",
  2497. "tools/net461/System.ComponentModel.TypeConverter.dll",
  2498. "tools/net461/System.ComponentModel.dll",
  2499. "tools/net461/System.Console.dll",
  2500. "tools/net461/System.Data.Common.dll",
  2501. "tools/net461/System.Diagnostics.Contracts.dll",
  2502. "tools/net461/System.Diagnostics.Debug.dll",
  2503. "tools/net461/System.Diagnostics.DiagnosticSource.dll",
  2504. "tools/net461/System.Diagnostics.FileVersionInfo.dll",
  2505. "tools/net461/System.Diagnostics.Process.dll",
  2506. "tools/net461/System.Diagnostics.StackTrace.dll",
  2507. "tools/net461/System.Diagnostics.TextWriterTraceListener.dll",
  2508. "tools/net461/System.Diagnostics.Tools.dll",
  2509. "tools/net461/System.Diagnostics.TraceSource.dll",
  2510. "tools/net461/System.Diagnostics.Tracing.dll",
  2511. "tools/net461/System.Drawing.Primitives.dll",
  2512. "tools/net461/System.Dynamic.Runtime.dll",
  2513. "tools/net461/System.Globalization.Calendars.dll",
  2514. "tools/net461/System.Globalization.Extensions.dll",
  2515. "tools/net461/System.Globalization.dll",
  2516. "tools/net461/System.IO.Compression.ZipFile.dll",
  2517. "tools/net461/System.IO.Compression.dll",
  2518. "tools/net461/System.IO.FileSystem.DriveInfo.dll",
  2519. "tools/net461/System.IO.FileSystem.Primitives.dll",
  2520. "tools/net461/System.IO.FileSystem.Watcher.dll",
  2521. "tools/net461/System.IO.FileSystem.dll",
  2522. "tools/net461/System.IO.IsolatedStorage.dll",
  2523. "tools/net461/System.IO.MemoryMappedFiles.dll",
  2524. "tools/net461/System.IO.Pipes.dll",
  2525. "tools/net461/System.IO.UnmanagedMemoryStream.dll",
  2526. "tools/net461/System.IO.dll",
  2527. "tools/net461/System.Linq.Expressions.dll",
  2528. "tools/net461/System.Linq.Parallel.dll",
  2529. "tools/net461/System.Linq.Queryable.dll",
  2530. "tools/net461/System.Linq.dll",
  2531. "tools/net461/System.Memory.dll",
  2532. "tools/net461/System.Net.Http.dll",
  2533. "tools/net461/System.Net.NameResolution.dll",
  2534. "tools/net461/System.Net.NetworkInformation.dll",
  2535. "tools/net461/System.Net.Ping.dll",
  2536. "tools/net461/System.Net.Primitives.dll",
  2537. "tools/net461/System.Net.Requests.dll",
  2538. "tools/net461/System.Net.Security.dll",
  2539. "tools/net461/System.Net.Sockets.dll",
  2540. "tools/net461/System.Net.WebHeaderCollection.dll",
  2541. "tools/net461/System.Net.WebSockets.Client.dll",
  2542. "tools/net461/System.Net.WebSockets.dll",
  2543. "tools/net461/System.Numerics.Vectors.dll",
  2544. "tools/net461/System.ObjectModel.dll",
  2545. "tools/net461/System.Reflection.Extensions.dll",
  2546. "tools/net461/System.Reflection.Primitives.dll",
  2547. "tools/net461/System.Reflection.dll",
  2548. "tools/net461/System.Resources.Reader.dll",
  2549. "tools/net461/System.Resources.ResourceManager.dll",
  2550. "tools/net461/System.Resources.Writer.dll",
  2551. "tools/net461/System.Runtime.CompilerServices.Unsafe.dll",
  2552. "tools/net461/System.Runtime.CompilerServices.VisualC.dll",
  2553. "tools/net461/System.Runtime.Extensions.dll",
  2554. "tools/net461/System.Runtime.Handles.dll",
  2555. "tools/net461/System.Runtime.InteropServices.RuntimeInformation.dll",
  2556. "tools/net461/System.Runtime.InteropServices.dll",
  2557. "tools/net461/System.Runtime.Numerics.dll",
  2558. "tools/net461/System.Runtime.Serialization.Formatters.dll",
  2559. "tools/net461/System.Runtime.Serialization.Json.dll",
  2560. "tools/net461/System.Runtime.Serialization.Primitives.dll",
  2561. "tools/net461/System.Runtime.Serialization.Xml.dll",
  2562. "tools/net461/System.Runtime.dll",
  2563. "tools/net461/System.Security.Claims.dll",
  2564. "tools/net461/System.Security.Cryptography.Algorithms.dll",
  2565. "tools/net461/System.Security.Cryptography.Csp.dll",
  2566. "tools/net461/System.Security.Cryptography.Encoding.dll",
  2567. "tools/net461/System.Security.Cryptography.Primitives.dll",
  2568. "tools/net461/System.Security.Cryptography.X509Certificates.dll",
  2569. "tools/net461/System.Security.Principal.dll",
  2570. "tools/net461/System.Security.SecureString.dll",
  2571. "tools/net461/System.Text.Encoding.Extensions.dll",
  2572. "tools/net461/System.Text.Encoding.dll",
  2573. "tools/net461/System.Text.RegularExpressions.dll",
  2574. "tools/net461/System.Threading.Overlapped.dll",
  2575. "tools/net461/System.Threading.Tasks.Parallel.dll",
  2576. "tools/net461/System.Threading.Tasks.dll",
  2577. "tools/net461/System.Threading.Thread.dll",
  2578. "tools/net461/System.Threading.ThreadPool.dll",
  2579. "tools/net461/System.Threading.Timer.dll",
  2580. "tools/net461/System.Threading.dll",
  2581. "tools/net461/System.ValueTuple.dll",
  2582. "tools/net461/System.Xml.ReaderWriter.dll",
  2583. "tools/net461/System.Xml.XDocument.dll",
  2584. "tools/net461/System.Xml.XPath.XDocument.dll",
  2585. "tools/net461/System.Xml.XPath.dll",
  2586. "tools/net461/System.Xml.XmlDocument.dll",
  2587. "tools/net461/System.Xml.XmlSerializer.dll",
  2588. "tools/net461/netstandard.dll",
  2589. "tools/netcoreapp2.1/GetDocument.Insider.deps.json",
  2590. "tools/netcoreapp2.1/GetDocument.Insider.dll",
  2591. "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json",
  2592. "tools/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll"
  2593. ]
  2594. },
  2595. "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
  2596. "sha512": "3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==",
  2597. "type": "package",
  2598. "path": "microsoft.extensions.caching.abstractions/8.0.0",
  2599. "files": [
  2600. ".nupkg.metadata",
  2601. ".signature.p7s",
  2602. "Icon.png",
  2603. "LICENSE.TXT",
  2604. "PACKAGE.md",
  2605. "THIRD-PARTY-NOTICES.TXT",
  2606. "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets",
  2607. "buildTransitive/net462/_._",
  2608. "buildTransitive/net6.0/_._",
  2609. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets",
  2610. "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll",
  2611. "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml",
  2612. "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.dll",
  2613. "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.xml",
  2614. "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll",
  2615. "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.xml",
  2616. "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll",
  2617. "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.xml",
  2618. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  2619. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  2620. "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512",
  2621. "microsoft.extensions.caching.abstractions.nuspec",
  2622. "useSharedDesignerContext.txt"
  2623. ]
  2624. },
  2625. "Microsoft.Extensions.Caching.Memory/8.0.0": {
  2626. "sha512": "7pqivmrZDzo1ADPkRwjy+8jtRKWRCPag9qPI+p7sgu7Q4QreWhcvbiWXsbhP+yY8XSiDvZpu2/LWdBv7PnmOpQ==",
  2627. "type": "package",
  2628. "path": "microsoft.extensions.caching.memory/8.0.0",
  2629. "files": [
  2630. ".nupkg.metadata",
  2631. ".signature.p7s",
  2632. "Icon.png",
  2633. "LICENSE.TXT",
  2634. "PACKAGE.md",
  2635. "THIRD-PARTY-NOTICES.TXT",
  2636. "buildTransitive/net461/Microsoft.Extensions.Caching.Memory.targets",
  2637. "buildTransitive/net462/_._",
  2638. "buildTransitive/net6.0/_._",
  2639. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets",
  2640. "lib/net462/Microsoft.Extensions.Caching.Memory.dll",
  2641. "lib/net462/Microsoft.Extensions.Caching.Memory.xml",
  2642. "lib/net6.0/Microsoft.Extensions.Caching.Memory.dll",
  2643. "lib/net6.0/Microsoft.Extensions.Caching.Memory.xml",
  2644. "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll",
  2645. "lib/net7.0/Microsoft.Extensions.Caching.Memory.xml",
  2646. "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll",
  2647. "lib/net8.0/Microsoft.Extensions.Caching.Memory.xml",
  2648. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  2649. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  2650. "microsoft.extensions.caching.memory.8.0.0.nupkg.sha512",
  2651. "microsoft.extensions.caching.memory.nuspec",
  2652. "useSharedDesignerContext.txt"
  2653. ]
  2654. },
  2655. "Microsoft.Extensions.Configuration/8.0.0": {
  2656. "sha512": "0J/9YNXTMWSZP2p2+nvl8p71zpSwokZXZuJW+VjdErkegAnFdO1XlqtA62SJtgVYHdKu3uPxJHcMR/r35HwFBA==",
  2657. "type": "package",
  2658. "path": "microsoft.extensions.configuration/8.0.0",
  2659. "files": [
  2660. ".nupkg.metadata",
  2661. ".signature.p7s",
  2662. "Icon.png",
  2663. "LICENSE.TXT",
  2664. "PACKAGE.md",
  2665. "THIRD-PARTY-NOTICES.TXT",
  2666. "buildTransitive/net461/Microsoft.Extensions.Configuration.targets",
  2667. "buildTransitive/net462/_._",
  2668. "buildTransitive/net6.0/_._",
  2669. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.targets",
  2670. "lib/net462/Microsoft.Extensions.Configuration.dll",
  2671. "lib/net462/Microsoft.Extensions.Configuration.xml",
  2672. "lib/net6.0/Microsoft.Extensions.Configuration.dll",
  2673. "lib/net6.0/Microsoft.Extensions.Configuration.xml",
  2674. "lib/net7.0/Microsoft.Extensions.Configuration.dll",
  2675. "lib/net7.0/Microsoft.Extensions.Configuration.xml",
  2676. "lib/net8.0/Microsoft.Extensions.Configuration.dll",
  2677. "lib/net8.0/Microsoft.Extensions.Configuration.xml",
  2678. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  2679. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  2680. "microsoft.extensions.configuration.8.0.0.nupkg.sha512",
  2681. "microsoft.extensions.configuration.nuspec",
  2682. "useSharedDesignerContext.txt"
  2683. ]
  2684. },
  2685. "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
  2686. "sha512": "3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==",
  2687. "type": "package",
  2688. "path": "microsoft.extensions.configuration.abstractions/8.0.0",
  2689. "files": [
  2690. ".nupkg.metadata",
  2691. ".signature.p7s",
  2692. "Icon.png",
  2693. "LICENSE.TXT",
  2694. "PACKAGE.md",
  2695. "THIRD-PARTY-NOTICES.TXT",
  2696. "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets",
  2697. "buildTransitive/net462/_._",
  2698. "buildTransitive/net6.0/_._",
  2699. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets",
  2700. "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll",
  2701. "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml",
  2702. "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  2703. "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  2704. "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  2705. "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  2706. "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  2707. "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  2708. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  2709. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  2710. "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512",
  2711. "microsoft.extensions.configuration.abstractions.nuspec",
  2712. "useSharedDesignerContext.txt"
  2713. ]
  2714. },
  2715. "Microsoft.Extensions.Configuration.Binder/8.0.0": {
  2716. "sha512": "mBMoXLsr5s1y2zOHWmKsE9veDcx8h1x/c3rz4baEdQKTeDcmQAPNbB54Pi/lhFO3K431eEq6PFbMgLaa6PHFfA==",
  2717. "type": "package",
  2718. "path": "microsoft.extensions.configuration.binder/8.0.0",
  2719. "files": [
  2720. ".nupkg.metadata",
  2721. ".signature.p7s",
  2722. "Icon.png",
  2723. "LICENSE.TXT",
  2724. "PACKAGE.md",
  2725. "THIRD-PARTY-NOTICES.TXT",
  2726. "analyzers/dotnet/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.dll",
  2727. "analyzers/dotnet/cs/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  2728. "analyzers/dotnet/cs/de/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  2729. "analyzers/dotnet/cs/es/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  2730. "analyzers/dotnet/cs/fr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  2731. "analyzers/dotnet/cs/it/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  2732. "analyzers/dotnet/cs/ja/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  2733. "analyzers/dotnet/cs/ko/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  2734. "analyzers/dotnet/cs/pl/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  2735. "analyzers/dotnet/cs/pt-BR/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  2736. "analyzers/dotnet/cs/ru/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  2737. "analyzers/dotnet/cs/tr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  2738. "analyzers/dotnet/cs/zh-Hans/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  2739. "analyzers/dotnet/cs/zh-Hant/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  2740. "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets",
  2741. "lib/net462/Microsoft.Extensions.Configuration.Binder.dll",
  2742. "lib/net462/Microsoft.Extensions.Configuration.Binder.xml",
  2743. "lib/net6.0/Microsoft.Extensions.Configuration.Binder.dll",
  2744. "lib/net6.0/Microsoft.Extensions.Configuration.Binder.xml",
  2745. "lib/net7.0/Microsoft.Extensions.Configuration.Binder.dll",
  2746. "lib/net7.0/Microsoft.Extensions.Configuration.Binder.xml",
  2747. "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll",
  2748. "lib/net8.0/Microsoft.Extensions.Configuration.Binder.xml",
  2749. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  2750. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  2751. "microsoft.extensions.configuration.binder.8.0.0.nupkg.sha512",
  2752. "microsoft.extensions.configuration.binder.nuspec",
  2753. "useSharedDesignerContext.txt"
  2754. ]
  2755. },
  2756. "Microsoft.Extensions.DependencyInjection/8.0.0": {
  2757. "sha512": "V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==",
  2758. "type": "package",
  2759. "path": "microsoft.extensions.dependencyinjection/8.0.0",
  2760. "files": [
  2761. ".nupkg.metadata",
  2762. ".signature.p7s",
  2763. "Icon.png",
  2764. "LICENSE.TXT",
  2765. "PACKAGE.md",
  2766. "THIRD-PARTY-NOTICES.TXT",
  2767. "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets",
  2768. "buildTransitive/net462/_._",
  2769. "buildTransitive/net6.0/_._",
  2770. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets",
  2771. "lib/net462/Microsoft.Extensions.DependencyInjection.dll",
  2772. "lib/net462/Microsoft.Extensions.DependencyInjection.xml",
  2773. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll",
  2774. "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml",
  2775. "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll",
  2776. "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml",
  2777. "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll",
  2778. "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml",
  2779. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  2780. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  2781. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  2782. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  2783. "microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512",
  2784. "microsoft.extensions.dependencyinjection.nuspec",
  2785. "useSharedDesignerContext.txt"
  2786. ]
  2787. },
  2788. "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.1": {
  2789. "sha512": "fGLiCRLMYd00JYpClraLjJTNKLmMJPnqxMaiRzEBIIvevlzxz33mXy39Lkd48hu1G+N21S7QpaO5ZzKsI6FRuA==",
  2790. "type": "package",
  2791. "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.1",
  2792. "files": [
  2793. ".nupkg.metadata",
  2794. ".signature.p7s",
  2795. "Icon.png",
  2796. "LICENSE.TXT",
  2797. "PACKAGE.md",
  2798. "THIRD-PARTY-NOTICES.TXT",
  2799. "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  2800. "buildTransitive/net462/_._",
  2801. "buildTransitive/net6.0/_._",
  2802. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  2803. "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2804. "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2805. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2806. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2807. "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2808. "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2809. "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2810. "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2811. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2812. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2813. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2814. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2815. "microsoft.extensions.dependencyinjection.abstractions.8.0.1.nupkg.sha512",
  2816. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  2817. "useSharedDesignerContext.txt"
  2818. ]
  2819. },
  2820. "Microsoft.Extensions.DependencyModel/8.0.0": {
  2821. "sha512": "NSmDw3K0ozNDgShSIpsZcbFIzBX4w28nDag+TfaQujkXGazBm+lid5onlWoCBy4VsLxqnnKjEBbGSJVWJMf43g==",
  2822. "type": "package",
  2823. "path": "microsoft.extensions.dependencymodel/8.0.0",
  2824. "files": [
  2825. ".nupkg.metadata",
  2826. ".signature.p7s",
  2827. "Icon.png",
  2828. "LICENSE.TXT",
  2829. "PACKAGE.md",
  2830. "THIRD-PARTY-NOTICES.TXT",
  2831. "buildTransitive/net461/Microsoft.Extensions.DependencyModel.targets",
  2832. "buildTransitive/net462/_._",
  2833. "buildTransitive/net6.0/_._",
  2834. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyModel.targets",
  2835. "lib/net462/Microsoft.Extensions.DependencyModel.dll",
  2836. "lib/net462/Microsoft.Extensions.DependencyModel.xml",
  2837. "lib/net6.0/Microsoft.Extensions.DependencyModel.dll",
  2838. "lib/net6.0/Microsoft.Extensions.DependencyModel.xml",
  2839. "lib/net7.0/Microsoft.Extensions.DependencyModel.dll",
  2840. "lib/net7.0/Microsoft.Extensions.DependencyModel.xml",
  2841. "lib/net8.0/Microsoft.Extensions.DependencyModel.dll",
  2842. "lib/net8.0/Microsoft.Extensions.DependencyModel.xml",
  2843. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll",
  2844. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml",
  2845. "microsoft.extensions.dependencymodel.8.0.0.nupkg.sha512",
  2846. "microsoft.extensions.dependencymodel.nuspec",
  2847. "useSharedDesignerContext.txt"
  2848. ]
  2849. },
  2850. "Microsoft.Extensions.Diagnostics.Abstractions/8.0.0": {
  2851. "sha512": "JHYCQG7HmugNYUhOl368g+NMxYE/N/AiclCYRNlgCY9eVyiBkOHMwK4x60RYMxv9EL3+rmj1mqHvdCiPpC+D4Q==",
  2852. "type": "package",
  2853. "path": "microsoft.extensions.diagnostics.abstractions/8.0.0",
  2854. "files": [
  2855. ".nupkg.metadata",
  2856. ".signature.p7s",
  2857. "Icon.png",
  2858. "LICENSE.TXT",
  2859. "THIRD-PARTY-NOTICES.TXT",
  2860. "buildTransitive/net461/Microsoft.Extensions.Diagnostics.Abstractions.targets",
  2861. "buildTransitive/net462/_._",
  2862. "buildTransitive/net6.0/_._",
  2863. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.Abstractions.targets",
  2864. "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.dll",
  2865. "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.xml",
  2866. "lib/net6.0/Microsoft.Extensions.Diagnostics.Abstractions.dll",
  2867. "lib/net6.0/Microsoft.Extensions.Diagnostics.Abstractions.xml",
  2868. "lib/net7.0/Microsoft.Extensions.Diagnostics.Abstractions.dll",
  2869. "lib/net7.0/Microsoft.Extensions.Diagnostics.Abstractions.xml",
  2870. "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll",
  2871. "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.xml",
  2872. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.dll",
  2873. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.xml",
  2874. "microsoft.extensions.diagnostics.abstractions.8.0.0.nupkg.sha512",
  2875. "microsoft.extensions.diagnostics.abstractions.nuspec",
  2876. "useSharedDesignerContext.txt"
  2877. ]
  2878. },
  2879. "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
  2880. "sha512": "ZbaMlhJlpisjuWbvXr4LdAst/1XxH3vZ6A0BsgTphZ2L4PGuxRLz7Jr/S7mkAAnOn78Vu0fKhEgNF5JO3zfjqQ==",
  2881. "type": "package",
  2882. "path": "microsoft.extensions.fileproviders.abstractions/8.0.0",
  2883. "files": [
  2884. ".nupkg.metadata",
  2885. ".signature.p7s",
  2886. "Icon.png",
  2887. "LICENSE.TXT",
  2888. "PACKAGE.md",
  2889. "THIRD-PARTY-NOTICES.TXT",
  2890. "buildTransitive/net461/Microsoft.Extensions.FileProviders.Abstractions.targets",
  2891. "buildTransitive/net462/_._",
  2892. "buildTransitive/net6.0/_._",
  2893. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets",
  2894. "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.dll",
  2895. "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.xml",
  2896. "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  2897. "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  2898. "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  2899. "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  2900. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  2901. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  2902. "microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512",
  2903. "microsoft.extensions.fileproviders.abstractions.nuspec",
  2904. "useSharedDesignerContext.txt"
  2905. ]
  2906. },
  2907. "Microsoft.Extensions.Hosting.Abstractions/8.0.0": {
  2908. "sha512": "AG7HWwVRdCHlaA++1oKDxLsXIBxmDpMPb3VoyOoAghEWnkUvEAdYQUwnV4jJbAaa/nMYNiEh5ByoLauZBEiovg==",
  2909. "type": "package",
  2910. "path": "microsoft.extensions.hosting.abstractions/8.0.0",
  2911. "files": [
  2912. ".nupkg.metadata",
  2913. ".signature.p7s",
  2914. "Icon.png",
  2915. "LICENSE.TXT",
  2916. "PACKAGE.md",
  2917. "THIRD-PARTY-NOTICES.TXT",
  2918. "buildTransitive/net461/Microsoft.Extensions.Hosting.Abstractions.targets",
  2919. "buildTransitive/net462/_._",
  2920. "buildTransitive/net6.0/_._",
  2921. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.Abstractions.targets",
  2922. "lib/net462/Microsoft.Extensions.Hosting.Abstractions.dll",
  2923. "lib/net462/Microsoft.Extensions.Hosting.Abstractions.xml",
  2924. "lib/net6.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  2925. "lib/net6.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  2926. "lib/net7.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  2927. "lib/net7.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  2928. "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  2929. "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  2930. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  2931. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  2932. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll",
  2933. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml",
  2934. "microsoft.extensions.hosting.abstractions.8.0.0.nupkg.sha512",
  2935. "microsoft.extensions.hosting.abstractions.nuspec",
  2936. "useSharedDesignerContext.txt"
  2937. ]
  2938. },
  2939. "Microsoft.Extensions.Identity.Core/8.0.0": {
  2940. "sha512": "hnXHyIQc+uc2uNMcIbr43+oNBAPEhMpW6lE8ux3MOegRz50WBna4AItlZDY7Y+Id1LLBbf73osUqeTw7CQ371w==",
  2941. "type": "package",
  2942. "path": "microsoft.extensions.identity.core/8.0.0",
  2943. "files": [
  2944. ".nupkg.metadata",
  2945. ".signature.p7s",
  2946. "Icon.png",
  2947. "THIRD-PARTY-NOTICES.TXT",
  2948. "lib/net462/Microsoft.Extensions.Identity.Core.dll",
  2949. "lib/net462/Microsoft.Extensions.Identity.Core.xml",
  2950. "lib/net8.0/Microsoft.Extensions.Identity.Core.dll",
  2951. "lib/net8.0/Microsoft.Extensions.Identity.Core.xml",
  2952. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll",
  2953. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.xml",
  2954. "microsoft.extensions.identity.core.8.0.0.nupkg.sha512",
  2955. "microsoft.extensions.identity.core.nuspec"
  2956. ]
  2957. },
  2958. "Microsoft.Extensions.Identity.Stores/8.0.0": {
  2959. "sha512": "DmDCpSpngZDBm44wVmxCeYs4HGJr/m32jMItp6pfb7KKtqWYw2vybHRg880j18k/eSFyM4v9uONsnEPgDdi9lg==",
  2960. "type": "package",
  2961. "path": "microsoft.extensions.identity.stores/8.0.0",
  2962. "files": [
  2963. ".nupkg.metadata",
  2964. ".signature.p7s",
  2965. "Icon.png",
  2966. "THIRD-PARTY-NOTICES.TXT",
  2967. "lib/net462/Microsoft.Extensions.Identity.Stores.dll",
  2968. "lib/net462/Microsoft.Extensions.Identity.Stores.xml",
  2969. "lib/net8.0/Microsoft.Extensions.Identity.Stores.dll",
  2970. "lib/net8.0/Microsoft.Extensions.Identity.Stores.xml",
  2971. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll",
  2972. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.xml",
  2973. "microsoft.extensions.identity.stores.8.0.0.nupkg.sha512",
  2974. "microsoft.extensions.identity.stores.nuspec"
  2975. ]
  2976. },
  2977. "Microsoft.Extensions.Logging/8.0.0": {
  2978. "sha512": "tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==",
  2979. "type": "package",
  2980. "path": "microsoft.extensions.logging/8.0.0",
  2981. "files": [
  2982. ".nupkg.metadata",
  2983. ".signature.p7s",
  2984. "Icon.png",
  2985. "LICENSE.TXT",
  2986. "PACKAGE.md",
  2987. "THIRD-PARTY-NOTICES.TXT",
  2988. "buildTransitive/net461/Microsoft.Extensions.Logging.targets",
  2989. "buildTransitive/net462/_._",
  2990. "buildTransitive/net6.0/_._",
  2991. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets",
  2992. "lib/net462/Microsoft.Extensions.Logging.dll",
  2993. "lib/net462/Microsoft.Extensions.Logging.xml",
  2994. "lib/net6.0/Microsoft.Extensions.Logging.dll",
  2995. "lib/net6.0/Microsoft.Extensions.Logging.xml",
  2996. "lib/net7.0/Microsoft.Extensions.Logging.dll",
  2997. "lib/net7.0/Microsoft.Extensions.Logging.xml",
  2998. "lib/net8.0/Microsoft.Extensions.Logging.dll",
  2999. "lib/net8.0/Microsoft.Extensions.Logging.xml",
  3000. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  3001. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  3002. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  3003. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  3004. "microsoft.extensions.logging.8.0.0.nupkg.sha512",
  3005. "microsoft.extensions.logging.nuspec",
  3006. "useSharedDesignerContext.txt"
  3007. ]
  3008. },
  3009. "Microsoft.Extensions.Logging.Abstractions/8.0.0": {
  3010. "sha512": "arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==",
  3011. "type": "package",
  3012. "path": "microsoft.extensions.logging.abstractions/8.0.0",
  3013. "files": [
  3014. ".nupkg.metadata",
  3015. ".signature.p7s",
  3016. "Icon.png",
  3017. "LICENSE.TXT",
  3018. "PACKAGE.md",
  3019. "THIRD-PARTY-NOTICES.TXT",
  3020. "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll",
  3021. "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  3022. "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  3023. "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  3024. "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3025. "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  3026. "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  3027. "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  3028. "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  3029. "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  3030. "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  3031. "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3032. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  3033. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  3034. "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll",
  3035. "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  3036. "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  3037. "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  3038. "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3039. "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  3040. "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  3041. "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  3042. "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  3043. "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  3044. "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  3045. "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3046. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  3047. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  3048. "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll",
  3049. "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  3050. "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  3051. "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  3052. "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3053. "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  3054. "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  3055. "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  3056. "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  3057. "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  3058. "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  3059. "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3060. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  3061. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  3062. "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets",
  3063. "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets",
  3064. "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets",
  3065. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  3066. "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  3067. "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll",
  3068. "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml",
  3069. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll",
  3070. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml",
  3071. "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll",
  3072. "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml",
  3073. "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll",
  3074. "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml",
  3075. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  3076. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  3077. "microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512",
  3078. "microsoft.extensions.logging.abstractions.nuspec",
  3079. "useSharedDesignerContext.txt"
  3080. ]
  3081. },
  3082. "Microsoft.Extensions.Logging.Log4Net.AspNetCore/8.0.0": {
  3083. "sha512": "NShPLGSM/PBGJIOK/cmlh3a+QlrtCLcSpb+vfqwxRmZK38Cy4prsOjuODpAIvqWL93zt9PZOTcHOVqyaQRNuEg==",
  3084. "type": "package",
  3085. "path": "microsoft.extensions.logging.log4net.aspnetcore/8.0.0",
  3086. "files": [
  3087. ".nupkg.metadata",
  3088. ".signature.p7s",
  3089. "LICENSE",
  3090. "lib/net5.0/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll",
  3091. "lib/net6.0/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll",
  3092. "lib/net7.0/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll",
  3093. "lib/net8.0/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll",
  3094. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll",
  3095. "lib/netstandard2.0/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll",
  3096. "lib/netstandard2.1/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll",
  3097. "microsoft.extensions.logging.log4net.aspnetcore.8.0.0.nupkg.sha512",
  3098. "microsoft.extensions.logging.log4net.aspnetcore.nuspec"
  3099. ]
  3100. },
  3101. "Microsoft.Extensions.Options/8.0.0": {
  3102. "sha512": "JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==",
  3103. "type": "package",
  3104. "path": "microsoft.extensions.options/8.0.0",
  3105. "files": [
  3106. ".nupkg.metadata",
  3107. ".signature.p7s",
  3108. "Icon.png",
  3109. "LICENSE.TXT",
  3110. "PACKAGE.md",
  3111. "THIRD-PARTY-NOTICES.TXT",
  3112. "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll",
  3113. "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  3114. "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  3115. "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  3116. "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  3117. "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  3118. "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  3119. "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  3120. "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  3121. "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  3122. "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  3123. "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  3124. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  3125. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  3126. "buildTransitive/net461/Microsoft.Extensions.Options.targets",
  3127. "buildTransitive/net462/Microsoft.Extensions.Options.targets",
  3128. "buildTransitive/net6.0/Microsoft.Extensions.Options.targets",
  3129. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets",
  3130. "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets",
  3131. "lib/net462/Microsoft.Extensions.Options.dll",
  3132. "lib/net462/Microsoft.Extensions.Options.xml",
  3133. "lib/net6.0/Microsoft.Extensions.Options.dll",
  3134. "lib/net6.0/Microsoft.Extensions.Options.xml",
  3135. "lib/net7.0/Microsoft.Extensions.Options.dll",
  3136. "lib/net7.0/Microsoft.Extensions.Options.xml",
  3137. "lib/net8.0/Microsoft.Extensions.Options.dll",
  3138. "lib/net8.0/Microsoft.Extensions.Options.xml",
  3139. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  3140. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  3141. "lib/netstandard2.1/Microsoft.Extensions.Options.dll",
  3142. "lib/netstandard2.1/Microsoft.Extensions.Options.xml",
  3143. "microsoft.extensions.options.8.0.0.nupkg.sha512",
  3144. "microsoft.extensions.options.nuspec",
  3145. "useSharedDesignerContext.txt"
  3146. ]
  3147. },
  3148. "Microsoft.Extensions.Primitives/8.0.0": {
  3149. "sha512": "bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==",
  3150. "type": "package",
  3151. "path": "microsoft.extensions.primitives/8.0.0",
  3152. "files": [
  3153. ".nupkg.metadata",
  3154. ".signature.p7s",
  3155. "Icon.png",
  3156. "LICENSE.TXT",
  3157. "PACKAGE.md",
  3158. "THIRD-PARTY-NOTICES.TXT",
  3159. "buildTransitive/net461/Microsoft.Extensions.Primitives.targets",
  3160. "buildTransitive/net462/_._",
  3161. "buildTransitive/net6.0/_._",
  3162. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
  3163. "lib/net462/Microsoft.Extensions.Primitives.dll",
  3164. "lib/net462/Microsoft.Extensions.Primitives.xml",
  3165. "lib/net6.0/Microsoft.Extensions.Primitives.dll",
  3166. "lib/net6.0/Microsoft.Extensions.Primitives.xml",
  3167. "lib/net7.0/Microsoft.Extensions.Primitives.dll",
  3168. "lib/net7.0/Microsoft.Extensions.Primitives.xml",
  3169. "lib/net8.0/Microsoft.Extensions.Primitives.dll",
  3170. "lib/net8.0/Microsoft.Extensions.Primitives.xml",
  3171. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  3172. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  3173. "microsoft.extensions.primitives.8.0.0.nupkg.sha512",
  3174. "microsoft.extensions.primitives.nuspec",
  3175. "useSharedDesignerContext.txt"
  3176. ]
  3177. },
  3178. "Microsoft.Identity.Client/4.61.3": {
  3179. "sha512": "naJo/Qm35Caaoxp5utcw+R8eU8ZtLz2ALh8S+gkekOYQ1oazfCQMWVT4NJ/FnHzdIJlm8dMz0oMpMGCabx5odA==",
  3180. "type": "package",
  3181. "path": "microsoft.identity.client/4.61.3",
  3182. "files": [
  3183. ".nupkg.metadata",
  3184. ".signature.p7s",
  3185. "README.md",
  3186. "lib/net462/Microsoft.Identity.Client.dll",
  3187. "lib/net462/Microsoft.Identity.Client.xml",
  3188. "lib/net6.0-android31.0/Microsoft.Identity.Client.dll",
  3189. "lib/net6.0-android31.0/Microsoft.Identity.Client.xml",
  3190. "lib/net6.0-ios15.4/Microsoft.Identity.Client.dll",
  3191. "lib/net6.0-ios15.4/Microsoft.Identity.Client.xml",
  3192. "lib/net6.0/Microsoft.Identity.Client.dll",
  3193. "lib/net6.0/Microsoft.Identity.Client.xml",
  3194. "lib/netstandard2.0/Microsoft.Identity.Client.dll",
  3195. "lib/netstandard2.0/Microsoft.Identity.Client.xml",
  3196. "microsoft.identity.client.4.61.3.nupkg.sha512",
  3197. "microsoft.identity.client.nuspec"
  3198. ]
  3199. },
  3200. "Microsoft.Identity.Client.Extensions.Msal/4.61.3": {
  3201. "sha512": "PWnJcznrSGr25MN8ajlc2XIDW4zCFu0U6FkpaNLEWLgd1NgFCp5uDY3mqLDgM8zCN8hqj8yo5wHYfLB2HjcdGw==",
  3202. "type": "package",
  3203. "path": "microsoft.identity.client.extensions.msal/4.61.3",
  3204. "files": [
  3205. ".nupkg.metadata",
  3206. ".signature.p7s",
  3207. "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll",
  3208. "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.xml",
  3209. "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll",
  3210. "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.xml",
  3211. "microsoft.identity.client.extensions.msal.4.61.3.nupkg.sha512",
  3212. "microsoft.identity.client.extensions.msal.nuspec"
  3213. ]
  3214. },
  3215. "Microsoft.IdentityModel.Abstractions/7.1.2": {
  3216. "sha512": "33eTIA2uO/L9utJjZWbKsMSVsQf7F8vtd6q5mQX7ZJzNvCpci5fleD6AeANGlbbb7WX7XKxq9+Dkb5e3GNDrmQ==",
  3217. "type": "package",
  3218. "path": "microsoft.identitymodel.abstractions/7.1.2",
  3219. "files": [
  3220. ".nupkg.metadata",
  3221. ".signature.p7s",
  3222. "lib/net461/Microsoft.IdentityModel.Abstractions.dll",
  3223. "lib/net461/Microsoft.IdentityModel.Abstractions.xml",
  3224. "lib/net462/Microsoft.IdentityModel.Abstractions.dll",
  3225. "lib/net462/Microsoft.IdentityModel.Abstractions.xml",
  3226. "lib/net472/Microsoft.IdentityModel.Abstractions.dll",
  3227. "lib/net472/Microsoft.IdentityModel.Abstractions.xml",
  3228. "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll",
  3229. "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml",
  3230. "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll",
  3231. "lib/net8.0/Microsoft.IdentityModel.Abstractions.xml",
  3232. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll",
  3233. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml",
  3234. "microsoft.identitymodel.abstractions.7.1.2.nupkg.sha512",
  3235. "microsoft.identitymodel.abstractions.nuspec"
  3236. ]
  3237. },
  3238. "Microsoft.IdentityModel.JsonWebTokens/7.1.2": {
  3239. "sha512": "cloLGeZolXbCJhJBc5OC05uhrdhdPL6MWHuVUnkkUvPDeK7HkwThBaLZ1XjBQVk9YhxXE2OvHXnKi0PLleXxDg==",
  3240. "type": "package",
  3241. "path": "microsoft.identitymodel.jsonwebtokens/7.1.2",
  3242. "files": [
  3243. ".nupkg.metadata",
  3244. ".signature.p7s",
  3245. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
  3246. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
  3247. "lib/net462/Microsoft.IdentityModel.JsonWebTokens.dll",
  3248. "lib/net462/Microsoft.IdentityModel.JsonWebTokens.xml",
  3249. "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll",
  3250. "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml",
  3251. "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  3252. "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  3253. "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  3254. "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  3255. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  3256. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  3257. "microsoft.identitymodel.jsonwebtokens.7.1.2.nupkg.sha512",
  3258. "microsoft.identitymodel.jsonwebtokens.nuspec"
  3259. ]
  3260. },
  3261. "Microsoft.IdentityModel.Logging/7.1.2": {
  3262. "sha512": "YCxBt2EeJP8fcXk9desChkWI+0vFqFLvBwrz5hBMsoh0KJE6BC66DnzkdzkJNqMltLromc52dkdT206jJ38cTw==",
  3263. "type": "package",
  3264. "path": "microsoft.identitymodel.logging/7.1.2",
  3265. "files": [
  3266. ".nupkg.metadata",
  3267. ".signature.p7s",
  3268. "lib/net461/Microsoft.IdentityModel.Logging.dll",
  3269. "lib/net461/Microsoft.IdentityModel.Logging.xml",
  3270. "lib/net462/Microsoft.IdentityModel.Logging.dll",
  3271. "lib/net462/Microsoft.IdentityModel.Logging.xml",
  3272. "lib/net472/Microsoft.IdentityModel.Logging.dll",
  3273. "lib/net472/Microsoft.IdentityModel.Logging.xml",
  3274. "lib/net6.0/Microsoft.IdentityModel.Logging.dll",
  3275. "lib/net6.0/Microsoft.IdentityModel.Logging.xml",
  3276. "lib/net8.0/Microsoft.IdentityModel.Logging.dll",
  3277. "lib/net8.0/Microsoft.IdentityModel.Logging.xml",
  3278. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  3279. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  3280. "microsoft.identitymodel.logging.7.1.2.nupkg.sha512",
  3281. "microsoft.identitymodel.logging.nuspec"
  3282. ]
  3283. },
  3284. "Microsoft.IdentityModel.Protocols/7.1.2": {
  3285. "sha512": "SydLwMRFx6EHPWJ+N6+MVaoArN1Htt92b935O3RUWPY1yUF63zEjvd3lBu79eWdZUwedP8TN2I5V9T3nackvIQ==",
  3286. "type": "package",
  3287. "path": "microsoft.identitymodel.protocols/7.1.2",
  3288. "files": [
  3289. ".nupkg.metadata",
  3290. ".signature.p7s",
  3291. "lib/net461/Microsoft.IdentityModel.Protocols.dll",
  3292. "lib/net461/Microsoft.IdentityModel.Protocols.xml",
  3293. "lib/net462/Microsoft.IdentityModel.Protocols.dll",
  3294. "lib/net462/Microsoft.IdentityModel.Protocols.xml",
  3295. "lib/net472/Microsoft.IdentityModel.Protocols.dll",
  3296. "lib/net472/Microsoft.IdentityModel.Protocols.xml",
  3297. "lib/net6.0/Microsoft.IdentityModel.Protocols.dll",
  3298. "lib/net6.0/Microsoft.IdentityModel.Protocols.xml",
  3299. "lib/net8.0/Microsoft.IdentityModel.Protocols.dll",
  3300. "lib/net8.0/Microsoft.IdentityModel.Protocols.xml",
  3301. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll",
  3302. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml",
  3303. "microsoft.identitymodel.protocols.7.1.2.nupkg.sha512",
  3304. "microsoft.identitymodel.protocols.nuspec"
  3305. ]
  3306. },
  3307. "Microsoft.IdentityModel.Protocols.OpenIdConnect/7.1.2": {
  3308. "sha512": "6lHQoLXhnMQ42mGrfDkzbIOR3rzKM1W1tgTeMPLgLCqwwGw0d96xFi/UiX/fYsu7d6cD5MJiL3+4HuI8VU+sVQ==",
  3309. "type": "package",
  3310. "path": "microsoft.identitymodel.protocols.openidconnect/7.1.2",
  3311. "files": [
  3312. ".nupkg.metadata",
  3313. ".signature.p7s",
  3314. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3315. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3316. "lib/net462/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3317. "lib/net462/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3318. "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3319. "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3320. "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3321. "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3322. "lib/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3323. "lib/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3324. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3325. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3326. "microsoft.identitymodel.protocols.openidconnect.7.1.2.nupkg.sha512",
  3327. "microsoft.identitymodel.protocols.openidconnect.nuspec"
  3328. ]
  3329. },
  3330. "Microsoft.IdentityModel.Tokens/7.1.2": {
  3331. "sha512": "oICJMqr3aNEDZOwnH5SK49bR6Z4aX0zEAnOLuhloumOSuqnNq+GWBdQyrgILnlcT5xj09xKCP/7Y7gJYB+ls/g==",
  3332. "type": "package",
  3333. "path": "microsoft.identitymodel.tokens/7.1.2",
  3334. "files": [
  3335. ".nupkg.metadata",
  3336. ".signature.p7s",
  3337. "lib/net461/Microsoft.IdentityModel.Tokens.dll",
  3338. "lib/net461/Microsoft.IdentityModel.Tokens.xml",
  3339. "lib/net462/Microsoft.IdentityModel.Tokens.dll",
  3340. "lib/net462/Microsoft.IdentityModel.Tokens.xml",
  3341. "lib/net472/Microsoft.IdentityModel.Tokens.dll",
  3342. "lib/net472/Microsoft.IdentityModel.Tokens.xml",
  3343. "lib/net6.0/Microsoft.IdentityModel.Tokens.dll",
  3344. "lib/net6.0/Microsoft.IdentityModel.Tokens.xml",
  3345. "lib/net8.0/Microsoft.IdentityModel.Tokens.dll",
  3346. "lib/net8.0/Microsoft.IdentityModel.Tokens.xml",
  3347. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  3348. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  3349. "microsoft.identitymodel.tokens.7.1.2.nupkg.sha512",
  3350. "microsoft.identitymodel.tokens.nuspec"
  3351. ]
  3352. },
  3353. "Microsoft.InformationProtection.File/1.14.128": {
  3354. "sha512": "ZetXGuHtHUra2nOKILuZUTyvFzLmRbWSAfReZCp1ZC7OvkUcHeA8DX+tBlpQL1YZfWj3f5tRdo1xl4f05l6e0Q==",
  3355. "type": "package",
  3356. "path": "microsoft.informationprotection.file/1.14.128",
  3357. "files": [
  3358. ".nupkg.metadata",
  3359. ".signature.p7s",
  3360. "build/native/Microsoft.InformationProtection.File.targets",
  3361. "build/native/bins/debug/amd64/libbz2-1.dll",
  3362. "build/native/bins/debug/amd64/libffi-8.dll",
  3363. "build/native/bins/debug/amd64/libgio-2.0-0.dll",
  3364. "build/native/bins/debug/amd64/libglib-2.0-0.dll",
  3365. "build/native/bins/debug/amd64/libgmodule-2.0-0.dll",
  3366. "build/native/bins/debug/amd64/libgobject-2.0-0.dll",
  3367. "build/native/bins/debug/amd64/libgsf-1-114.dll",
  3368. "build/native/bins/debug/amd64/libiconv-2.dll",
  3369. "build/native/bins/debug/amd64/libintl-8.dll",
  3370. "build/native/bins/debug/amd64/liblzma-5.dll",
  3371. "build/native/bins/debug/amd64/libpcre2-8-0.dll",
  3372. "build/native/bins/debug/amd64/libwinpthread-1.dll",
  3373. "build/native/bins/debug/amd64/libxml2-2.dll",
  3374. "build/native/bins/debug/amd64/mip_ClientTelemetry.dll",
  3375. "build/native/bins/debug/amd64/mip_core.dll",
  3376. "build/native/bins/debug/amd64/mip_file_sdk.dll",
  3377. "build/native/bins/debug/amd64/mip_protection_sdk.dll",
  3378. "build/native/bins/debug/amd64/mip_upe_sdk.dll",
  3379. "build/native/bins/debug/amd64/zlib1.dll",
  3380. "build/native/bins/debug/x86/libbz2-1.dll",
  3381. "build/native/bins/debug/x86/libffi-8.dll",
  3382. "build/native/bins/debug/x86/libgcc_s_dw2-1.dll",
  3383. "build/native/bins/debug/x86/libgio-2.0-0.dll",
  3384. "build/native/bins/debug/x86/libglib-2.0-0.dll",
  3385. "build/native/bins/debug/x86/libgmodule-2.0-0.dll",
  3386. "build/native/bins/debug/x86/libgobject-2.0-0.dll",
  3387. "build/native/bins/debug/x86/libgsf-1-114.dll",
  3388. "build/native/bins/debug/x86/libiconv-2.dll",
  3389. "build/native/bins/debug/x86/libintl-8.dll",
  3390. "build/native/bins/debug/x86/liblzma-5.dll",
  3391. "build/native/bins/debug/x86/libpcre2-8-0.dll",
  3392. "build/native/bins/debug/x86/libwinpthread-1.dll",
  3393. "build/native/bins/debug/x86/libxml2-2.dll",
  3394. "build/native/bins/debug/x86/mip_ClientTelemetry.dll",
  3395. "build/native/bins/debug/x86/mip_core.dll",
  3396. "build/native/bins/debug/x86/mip_file_sdk.dll",
  3397. "build/native/bins/debug/x86/mip_protection_sdk.dll",
  3398. "build/native/bins/debug/x86/mip_upe_sdk.dll",
  3399. "build/native/bins/debug/x86/zlib1.dll",
  3400. "build/native/bins/release/amd64/libbz2-1.dll",
  3401. "build/native/bins/release/amd64/libffi-8.dll",
  3402. "build/native/bins/release/amd64/libgio-2.0-0.dll",
  3403. "build/native/bins/release/amd64/libglib-2.0-0.dll",
  3404. "build/native/bins/release/amd64/libgmodule-2.0-0.dll",
  3405. "build/native/bins/release/amd64/libgobject-2.0-0.dll",
  3406. "build/native/bins/release/amd64/libgsf-1-114.dll",
  3407. "build/native/bins/release/amd64/libiconv-2.dll",
  3408. "build/native/bins/release/amd64/libintl-8.dll",
  3409. "build/native/bins/release/amd64/liblzma-5.dll",
  3410. "build/native/bins/release/amd64/libpcre2-8-0.dll",
  3411. "build/native/bins/release/amd64/libwinpthread-1.dll",
  3412. "build/native/bins/release/amd64/libxml2-2.dll",
  3413. "build/native/bins/release/amd64/mip_ClientTelemetry.dll",
  3414. "build/native/bins/release/amd64/mip_core.dll",
  3415. "build/native/bins/release/amd64/mip_file_sdk.dll",
  3416. "build/native/bins/release/amd64/mip_protection_sdk.dll",
  3417. "build/native/bins/release/amd64/mip_upe_sdk.dll",
  3418. "build/native/bins/release/amd64/zlib1.dll",
  3419. "build/native/bins/release/x86/libbz2-1.dll",
  3420. "build/native/bins/release/x86/libffi-8.dll",
  3421. "build/native/bins/release/x86/libgcc_s_dw2-1.dll",
  3422. "build/native/bins/release/x86/libgio-2.0-0.dll",
  3423. "build/native/bins/release/x86/libglib-2.0-0.dll",
  3424. "build/native/bins/release/x86/libgmodule-2.0-0.dll",
  3425. "build/native/bins/release/x86/libgobject-2.0-0.dll",
  3426. "build/native/bins/release/x86/libgsf-1-114.dll",
  3427. "build/native/bins/release/x86/libiconv-2.dll",
  3428. "build/native/bins/release/x86/libintl-8.dll",
  3429. "build/native/bins/release/x86/liblzma-5.dll",
  3430. "build/native/bins/release/x86/libpcre2-8-0.dll",
  3431. "build/native/bins/release/x86/libwinpthread-1.dll",
  3432. "build/native/bins/release/x86/libxml2-2.dll",
  3433. "build/native/bins/release/x86/mip_ClientTelemetry.dll",
  3434. "build/native/bins/release/x86/mip_core.dll",
  3435. "build/native/bins/release/x86/mip_file_sdk.dll",
  3436. "build/native/bins/release/x86/mip_protection_sdk.dll",
  3437. "build/native/bins/release/x86/mip_upe_sdk.dll",
  3438. "build/native/bins/release/x86/zlib1.dll",
  3439. "build/native/include/mip/audit_delegate.h",
  3440. "build/native/include/mip/audit_event.h",
  3441. "build/native/include/mip/common_types.h",
  3442. "build/native/include/mip/delegate_response.h",
  3443. "build/native/include/mip/diagnostic_configuration.h",
  3444. "build/native/include/mip/diagnostic_delegate.h",
  3445. "build/native/include/mip/diagnostic_types.h",
  3446. "build/native/include/mip/dns_redirection.h",
  3447. "build/native/include/mip/error.h",
  3448. "build/native/include/mip/event.h",
  3449. "build/native/include/mip/event_context.h",
  3450. "build/native/include/mip/event_property.h",
  3451. "build/native/include/mip/file/file_engine.h",
  3452. "build/native/include/mip/file/file_error.h",
  3453. "build/native/include/mip/file/file_execution_state.h",
  3454. "build/native/include/mip/file/file_export.h",
  3455. "build/native/include/mip/file/file_handler.h",
  3456. "build/native/include/mip/file/file_inspector.h",
  3457. "build/native/include/mip/file/file_profile.h",
  3458. "build/native/include/mip/file/file_status.h",
  3459. "build/native/include/mip/file/labeling_options.h",
  3460. "build/native/include/mip/file/msg_inspector.h",
  3461. "build/native/include/mip/file/protection_settings.h",
  3462. "build/native/include/mip/flighting_feature.h",
  3463. "build/native/include/mip/http_delegate.h",
  3464. "build/native/include/mip/http_operation.h",
  3465. "build/native/include/mip/http_request.h",
  3466. "build/native/include/mip/http_response.h",
  3467. "build/native/include/mip/json_delegate.h",
  3468. "build/native/include/mip/json_document.h",
  3469. "build/native/include/mip/json_value.h",
  3470. "build/native/include/mip/log_message_data.h",
  3471. "build/native/include/mip/logger_delegate.h",
  3472. "build/native/include/mip/mip_configuration.h",
  3473. "build/native/include/mip/mip_context.h",
  3474. "build/native/include/mip/mip_export.h",
  3475. "build/native/include/mip/mip_namespace.h",
  3476. "build/native/include/mip/protection/delegation_license.h",
  3477. "build/native/include/mip/protection/delegation_license_settings.h",
  3478. "build/native/include/mip/protection/get_template_settings.h",
  3479. "build/native/include/mip/protection/license_application_data.h",
  3480. "build/native/include/mip/protection/license_connection_info.h",
  3481. "build/native/include/mip/protection/license_descriptor.h",
  3482. "build/native/include/mip/protection/license_rights_data.h",
  3483. "build/native/include/mip/protection/parsed_publishing_license.h",
  3484. "build/native/include/mip/protection/parsed_publishing_license_builder.h",
  3485. "build/native/include/mip/protection/protection_common_settings.h",
  3486. "build/native/include/mip/protection/protection_common_types.h",
  3487. "build/native/include/mip/protection/protection_descriptor_builder.h",
  3488. "build/native/include/mip/protection/protection_engine.h",
  3489. "build/native/include/mip/protection/protection_handler.h",
  3490. "build/native/include/mip/protection/protection_profile.h",
  3491. "build/native/include/mip/protection/publishing_use_license_request.h",
  3492. "build/native/include/mip/protection/rights.h",
  3493. "build/native/include/mip/protection/roles.h",
  3494. "build/native/include/mip/protection/template_descriptor.h",
  3495. "build/native/include/mip/protection/tenant_information.h",
  3496. "build/native/include/mip/protection_descriptor.h",
  3497. "build/native/include/mip/storage_delegate.h",
  3498. "build/native/include/mip/storage_table.h",
  3499. "build/native/include/mip/stream.h",
  3500. "build/native/include/mip/stream_utils.h",
  3501. "build/native/include/mip/task_dispatcher_delegate.h",
  3502. "build/native/include/mip/telemetry_delegate.h",
  3503. "build/native/include/mip/telemetry_event.h",
  3504. "build/native/include/mip/upe/action.h",
  3505. "build/native/include/mip/upe/add_content_footer_action.h",
  3506. "build/native/include/mip/upe/add_content_header_action.h",
  3507. "build/native/include/mip/upe/add_watermark_action.h",
  3508. "build/native/include/mip/upe/apply_label_action.h",
  3509. "build/native/include/mip/upe/classification_request.h",
  3510. "build/native/include/mip/upe/classification_result.h",
  3511. "build/native/include/mip/upe/content_label.h",
  3512. "build/native/include/mip/upe/custom_action.h",
  3513. "build/native/include/mip/upe/detailed_classification_result.h",
  3514. "build/native/include/mip/upe/execution_state.h",
  3515. "build/native/include/mip/upe/justify_action.h",
  3516. "build/native/include/mip/upe/label.h",
  3517. "build/native/include/mip/upe/metadata_action.h",
  3518. "build/native/include/mip/upe/metadata_entry.h",
  3519. "build/native/include/mip/upe/metadata_version.h",
  3520. "build/native/include/mip/upe/policy_engine.h",
  3521. "build/native/include/mip/upe/policy_handler.h",
  3522. "build/native/include/mip/upe/policy_profile.h",
  3523. "build/native/include/mip/upe/protect_adhoc_action.h",
  3524. "build/native/include/mip/upe/protect_adhoc_dk_action.h",
  3525. "build/native/include/mip/upe/protect_by_encrypt_only_action.h",
  3526. "build/native/include/mip/upe/protect_by_template_action.h",
  3527. "build/native/include/mip/upe/protect_do_not_forward_action.h",
  3528. "build/native/include/mip/upe/protect_do_not_forward_dk_action.h",
  3529. "build/native/include/mip/upe/recommend_label_action.h",
  3530. "build/native/include/mip/upe/remove_content_footer_action.h",
  3531. "build/native/include/mip/upe/remove_content_header_action.h",
  3532. "build/native/include/mip/upe/remove_protection_action.h",
  3533. "build/native/include/mip/upe/remove_watermark_action.h",
  3534. "build/native/include/mip/upe/sensitivity_types_rule_package.h",
  3535. "build/native/include/mip/user_rights.h",
  3536. "build/native/include/mip/user_roles.h",
  3537. "build/native/include/mip/version.h",
  3538. "build/native/include/mip/version.inc",
  3539. "build/native/include/mip/xml_delegate.h",
  3540. "build/native/include/mip/xml_document.h",
  3541. "build/native/include/mip/xml_node.h",
  3542. "build/native/include/mip/xml_reader.h",
  3543. "build/native/include/mip_cc/application_info_cc.h",
  3544. "build/native/include/mip_cc/auth_callback_cc.h",
  3545. "build/native/include/mip_cc/common_types_cc.h",
  3546. "build/native/include/mip_cc/consent_callback_cc.h",
  3547. "build/native/include/mip_cc/dictionary_cc.h",
  3548. "build/native/include/mip_cc/error_cc.h",
  3549. "build/native/include/mip_cc/flighting_feature_cc.h",
  3550. "build/native/include/mip_cc/http_delegate_cc.h",
  3551. "build/native/include/mip_cc/identity_cc.h",
  3552. "build/native/include/mip_cc/logger_delegate_cc.h",
  3553. "build/native/include/mip_cc/mip_context_cc.h",
  3554. "build/native/include/mip_cc/mip_macros_cc.h",
  3555. "build/native/include/mip_cc/protection/delegation_license_cc.h",
  3556. "build/native/include/mip_cc/protection/protection_crypto_types_cc.h",
  3557. "build/native/include/mip_cc/protection/protection_engine_cc.h",
  3558. "build/native/include/mip_cc/protection/protection_handler_cc.h",
  3559. "build/native/include/mip_cc/protection/protection_profile_cc.h",
  3560. "build/native/include/mip_cc/protection/template_descriptor_cc.h",
  3561. "build/native/include/mip_cc/protection_descriptor_cc.h",
  3562. "build/native/include/mip_cc/result_cc.h",
  3563. "build/native/include/mip_cc/stream_cc.h",
  3564. "build/native/include/mip_cc/string_list_cc.h",
  3565. "build/native/include/mip_cc/task_dispatcher_delegate_cc.h",
  3566. "build/native/include/mip_cc/telemetry_configuration_cc.h",
  3567. "build/native/include/mip_cc/upe/action_cc.h",
  3568. "build/native/include/mip_cc/upe/action_result_cc.h",
  3569. "build/native/include/mip_cc/upe/add_content_footer_action_cc.h",
  3570. "build/native/include/mip_cc/upe/add_content_header_action_cc.h",
  3571. "build/native/include/mip_cc/upe/add_watermark_action_cc.h",
  3572. "build/native/include/mip_cc/upe/application_action_state_cc.h",
  3573. "build/native/include/mip_cc/upe/content_label_cc.h",
  3574. "build/native/include/mip_cc/upe/custom_action_cc.h",
  3575. "build/native/include/mip_cc/upe/document_state_cc.h",
  3576. "build/native/include/mip_cc/upe/justify_action_cc.h",
  3577. "build/native/include/mip_cc/upe/label_cc.h",
  3578. "build/native/include/mip_cc/upe/metadata_action_cc.h",
  3579. "build/native/include/mip_cc/upe/metadata_dictionary_cc.h",
  3580. "build/native/include/mip_cc/upe/policy_engine_cc.h",
  3581. "build/native/include/mip_cc/upe/policy_handler_cc.h",
  3582. "build/native/include/mip_cc/upe/policy_profile_cc.h",
  3583. "build/native/include/mip_cc/upe/protect_adhoc_action_cc.h",
  3584. "build/native/include/mip_cc/upe/protect_adhoc_dk_action_cc.h",
  3585. "build/native/include/mip_cc/upe/protect_by_encrypt_only_action_cc.h",
  3586. "build/native/include/mip_cc/upe/protect_by_template_action_cc.h",
  3587. "build/native/include/mip_cc/upe/protect_do_not_forward_action_cc.h",
  3588. "build/native/include/mip_cc/upe/protect_do_not_forward_dk_action_cc.h",
  3589. "build/native/include/mip_cc/upe/remove_content_footer_action_cc.h",
  3590. "build/native/include/mip_cc/upe/remove_content_header_action_cc.h",
  3591. "build/native/include/mip_cc/upe/remove_protection_action_cc.h",
  3592. "build/native/include/mip_cc/upe/remove_watermark_action_cc.h",
  3593. "build/native/include/mip_cc/upe/sensitivity_type_cc.h",
  3594. "build/native/lib/debug/amd64/mip_file_sdk.lib",
  3595. "build/native/lib/debug/amd64/mip_protection_sdk.lib",
  3596. "build/native/lib/debug/amd64/mip_upe_sdk.lib",
  3597. "build/native/lib/debug/x86/mip_file_sdk.lib",
  3598. "build/native/lib/debug/x86/mip_protection_sdk.lib",
  3599. "build/native/lib/debug/x86/mip_upe_sdk.lib",
  3600. "build/native/lib/release/amd64/mip_file_sdk.lib",
  3601. "build/native/lib/release/amd64/mip_protection_sdk.lib",
  3602. "build/native/lib/release/amd64/mip_upe_sdk.lib",
  3603. "build/native/lib/release/x86/mip_file_sdk.lib",
  3604. "build/native/lib/release/x86/mip_protection_sdk.lib",
  3605. "build/native/lib/release/x86/mip_upe_sdk.lib",
  3606. "build/net40/Microsoft.InformationProtection.File.targets",
  3607. "build/netstandard2.0/Microsoft.InformationProtection.File.targets",
  3608. "dotnet/win7-x64/native/debug/mip_dotnet.dll",
  3609. "dotnet/win7-x64/native/release/mip_dotnet.dll",
  3610. "dotnet/win7-x86/native/debug/mip_dotnet.dll",
  3611. "dotnet/win7-x86/native/release/mip_dotnet.dll",
  3612. "icon.png",
  3613. "lib/LICENSE.txt",
  3614. "lib/LicenseTerms.rtf",
  3615. "lib/ThirdPartyDependencyVersions-x64.txt",
  3616. "lib/ThirdPartyDependencyVersions-x86.txt",
  3617. "lib/ThirdPartyNotice.txt",
  3618. "lib/net40/Microsoft.InformationProtection.dll",
  3619. "lib/net40/Microsoft.InformationProtection.xml",
  3620. "lib/netstandard2.0/Microsoft.InformationProtection.dll",
  3621. "lib/netstandard2.0/Microsoft.InformationProtection.xml",
  3622. "lib/readme.md",
  3623. "lib/redist.txt",
  3624. "lib/version.txt",
  3625. "microsoft.informationprotection.file.1.14.128.nupkg.sha512",
  3626. "microsoft.informationprotection.file.nuspec"
  3627. ]
  3628. },
  3629. "Microsoft.OpenApi/1.3.1": {
  3630. "sha512": "2X5CCFJCnx6v86fnpOg4TKlU1ba7MSf1yakeT7VI4846s7i6fOkERwStX94Rcq8wJsLyQYsUitd6vR38viePeA==",
  3631. "type": "package",
  3632. "path": "microsoft.openapi/1.3.1",
  3633. "files": [
  3634. ".nupkg.metadata",
  3635. ".signature.p7s",
  3636. "lib/netstandard2.0/Microsoft.OpenApi.dll",
  3637. "lib/netstandard2.0/Microsoft.OpenApi.pdb",
  3638. "lib/netstandard2.0/Microsoft.OpenApi.xml",
  3639. "microsoft.openapi.1.3.1.nupkg.sha512",
  3640. "microsoft.openapi.nuspec"
  3641. ]
  3642. },
  3643. "Microsoft.SqlServer.Server/1.0.0": {
  3644. "sha512": "N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==",
  3645. "type": "package",
  3646. "path": "microsoft.sqlserver.server/1.0.0",
  3647. "files": [
  3648. ".nupkg.metadata",
  3649. ".signature.p7s",
  3650. "dotnet.png",
  3651. "lib/net46/Microsoft.SqlServer.Server.dll",
  3652. "lib/net46/Microsoft.SqlServer.Server.pdb",
  3653. "lib/net46/Microsoft.SqlServer.Server.xml",
  3654. "lib/netstandard2.0/Microsoft.SqlServer.Server.dll",
  3655. "lib/netstandard2.0/Microsoft.SqlServer.Server.pdb",
  3656. "lib/netstandard2.0/Microsoft.SqlServer.Server.xml",
  3657. "microsoft.sqlserver.server.1.0.0.nupkg.sha512",
  3658. "microsoft.sqlserver.server.nuspec"
  3659. ]
  3660. },
  3661. "Microsoft.Win32.SystemEvents/6.0.0": {
  3662. "sha512": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==",
  3663. "type": "package",
  3664. "path": "microsoft.win32.systemevents/6.0.0",
  3665. "files": [
  3666. ".nupkg.metadata",
  3667. ".signature.p7s",
  3668. "Icon.png",
  3669. "LICENSE.TXT",
  3670. "THIRD-PARTY-NOTICES.TXT",
  3671. "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets",
  3672. "buildTransitive/netcoreapp3.1/_._",
  3673. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  3674. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  3675. "lib/net6.0/Microsoft.Win32.SystemEvents.dll",
  3676. "lib/net6.0/Microsoft.Win32.SystemEvents.xml",
  3677. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll",
  3678. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml",
  3679. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  3680. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  3681. "microsoft.win32.systemevents.6.0.0.nupkg.sha512",
  3682. "microsoft.win32.systemevents.nuspec",
  3683. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll",
  3684. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml",
  3685. "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll",
  3686. "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml",
  3687. "useSharedDesignerContext.txt"
  3688. ]
  3689. },
  3690. "Newtonsoft.Json/13.0.3": {
  3691. "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
  3692. "type": "package",
  3693. "path": "newtonsoft.json/13.0.3",
  3694. "files": [
  3695. ".nupkg.metadata",
  3696. ".signature.p7s",
  3697. "LICENSE.md",
  3698. "README.md",
  3699. "lib/net20/Newtonsoft.Json.dll",
  3700. "lib/net20/Newtonsoft.Json.xml",
  3701. "lib/net35/Newtonsoft.Json.dll",
  3702. "lib/net35/Newtonsoft.Json.xml",
  3703. "lib/net40/Newtonsoft.Json.dll",
  3704. "lib/net40/Newtonsoft.Json.xml",
  3705. "lib/net45/Newtonsoft.Json.dll",
  3706. "lib/net45/Newtonsoft.Json.xml",
  3707. "lib/net6.0/Newtonsoft.Json.dll",
  3708. "lib/net6.0/Newtonsoft.Json.xml",
  3709. "lib/netstandard1.0/Newtonsoft.Json.dll",
  3710. "lib/netstandard1.0/Newtonsoft.Json.xml",
  3711. "lib/netstandard1.3/Newtonsoft.Json.dll",
  3712. "lib/netstandard1.3/Newtonsoft.Json.xml",
  3713. "lib/netstandard2.0/Newtonsoft.Json.dll",
  3714. "lib/netstandard2.0/Newtonsoft.Json.xml",
  3715. "newtonsoft.json.13.0.3.nupkg.sha512",
  3716. "newtonsoft.json.nuspec",
  3717. "packageIcon.png"
  3718. ]
  3719. },
  3720. "Newtonsoft.Json.Bson/1.0.2": {
  3721. "sha512": "QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==",
  3722. "type": "package",
  3723. "path": "newtonsoft.json.bson/1.0.2",
  3724. "files": [
  3725. ".nupkg.metadata",
  3726. ".signature.p7s",
  3727. "LICENSE.md",
  3728. "lib/net45/Newtonsoft.Json.Bson.dll",
  3729. "lib/net45/Newtonsoft.Json.Bson.pdb",
  3730. "lib/net45/Newtonsoft.Json.Bson.xml",
  3731. "lib/netstandard1.3/Newtonsoft.Json.Bson.dll",
  3732. "lib/netstandard1.3/Newtonsoft.Json.Bson.pdb",
  3733. "lib/netstandard1.3/Newtonsoft.Json.Bson.xml",
  3734. "lib/netstandard2.0/Newtonsoft.Json.Bson.dll",
  3735. "lib/netstandard2.0/Newtonsoft.Json.Bson.pdb",
  3736. "lib/netstandard2.0/Newtonsoft.Json.Bson.xml",
  3737. "newtonsoft.json.bson.1.0.2.nupkg.sha512",
  3738. "newtonsoft.json.bson.nuspec"
  3739. ]
  3740. },
  3741. "NReco.PdfGenerator/1.2.1": {
  3742. "sha512": "YONMIaSBJO/0FKcXMyO1KZWc83IqfrbBKw5fcRxrwgxzv5r89rh/Z6r7ukuJmx+ra3m6jz6gmaEYXFWV3dKTmg==",
  3743. "type": "package",
  3744. "path": "nreco.pdfgenerator/1.2.1",
  3745. "files": [
  3746. ".nupkg.metadata",
  3747. ".signature.p7s",
  3748. "lib/net45/NReco.PdfGenerator.dll",
  3749. "lib/net45/NReco.PdfGenerator.xml",
  3750. "lib/netstandard2.0/NReco.PdfGenerator.dll",
  3751. "lib/netstandard2.0/NReco.PdfGenerator.xml",
  3752. "nreco.pdfgenerator.1.2.1.nupkg.sha512",
  3753. "nreco.pdfgenerator.nuspec"
  3754. ]
  3755. },
  3756. "Scrutor/3.3.0": {
  3757. "sha512": "BwqCnFzp2/Z+pq17iztxlIkR/ZANyPRR4PdE57WL1w/JW4AM/2imoxBWTL3+G+YXA46ce4s9OUgwWqTXYrtI8A==",
  3758. "type": "package",
  3759. "path": "scrutor/3.3.0",
  3760. "files": [
  3761. ".nupkg.metadata",
  3762. ".signature.p7s",
  3763. "lib/net461/Scrutor.dll",
  3764. "lib/net461/Scrutor.pdb",
  3765. "lib/net461/Scrutor.xml",
  3766. "lib/netcoreapp3.1/Scrutor.dll",
  3767. "lib/netcoreapp3.1/Scrutor.pdb",
  3768. "lib/netcoreapp3.1/Scrutor.xml",
  3769. "lib/netstandard2.0/Scrutor.dll",
  3770. "lib/netstandard2.0/Scrutor.pdb",
  3771. "lib/netstandard2.0/Scrutor.xml",
  3772. "scrutor.3.3.0.nupkg.sha512",
  3773. "scrutor.nuspec"
  3774. ]
  3775. },
  3776. "Serilog/4.0.0": {
  3777. "sha512": "2jDkUrSh5EofOp7Lx5Zgy0EB+7hXjjxE2ktTb1WVQmU00lDACR2TdROGKU0K1pDTBSJBN1PqgYpgOZF8mL7NJw==",
  3778. "type": "package",
  3779. "path": "serilog/4.0.0",
  3780. "files": [
  3781. ".nupkg.metadata",
  3782. ".signature.p7s",
  3783. "README.md",
  3784. "icon.png",
  3785. "lib/net462/Serilog.dll",
  3786. "lib/net462/Serilog.xml",
  3787. "lib/net471/Serilog.dll",
  3788. "lib/net471/Serilog.xml",
  3789. "lib/net6.0/Serilog.dll",
  3790. "lib/net6.0/Serilog.xml",
  3791. "lib/net8.0/Serilog.dll",
  3792. "lib/net8.0/Serilog.xml",
  3793. "lib/netstandard2.0/Serilog.dll",
  3794. "lib/netstandard2.0/Serilog.xml",
  3795. "serilog.4.0.0.nupkg.sha512",
  3796. "serilog.nuspec"
  3797. ]
  3798. },
  3799. "Serilog.AspNetCore/8.0.1": {
  3800. "sha512": "B/X+wAfS7yWLVOTD83B+Ip9yl4MkhioaXj90JSoWi1Ayi8XHepEnsBdrkojg08eodCnmOKmShFUN2GgEc6c0CQ==",
  3801. "type": "package",
  3802. "path": "serilog.aspnetcore/8.0.1",
  3803. "files": [
  3804. ".nupkg.metadata",
  3805. ".signature.p7s",
  3806. "README.md",
  3807. "icon.png",
  3808. "lib/net462/Serilog.AspNetCore.dll",
  3809. "lib/net462/Serilog.AspNetCore.xml",
  3810. "lib/net6.0/Serilog.AspNetCore.dll",
  3811. "lib/net6.0/Serilog.AspNetCore.xml",
  3812. "lib/net7.0/Serilog.AspNetCore.dll",
  3813. "lib/net7.0/Serilog.AspNetCore.xml",
  3814. "lib/net8.0/Serilog.AspNetCore.dll",
  3815. "lib/net8.0/Serilog.AspNetCore.xml",
  3816. "lib/netstandard2.0/Serilog.AspNetCore.dll",
  3817. "lib/netstandard2.0/Serilog.AspNetCore.xml",
  3818. "serilog.aspnetcore.8.0.1.nupkg.sha512",
  3819. "serilog.aspnetcore.nuspec"
  3820. ]
  3821. },
  3822. "Serilog.Enrichers.Thread/4.0.0": {
  3823. "sha512": "C7BK25a1rhUyr+Tp+1BYcVlBJq7M2VCHlIgnwoIUVJcicM9jYcvQK18+OeHiXw7uLPSjqWxJIp1EfaZ/RGmEwA==",
  3824. "type": "package",
  3825. "path": "serilog.enrichers.thread/4.0.0",
  3826. "files": [
  3827. ".nupkg.metadata",
  3828. ".signature.p7s",
  3829. "README.md",
  3830. "lib/net462/Serilog.Enrichers.Thread.dll",
  3831. "lib/net462/Serilog.Enrichers.Thread.xml",
  3832. "lib/net471/Serilog.Enrichers.Thread.dll",
  3833. "lib/net471/Serilog.Enrichers.Thread.xml",
  3834. "lib/net6.0/Serilog.Enrichers.Thread.dll",
  3835. "lib/net6.0/Serilog.Enrichers.Thread.xml",
  3836. "lib/net8.0/Serilog.Enrichers.Thread.dll",
  3837. "lib/net8.0/Serilog.Enrichers.Thread.xml",
  3838. "lib/netstandard2.0/Serilog.Enrichers.Thread.dll",
  3839. "lib/netstandard2.0/Serilog.Enrichers.Thread.xml",
  3840. "serilog-enricher-nuget.png",
  3841. "serilog.enrichers.thread.4.0.0.nupkg.sha512",
  3842. "serilog.enrichers.thread.nuspec"
  3843. ]
  3844. },
  3845. "Serilog.Extensions.Hosting/8.0.0": {
  3846. "sha512": "db0OcbWeSCvYQkHWu6n0v40N4kKaTAXNjlM3BKvcbwvNzYphQFcBR+36eQ/7hMMwOkJvAyLC2a9/jNdUL5NjtQ==",
  3847. "type": "package",
  3848. "path": "serilog.extensions.hosting/8.0.0",
  3849. "files": [
  3850. ".nupkg.metadata",
  3851. ".signature.p7s",
  3852. "README.md",
  3853. "icon.png",
  3854. "lib/net462/Serilog.Extensions.Hosting.dll",
  3855. "lib/net462/Serilog.Extensions.Hosting.xml",
  3856. "lib/net6.0/Serilog.Extensions.Hosting.dll",
  3857. "lib/net6.0/Serilog.Extensions.Hosting.xml",
  3858. "lib/net7.0/Serilog.Extensions.Hosting.dll",
  3859. "lib/net7.0/Serilog.Extensions.Hosting.xml",
  3860. "lib/net8.0/Serilog.Extensions.Hosting.dll",
  3861. "lib/net8.0/Serilog.Extensions.Hosting.xml",
  3862. "lib/netstandard2.0/Serilog.Extensions.Hosting.dll",
  3863. "lib/netstandard2.0/Serilog.Extensions.Hosting.xml",
  3864. "serilog.extensions.hosting.8.0.0.nupkg.sha512",
  3865. "serilog.extensions.hosting.nuspec"
  3866. ]
  3867. },
  3868. "Serilog.Extensions.Logging/8.0.0": {
  3869. "sha512": "YEAMWu1UnWgf1c1KP85l1SgXGfiVo0Rz6x08pCiPOIBt2Qe18tcZLvdBUuV5o1QHvrs8FAry9wTIhgBRtjIlEg==",
  3870. "type": "package",
  3871. "path": "serilog.extensions.logging/8.0.0",
  3872. "files": [
  3873. ".nupkg.metadata",
  3874. ".signature.p7s",
  3875. "README.md",
  3876. "lib/net462/Serilog.Extensions.Logging.dll",
  3877. "lib/net462/Serilog.Extensions.Logging.xml",
  3878. "lib/net6.0/Serilog.Extensions.Logging.dll",
  3879. "lib/net6.0/Serilog.Extensions.Logging.xml",
  3880. "lib/net7.0/Serilog.Extensions.Logging.dll",
  3881. "lib/net7.0/Serilog.Extensions.Logging.xml",
  3882. "lib/net8.0/Serilog.Extensions.Logging.dll",
  3883. "lib/net8.0/Serilog.Extensions.Logging.xml",
  3884. "lib/netstandard2.0/Serilog.Extensions.Logging.dll",
  3885. "lib/netstandard2.0/Serilog.Extensions.Logging.xml",
  3886. "lib/netstandard2.1/Serilog.Extensions.Logging.dll",
  3887. "lib/netstandard2.1/Serilog.Extensions.Logging.xml",
  3888. "serilog-extension-nuget.png",
  3889. "serilog.extensions.logging.8.0.0.nupkg.sha512",
  3890. "serilog.extensions.logging.nuspec"
  3891. ]
  3892. },
  3893. "Serilog.Formatting.Compact/2.0.0": {
  3894. "sha512": "ob6z3ikzFM3D1xalhFuBIK1IOWf+XrQq+H4KeH4VqBcPpNcmUgZlRQ2h3Q7wvthpdZBBoY86qZOI2LCXNaLlNA==",
  3895. "type": "package",
  3896. "path": "serilog.formatting.compact/2.0.0",
  3897. "files": [
  3898. ".nupkg.metadata",
  3899. ".signature.p7s",
  3900. "README.md",
  3901. "lib/net462/Serilog.Formatting.Compact.dll",
  3902. "lib/net462/Serilog.Formatting.Compact.xml",
  3903. "lib/net471/Serilog.Formatting.Compact.dll",
  3904. "lib/net471/Serilog.Formatting.Compact.xml",
  3905. "lib/net6.0/Serilog.Formatting.Compact.dll",
  3906. "lib/net6.0/Serilog.Formatting.Compact.xml",
  3907. "lib/net7.0/Serilog.Formatting.Compact.dll",
  3908. "lib/net7.0/Serilog.Formatting.Compact.xml",
  3909. "lib/netstandard2.0/Serilog.Formatting.Compact.dll",
  3910. "lib/netstandard2.0/Serilog.Formatting.Compact.xml",
  3911. "lib/netstandard2.1/Serilog.Formatting.Compact.dll",
  3912. "lib/netstandard2.1/Serilog.Formatting.Compact.xml",
  3913. "serilog-extension-nuget.png",
  3914. "serilog.formatting.compact.2.0.0.nupkg.sha512",
  3915. "serilog.formatting.compact.nuspec"
  3916. ]
  3917. },
  3918. "Serilog.Settings.Configuration/8.0.0": {
  3919. "sha512": "nR0iL5HwKj5v6ULo3/zpP8NMcq9E2pxYA6XKTSWCbugVs4YqPyvaqaKOY+OMpPivKp7zMEpax2UKHnDodbRB0Q==",
  3920. "type": "package",
  3921. "path": "serilog.settings.configuration/8.0.0",
  3922. "files": [
  3923. ".nupkg.metadata",
  3924. ".signature.p7s",
  3925. "README.md",
  3926. "icon.png",
  3927. "lib/net462/Serilog.Settings.Configuration.dll",
  3928. "lib/net462/Serilog.Settings.Configuration.xml",
  3929. "lib/net6.0/Serilog.Settings.Configuration.dll",
  3930. "lib/net6.0/Serilog.Settings.Configuration.xml",
  3931. "lib/net7.0/Serilog.Settings.Configuration.dll",
  3932. "lib/net7.0/Serilog.Settings.Configuration.xml",
  3933. "lib/net8.0/Serilog.Settings.Configuration.dll",
  3934. "lib/net8.0/Serilog.Settings.Configuration.xml",
  3935. "lib/netstandard2.0/Serilog.Settings.Configuration.dll",
  3936. "lib/netstandard2.0/Serilog.Settings.Configuration.xml",
  3937. "serilog.settings.configuration.8.0.0.nupkg.sha512",
  3938. "serilog.settings.configuration.nuspec"
  3939. ]
  3940. },
  3941. "Serilog.Sinks.Console/6.0.0": {
  3942. "sha512": "fQGWqVMClCP2yEyTXPIinSr5c+CBGUvBybPxjAGcf7ctDhadFhrQw03Mv8rJ07/wR5PDfFjewf2LimvXCDzpbA==",
  3943. "type": "package",
  3944. "path": "serilog.sinks.console/6.0.0",
  3945. "files": [
  3946. ".nupkg.metadata",
  3947. ".signature.p7s",
  3948. "README.md",
  3949. "icon.png",
  3950. "lib/net462/Serilog.Sinks.Console.dll",
  3951. "lib/net462/Serilog.Sinks.Console.xml",
  3952. "lib/net471/Serilog.Sinks.Console.dll",
  3953. "lib/net471/Serilog.Sinks.Console.xml",
  3954. "lib/net6.0/Serilog.Sinks.Console.dll",
  3955. "lib/net6.0/Serilog.Sinks.Console.xml",
  3956. "lib/net8.0/Serilog.Sinks.Console.dll",
  3957. "lib/net8.0/Serilog.Sinks.Console.xml",
  3958. "lib/netstandard2.0/Serilog.Sinks.Console.dll",
  3959. "lib/netstandard2.0/Serilog.Sinks.Console.xml",
  3960. "serilog.sinks.console.6.0.0.nupkg.sha512",
  3961. "serilog.sinks.console.nuspec"
  3962. ]
  3963. },
  3964. "Serilog.Sinks.Debug/2.0.0": {
  3965. "sha512": "Y6g3OBJ4JzTyyw16fDqtFcQ41qQAydnEvEqmXjhwhgjsnG/FaJ8GUqF5ldsC/bVkK8KYmqrPhDO+tm4dF6xx4A==",
  3966. "type": "package",
  3967. "path": "serilog.sinks.debug/2.0.0",
  3968. "files": [
  3969. ".nupkg.metadata",
  3970. ".signature.p7s",
  3971. "icon.png",
  3972. "lib/net45/Serilog.Sinks.Debug.dll",
  3973. "lib/net45/Serilog.Sinks.Debug.xml",
  3974. "lib/net46/Serilog.Sinks.Debug.dll",
  3975. "lib/net46/Serilog.Sinks.Debug.xml",
  3976. "lib/netstandard1.0/Serilog.Sinks.Debug.dll",
  3977. "lib/netstandard1.0/Serilog.Sinks.Debug.xml",
  3978. "lib/netstandard2.0/Serilog.Sinks.Debug.dll",
  3979. "lib/netstandard2.0/Serilog.Sinks.Debug.xml",
  3980. "lib/netstandard2.1/Serilog.Sinks.Debug.dll",
  3981. "lib/netstandard2.1/Serilog.Sinks.Debug.xml",
  3982. "serilog.sinks.debug.2.0.0.nupkg.sha512",
  3983. "serilog.sinks.debug.nuspec"
  3984. ]
  3985. },
  3986. "Serilog.Sinks.File/6.0.0": {
  3987. "sha512": "lxjg89Y8gJMmFxVkbZ+qDgjl+T4yC5F7WSLTvA+5q0R04tfKVLRL/EHpYoJ/MEQd2EeCKDuylBIVnAYMotmh2A==",
  3988. "type": "package",
  3989. "path": "serilog.sinks.file/6.0.0",
  3990. "files": [
  3991. ".nupkg.metadata",
  3992. ".signature.p7s",
  3993. "README.md",
  3994. "lib/net462/Serilog.Sinks.File.dll",
  3995. "lib/net462/Serilog.Sinks.File.xml",
  3996. "lib/net471/Serilog.Sinks.File.dll",
  3997. "lib/net471/Serilog.Sinks.File.xml",
  3998. "lib/net6.0/Serilog.Sinks.File.dll",
  3999. "lib/net6.0/Serilog.Sinks.File.xml",
  4000. "lib/net8.0/Serilog.Sinks.File.dll",
  4001. "lib/net8.0/Serilog.Sinks.File.xml",
  4002. "lib/netstandard2.0/Serilog.Sinks.File.dll",
  4003. "lib/netstandard2.0/Serilog.Sinks.File.xml",
  4004. "serilog-sink-nuget.png",
  4005. "serilog.sinks.file.6.0.0.nupkg.sha512",
  4006. "serilog.sinks.file.nuspec"
  4007. ]
  4008. },
  4009. "Swashbuckle.AspNetCore/6.5.0": {
  4010. "sha512": "FK05XokgjgwlCI6wCT+D4/abtQkL1X1/B9Oas6uIwHFmYrIO9WUD5aLC9IzMs9GnHfUXOtXZ2S43gN1mhs5+aA==",
  4011. "type": "package",
  4012. "path": "swashbuckle.aspnetcore/6.5.0",
  4013. "files": [
  4014. ".nupkg.metadata",
  4015. ".signature.p7s",
  4016. "build/Swashbuckle.AspNetCore.props",
  4017. "swashbuckle.aspnetcore.6.5.0.nupkg.sha512",
  4018. "swashbuckle.aspnetcore.nuspec"
  4019. ]
  4020. },
  4021. "Swashbuckle.AspNetCore.Annotations/6.5.0": {
  4022. "sha512": "EcHd1z2pEdnpaBMTI9qjVxk6mFVGVMZ1n0ySC3fjrkXCQQ8O9fMdt9TxPJRKyjiTiTjvO9700jKjmyl+hPBinQ==",
  4023. "type": "package",
  4024. "path": "swashbuckle.aspnetcore.annotations/6.5.0",
  4025. "files": [
  4026. ".nupkg.metadata",
  4027. ".signature.p7s",
  4028. "lib/net5.0/Swashbuckle.AspNetCore.Annotations.dll",
  4029. "lib/net5.0/Swashbuckle.AspNetCore.Annotations.pdb",
  4030. "lib/net5.0/Swashbuckle.AspNetCore.Annotations.xml",
  4031. "lib/net6.0/Swashbuckle.AspNetCore.Annotations.dll",
  4032. "lib/net6.0/Swashbuckle.AspNetCore.Annotations.pdb",
  4033. "lib/net6.0/Swashbuckle.AspNetCore.Annotations.xml",
  4034. "lib/net7.0/Swashbuckle.AspNetCore.Annotations.dll",
  4035. "lib/net7.0/Swashbuckle.AspNetCore.Annotations.pdb",
  4036. "lib/net7.0/Swashbuckle.AspNetCore.Annotations.xml",
  4037. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Annotations.dll",
  4038. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Annotations.pdb",
  4039. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Annotations.xml",
  4040. "lib/netstandard2.0/Swashbuckle.AspNetCore.Annotations.dll",
  4041. "lib/netstandard2.0/Swashbuckle.AspNetCore.Annotations.pdb",
  4042. "lib/netstandard2.0/Swashbuckle.AspNetCore.Annotations.xml",
  4043. "swashbuckle.aspnetcore.annotations.6.5.0.nupkg.sha512",
  4044. "swashbuckle.aspnetcore.annotations.nuspec"
  4045. ]
  4046. },
  4047. "Swashbuckle.AspNetCore.Filters/8.0.2": {
  4048. "sha512": "S4pR+265NwY9saAhK+3Jn2oL2Wfy0qvy9871b0KiEPW/iLPRgg2HrkrdMwC1wpjNkRXWGDFRRj+LkUD4lyuAaQ==",
  4049. "type": "package",
  4050. "path": "swashbuckle.aspnetcore.filters/8.0.2",
  4051. "files": [
  4052. ".nupkg.metadata",
  4053. ".signature.p7s",
  4054. "README.md",
  4055. "lib/net5.0/Swashbuckle.AspNetCore.Filters.dll",
  4056. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.dll",
  4057. "lib/netstandard2.0/Swashbuckle.AspNetCore.Filters.dll",
  4058. "swashbuckle.aspnetcore.filters.8.0.2.nupkg.sha512",
  4059. "swashbuckle.aspnetcore.filters.nuspec"
  4060. ]
  4061. },
  4062. "Swashbuckle.AspNetCore.Filters.Abstractions/8.0.2": {
  4063. "sha512": "RgQ1RbxmofrkBSrLkA/34DWwzz4rKHRwC4vHOvevru2CNqymUPn3kRhbIX29g4yvj2sCff1glf19djnyM9kuUQ==",
  4064. "type": "package",
  4065. "path": "swashbuckle.aspnetcore.filters.abstractions/8.0.2",
  4066. "files": [
  4067. ".nupkg.metadata",
  4068. ".signature.p7s",
  4069. "README.md",
  4070. "lib/net5.0/Swashbuckle.AspNetCore.Filters.Abstractions.dll",
  4071. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.Abstractions.dll",
  4072. "lib/netstandard2.0/Swashbuckle.AspNetCore.Filters.Abstractions.dll",
  4073. "swashbuckle.aspnetcore.filters.abstractions.8.0.2.nupkg.sha512",
  4074. "swashbuckle.aspnetcore.filters.abstractions.nuspec"
  4075. ]
  4076. },
  4077. "Swashbuckle.AspNetCore.Swagger/6.5.0": {
  4078. "sha512": "XWmCmqyFmoItXKFsQSwQbEAsjDKcxlNf1l+/Ki42hcb6LjKL8m5Db69OTvz5vLonMSRntYO1XLqz0OP+n3vKnA==",
  4079. "type": "package",
  4080. "path": "swashbuckle.aspnetcore.swagger/6.5.0",
  4081. "files": [
  4082. ".nupkg.metadata",
  4083. ".signature.p7s",
  4084. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll",
  4085. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.pdb",
  4086. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.xml",
  4087. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll",
  4088. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.pdb",
  4089. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.xml",
  4090. "lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll",
  4091. "lib/net7.0/Swashbuckle.AspNetCore.Swagger.pdb",
  4092. "lib/net7.0/Swashbuckle.AspNetCore.Swagger.xml",
  4093. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
  4094. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
  4095. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
  4096. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
  4097. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
  4098. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
  4099. "swashbuckle.aspnetcore.swagger.6.5.0.nupkg.sha512",
  4100. "swashbuckle.aspnetcore.swagger.nuspec"
  4101. ]
  4102. },
  4103. "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": {
  4104. "sha512": "Y/qW8Qdg9OEs7V013tt+94OdPxbRdbhcEbw4NiwGvf4YBcfhL/y7qp/Mjv/cENsQ2L3NqJ2AOu94weBy/h4KvA==",
  4105. "type": "package",
  4106. "path": "swashbuckle.aspnetcore.swaggergen/6.5.0",
  4107. "files": [
  4108. ".nupkg.metadata",
  4109. ".signature.p7s",
  4110. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  4111. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  4112. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  4113. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  4114. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  4115. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  4116. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  4117. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  4118. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  4119. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  4120. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  4121. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  4122. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  4123. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  4124. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  4125. "swashbuckle.aspnetcore.swaggergen.6.5.0.nupkg.sha512",
  4126. "swashbuckle.aspnetcore.swaggergen.nuspec"
  4127. ]
  4128. },
  4129. "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": {
  4130. "sha512": "OvbvxX+wL8skxTBttcBsVxdh73Fag4xwqEU2edh4JMn7Ws/xJHnY/JB1e9RoCb6XpDxUF3hD9A0Z1lEUx40Pfw==",
  4131. "type": "package",
  4132. "path": "swashbuckle.aspnetcore.swaggerui/6.5.0",
  4133. "files": [
  4134. ".nupkg.metadata",
  4135. ".signature.p7s",
  4136. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  4137. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  4138. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  4139. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  4140. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  4141. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  4142. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  4143. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  4144. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  4145. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  4146. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  4147. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  4148. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  4149. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  4150. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  4151. "swashbuckle.aspnetcore.swaggerui.6.5.0.nupkg.sha512",
  4152. "swashbuckle.aspnetcore.swaggerui.nuspec"
  4153. ]
  4154. },
  4155. "System.Configuration.ConfigurationManager/6.0.1": {
  4156. "sha512": "jXw9MlUu/kRfEU0WyTptAVueupqIeE3/rl0EZDMlf8pcvJnitQ8HeVEp69rZdaStXwTV72boi/Bhw8lOeO+U2w==",
  4157. "type": "package",
  4158. "path": "system.configuration.configurationmanager/6.0.1",
  4159. "files": [
  4160. ".nupkg.metadata",
  4161. ".signature.p7s",
  4162. "Icon.png",
  4163. "LICENSE.TXT",
  4164. "THIRD-PARTY-NOTICES.TXT",
  4165. "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets",
  4166. "buildTransitive/netcoreapp3.1/_._",
  4167. "lib/net461/System.Configuration.ConfigurationManager.dll",
  4168. "lib/net461/System.Configuration.ConfigurationManager.xml",
  4169. "lib/net6.0/System.Configuration.ConfigurationManager.dll",
  4170. "lib/net6.0/System.Configuration.ConfigurationManager.xml",
  4171. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  4172. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  4173. "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.dll",
  4174. "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.xml",
  4175. "system.configuration.configurationmanager.6.0.1.nupkg.sha512",
  4176. "system.configuration.configurationmanager.nuspec",
  4177. "useSharedDesignerContext.txt"
  4178. ]
  4179. },
  4180. "System.Diagnostics.DiagnosticSource/8.0.0": {
  4181. "sha512": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ==",
  4182. "type": "package",
  4183. "path": "system.diagnostics.diagnosticsource/8.0.0",
  4184. "files": [
  4185. ".nupkg.metadata",
  4186. ".signature.p7s",
  4187. "Icon.png",
  4188. "LICENSE.TXT",
  4189. "THIRD-PARTY-NOTICES.TXT",
  4190. "buildTransitive/net461/System.Diagnostics.DiagnosticSource.targets",
  4191. "buildTransitive/net462/_._",
  4192. "buildTransitive/net6.0/_._",
  4193. "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets",
  4194. "lib/net462/System.Diagnostics.DiagnosticSource.dll",
  4195. "lib/net462/System.Diagnostics.DiagnosticSource.xml",
  4196. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll",
  4197. "lib/net6.0/System.Diagnostics.DiagnosticSource.xml",
  4198. "lib/net7.0/System.Diagnostics.DiagnosticSource.dll",
  4199. "lib/net7.0/System.Diagnostics.DiagnosticSource.xml",
  4200. "lib/net8.0/System.Diagnostics.DiagnosticSource.dll",
  4201. "lib/net8.0/System.Diagnostics.DiagnosticSource.xml",
  4202. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll",
  4203. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml",
  4204. "system.diagnostics.diagnosticsource.8.0.0.nupkg.sha512",
  4205. "system.diagnostics.diagnosticsource.nuspec",
  4206. "useSharedDesignerContext.txt"
  4207. ]
  4208. },
  4209. "System.Drawing.Common/6.0.0": {
  4210. "sha512": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==",
  4211. "type": "package",
  4212. "path": "system.drawing.common/6.0.0",
  4213. "files": [
  4214. ".nupkg.metadata",
  4215. ".signature.p7s",
  4216. "Icon.png",
  4217. "LICENSE.TXT",
  4218. "THIRD-PARTY-NOTICES.TXT",
  4219. "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets",
  4220. "buildTransitive/netcoreapp3.1/_._",
  4221. "lib/MonoAndroid10/_._",
  4222. "lib/MonoTouch10/_._",
  4223. "lib/net461/System.Drawing.Common.dll",
  4224. "lib/net461/System.Drawing.Common.xml",
  4225. "lib/net6.0/System.Drawing.Common.dll",
  4226. "lib/net6.0/System.Drawing.Common.xml",
  4227. "lib/netcoreapp3.1/System.Drawing.Common.dll",
  4228. "lib/netcoreapp3.1/System.Drawing.Common.xml",
  4229. "lib/netstandard2.0/System.Drawing.Common.dll",
  4230. "lib/netstandard2.0/System.Drawing.Common.xml",
  4231. "lib/xamarinios10/_._",
  4232. "lib/xamarinmac20/_._",
  4233. "lib/xamarintvos10/_._",
  4234. "lib/xamarinwatchos10/_._",
  4235. "runtimes/unix/lib/net6.0/System.Drawing.Common.dll",
  4236. "runtimes/unix/lib/net6.0/System.Drawing.Common.xml",
  4237. "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll",
  4238. "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.xml",
  4239. "runtimes/win/lib/net6.0/System.Drawing.Common.dll",
  4240. "runtimes/win/lib/net6.0/System.Drawing.Common.xml",
  4241. "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll",
  4242. "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.xml",
  4243. "system.drawing.common.6.0.0.nupkg.sha512",
  4244. "system.drawing.common.nuspec",
  4245. "useSharedDesignerContext.txt"
  4246. ]
  4247. },
  4248. "System.Formats.Asn1/5.0.0": {
  4249. "sha512": "MTvUIktmemNB+El0Fgw9egyqT9AYSIk6DTJeoDSpc3GIHxHCMo8COqkWT1mptX5tZ1SlQ6HJZ0OsSvMth1c12w==",
  4250. "type": "package",
  4251. "path": "system.formats.asn1/5.0.0",
  4252. "files": [
  4253. ".nupkg.metadata",
  4254. ".signature.p7s",
  4255. "Icon.png",
  4256. "LICENSE.TXT",
  4257. "THIRD-PARTY-NOTICES.TXT",
  4258. "lib/net461/System.Formats.Asn1.dll",
  4259. "lib/net461/System.Formats.Asn1.xml",
  4260. "lib/netstandard2.0/System.Formats.Asn1.dll",
  4261. "lib/netstandard2.0/System.Formats.Asn1.xml",
  4262. "system.formats.asn1.5.0.0.nupkg.sha512",
  4263. "system.formats.asn1.nuspec",
  4264. "useSharedDesignerContext.txt",
  4265. "version.txt"
  4266. ]
  4267. },
  4268. "System.IdentityModel.Tokens.Jwt/7.1.2": {
  4269. "sha512": "Thhbe1peAmtSBFaV/ohtykXiZSOkx59Da44hvtWfIMFofDA3M3LaVyjstACf2rKGn4dEDR2cUpRAZ0Xs/zB+7Q==",
  4270. "type": "package",
  4271. "path": "system.identitymodel.tokens.jwt/7.1.2",
  4272. "files": [
  4273. ".nupkg.metadata",
  4274. ".signature.p7s",
  4275. "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
  4276. "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
  4277. "lib/net462/System.IdentityModel.Tokens.Jwt.dll",
  4278. "lib/net462/System.IdentityModel.Tokens.Jwt.xml",
  4279. "lib/net472/System.IdentityModel.Tokens.Jwt.dll",
  4280. "lib/net472/System.IdentityModel.Tokens.Jwt.xml",
  4281. "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll",
  4282. "lib/net6.0/System.IdentityModel.Tokens.Jwt.xml",
  4283. "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll",
  4284. "lib/net8.0/System.IdentityModel.Tokens.Jwt.xml",
  4285. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  4286. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  4287. "system.identitymodel.tokens.jwt.7.1.2.nupkg.sha512",
  4288. "system.identitymodel.tokens.jwt.nuspec"
  4289. ]
  4290. },
  4291. "System.IO.Pipelines/5.0.2": {
  4292. "sha512": "Iew+dfa6FFiyvWBdRmXApixRY1db+beyutpIck4SOSe0NLM8FD/7AD54MscqVLhvfSMLHO7KadjTRT7fqxOGTA==",
  4293. "type": "package",
  4294. "path": "system.io.pipelines/5.0.2",
  4295. "files": [
  4296. ".nupkg.metadata",
  4297. ".signature.p7s",
  4298. "Icon.png",
  4299. "LICENSE.TXT",
  4300. "THIRD-PARTY-NOTICES.TXT",
  4301. "lib/net461/System.IO.Pipelines.dll",
  4302. "lib/net461/System.IO.Pipelines.xml",
  4303. "lib/netcoreapp3.0/System.IO.Pipelines.dll",
  4304. "lib/netcoreapp3.0/System.IO.Pipelines.xml",
  4305. "lib/netstandard1.3/System.IO.Pipelines.dll",
  4306. "lib/netstandard1.3/System.IO.Pipelines.xml",
  4307. "lib/netstandard2.0/System.IO.Pipelines.dll",
  4308. "lib/netstandard2.0/System.IO.Pipelines.xml",
  4309. "ref/netcoreapp2.0/System.IO.Pipelines.dll",
  4310. "ref/netcoreapp2.0/System.IO.Pipelines.xml",
  4311. "system.io.pipelines.5.0.2.nupkg.sha512",
  4312. "system.io.pipelines.nuspec",
  4313. "useSharedDesignerContext.txt",
  4314. "version.txt"
  4315. ]
  4316. },
  4317. "System.Memory/4.5.4": {
  4318. "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
  4319. "type": "package",
  4320. "path": "system.memory/4.5.4",
  4321. "files": [
  4322. ".nupkg.metadata",
  4323. ".signature.p7s",
  4324. "LICENSE.TXT",
  4325. "THIRD-PARTY-NOTICES.TXT",
  4326. "lib/net461/System.Memory.dll",
  4327. "lib/net461/System.Memory.xml",
  4328. "lib/netcoreapp2.1/_._",
  4329. "lib/netstandard1.1/System.Memory.dll",
  4330. "lib/netstandard1.1/System.Memory.xml",
  4331. "lib/netstandard2.0/System.Memory.dll",
  4332. "lib/netstandard2.0/System.Memory.xml",
  4333. "ref/netcoreapp2.1/_._",
  4334. "system.memory.4.5.4.nupkg.sha512",
  4335. "system.memory.nuspec",
  4336. "useSharedDesignerContext.txt",
  4337. "version.txt"
  4338. ]
  4339. },
  4340. "System.Memory.Data/1.0.2": {
  4341. "sha512": "JGkzeqgBsiZwKJZ1IxPNsDFZDhUvuEdX8L8BDC8N3KOj+6zMcNU28CNN59TpZE/VJYy9cP+5M+sbxtWJx3/xtw==",
  4342. "type": "package",
  4343. "path": "system.memory.data/1.0.2",
  4344. "files": [
  4345. ".nupkg.metadata",
  4346. ".signature.p7s",
  4347. "CHANGELOG.md",
  4348. "DotNetPackageIcon.png",
  4349. "README.md",
  4350. "lib/net461/System.Memory.Data.dll",
  4351. "lib/net461/System.Memory.Data.xml",
  4352. "lib/netstandard2.0/System.Memory.Data.dll",
  4353. "lib/netstandard2.0/System.Memory.Data.xml",
  4354. "system.memory.data.1.0.2.nupkg.sha512",
  4355. "system.memory.data.nuspec"
  4356. ]
  4357. },
  4358. "System.Numerics.Vectors/4.5.0": {
  4359. "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
  4360. "type": "package",
  4361. "path": "system.numerics.vectors/4.5.0",
  4362. "files": [
  4363. ".nupkg.metadata",
  4364. ".signature.p7s",
  4365. "LICENSE.TXT",
  4366. "THIRD-PARTY-NOTICES.TXT",
  4367. "lib/MonoAndroid10/_._",
  4368. "lib/MonoTouch10/_._",
  4369. "lib/net46/System.Numerics.Vectors.dll",
  4370. "lib/net46/System.Numerics.Vectors.xml",
  4371. "lib/netcoreapp2.0/_._",
  4372. "lib/netstandard1.0/System.Numerics.Vectors.dll",
  4373. "lib/netstandard1.0/System.Numerics.Vectors.xml",
  4374. "lib/netstandard2.0/System.Numerics.Vectors.dll",
  4375. "lib/netstandard2.0/System.Numerics.Vectors.xml",
  4376. "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll",
  4377. "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml",
  4378. "lib/uap10.0.16299/_._",
  4379. "lib/xamarinios10/_._",
  4380. "lib/xamarinmac20/_._",
  4381. "lib/xamarintvos10/_._",
  4382. "lib/xamarinwatchos10/_._",
  4383. "ref/MonoAndroid10/_._",
  4384. "ref/MonoTouch10/_._",
  4385. "ref/net45/System.Numerics.Vectors.dll",
  4386. "ref/net45/System.Numerics.Vectors.xml",
  4387. "ref/net46/System.Numerics.Vectors.dll",
  4388. "ref/net46/System.Numerics.Vectors.xml",
  4389. "ref/netcoreapp2.0/_._",
  4390. "ref/netstandard1.0/System.Numerics.Vectors.dll",
  4391. "ref/netstandard1.0/System.Numerics.Vectors.xml",
  4392. "ref/netstandard2.0/System.Numerics.Vectors.dll",
  4393. "ref/netstandard2.0/System.Numerics.Vectors.xml",
  4394. "ref/uap10.0.16299/_._",
  4395. "ref/xamarinios10/_._",
  4396. "ref/xamarinmac20/_._",
  4397. "ref/xamarintvos10/_._",
  4398. "ref/xamarinwatchos10/_._",
  4399. "system.numerics.vectors.4.5.0.nupkg.sha512",
  4400. "system.numerics.vectors.nuspec",
  4401. "useSharedDesignerContext.txt",
  4402. "version.txt"
  4403. ]
  4404. },
  4405. "System.Runtime.Caching/6.0.0": {
  4406. "sha512": "E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==",
  4407. "type": "package",
  4408. "path": "system.runtime.caching/6.0.0",
  4409. "files": [
  4410. ".nupkg.metadata",
  4411. ".signature.p7s",
  4412. "Icon.png",
  4413. "LICENSE.TXT",
  4414. "THIRD-PARTY-NOTICES.TXT",
  4415. "buildTransitive/netcoreapp2.0/System.Runtime.Caching.targets",
  4416. "buildTransitive/netcoreapp3.1/_._",
  4417. "lib/MonoAndroid10/_._",
  4418. "lib/MonoTouch10/_._",
  4419. "lib/net461/_._",
  4420. "lib/net6.0/System.Runtime.Caching.dll",
  4421. "lib/net6.0/System.Runtime.Caching.xml",
  4422. "lib/netcoreapp3.1/System.Runtime.Caching.dll",
  4423. "lib/netcoreapp3.1/System.Runtime.Caching.xml",
  4424. "lib/netstandard2.0/System.Runtime.Caching.dll",
  4425. "lib/netstandard2.0/System.Runtime.Caching.xml",
  4426. "lib/xamarinios10/_._",
  4427. "lib/xamarinmac20/_._",
  4428. "lib/xamarintvos10/_._",
  4429. "lib/xamarinwatchos10/_._",
  4430. "runtimes/win/lib/net461/_._",
  4431. "runtimes/win/lib/net6.0/System.Runtime.Caching.dll",
  4432. "runtimes/win/lib/net6.0/System.Runtime.Caching.xml",
  4433. "runtimes/win/lib/netcoreapp3.1/System.Runtime.Caching.dll",
  4434. "runtimes/win/lib/netcoreapp3.1/System.Runtime.Caching.xml",
  4435. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll",
  4436. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.xml",
  4437. "system.runtime.caching.6.0.0.nupkg.sha512",
  4438. "system.runtime.caching.nuspec",
  4439. "useSharedDesignerContext.txt"
  4440. ]
  4441. },
  4442. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  4443. "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  4444. "type": "package",
  4445. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  4446. "files": [
  4447. ".nupkg.metadata",
  4448. ".signature.p7s",
  4449. "Icon.png",
  4450. "LICENSE.TXT",
  4451. "THIRD-PARTY-NOTICES.TXT",
  4452. "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
  4453. "buildTransitive/netcoreapp3.1/_._",
  4454. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
  4455. "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
  4456. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
  4457. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
  4458. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
  4459. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
  4460. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  4461. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  4462. "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
  4463. "system.runtime.compilerservices.unsafe.nuspec",
  4464. "useSharedDesignerContext.txt"
  4465. ]
  4466. },
  4467. "System.Security.AccessControl/6.0.0": {
  4468. "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==",
  4469. "type": "package",
  4470. "path": "system.security.accesscontrol/6.0.0",
  4471. "files": [
  4472. ".nupkg.metadata",
  4473. ".signature.p7s",
  4474. "Icon.png",
  4475. "LICENSE.TXT",
  4476. "THIRD-PARTY-NOTICES.TXT",
  4477. "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets",
  4478. "buildTransitive/netcoreapp3.1/_._",
  4479. "lib/net461/System.Security.AccessControl.dll",
  4480. "lib/net461/System.Security.AccessControl.xml",
  4481. "lib/net6.0/System.Security.AccessControl.dll",
  4482. "lib/net6.0/System.Security.AccessControl.xml",
  4483. "lib/netstandard2.0/System.Security.AccessControl.dll",
  4484. "lib/netstandard2.0/System.Security.AccessControl.xml",
  4485. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  4486. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  4487. "runtimes/win/lib/net6.0/System.Security.AccessControl.dll",
  4488. "runtimes/win/lib/net6.0/System.Security.AccessControl.xml",
  4489. "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll",
  4490. "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml",
  4491. "system.security.accesscontrol.6.0.0.nupkg.sha512",
  4492. "system.security.accesscontrol.nuspec",
  4493. "useSharedDesignerContext.txt"
  4494. ]
  4495. },
  4496. "System.Security.Cryptography.Cng/5.0.0": {
  4497. "sha512": "jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==",
  4498. "type": "package",
  4499. "path": "system.security.cryptography.cng/5.0.0",
  4500. "files": [
  4501. ".nupkg.metadata",
  4502. ".signature.p7s",
  4503. "Icon.png",
  4504. "LICENSE.TXT",
  4505. "THIRD-PARTY-NOTICES.TXT",
  4506. "lib/MonoAndroid10/_._",
  4507. "lib/MonoTouch10/_._",
  4508. "lib/net46/System.Security.Cryptography.Cng.dll",
  4509. "lib/net461/System.Security.Cryptography.Cng.dll",
  4510. "lib/net461/System.Security.Cryptography.Cng.xml",
  4511. "lib/net462/System.Security.Cryptography.Cng.dll",
  4512. "lib/net462/System.Security.Cryptography.Cng.xml",
  4513. "lib/net47/System.Security.Cryptography.Cng.dll",
  4514. "lib/net47/System.Security.Cryptography.Cng.xml",
  4515. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  4516. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  4517. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  4518. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  4519. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  4520. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  4521. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  4522. "lib/netstandard2.0/System.Security.Cryptography.Cng.xml",
  4523. "lib/netstandard2.1/System.Security.Cryptography.Cng.dll",
  4524. "lib/netstandard2.1/System.Security.Cryptography.Cng.xml",
  4525. "lib/uap10.0.16299/_._",
  4526. "lib/xamarinios10/_._",
  4527. "lib/xamarinmac20/_._",
  4528. "lib/xamarintvos10/_._",
  4529. "lib/xamarinwatchos10/_._",
  4530. "ref/MonoAndroid10/_._",
  4531. "ref/MonoTouch10/_._",
  4532. "ref/net46/System.Security.Cryptography.Cng.dll",
  4533. "ref/net461/System.Security.Cryptography.Cng.dll",
  4534. "ref/net461/System.Security.Cryptography.Cng.xml",
  4535. "ref/net462/System.Security.Cryptography.Cng.dll",
  4536. "ref/net462/System.Security.Cryptography.Cng.xml",
  4537. "ref/net47/System.Security.Cryptography.Cng.dll",
  4538. "ref/net47/System.Security.Cryptography.Cng.xml",
  4539. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  4540. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  4541. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  4542. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  4543. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  4544. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  4545. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  4546. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  4547. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  4548. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  4549. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  4550. "ref/netstandard2.1/System.Security.Cryptography.Cng.dll",
  4551. "ref/netstandard2.1/System.Security.Cryptography.Cng.xml",
  4552. "ref/uap10.0.16299/_._",
  4553. "ref/xamarinios10/_._",
  4554. "ref/xamarinmac20/_._",
  4555. "ref/xamarintvos10/_._",
  4556. "ref/xamarinwatchos10/_._",
  4557. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  4558. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  4559. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.xml",
  4560. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  4561. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.xml",
  4562. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  4563. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.xml",
  4564. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  4565. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  4566. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  4567. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  4568. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  4569. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  4570. "runtimes/win/lib/uap10.0.16299/_._",
  4571. "system.security.cryptography.cng.5.0.0.nupkg.sha512",
  4572. "system.security.cryptography.cng.nuspec",
  4573. "useSharedDesignerContext.txt",
  4574. "version.txt"
  4575. ]
  4576. },
  4577. "System.Security.Cryptography.ProtectedData/6.0.0": {
  4578. "sha512": "rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==",
  4579. "type": "package",
  4580. "path": "system.security.cryptography.protecteddata/6.0.0",
  4581. "files": [
  4582. ".nupkg.metadata",
  4583. ".signature.p7s",
  4584. "Icon.png",
  4585. "LICENSE.TXT",
  4586. "THIRD-PARTY-NOTICES.TXT",
  4587. "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets",
  4588. "buildTransitive/netcoreapp3.1/_._",
  4589. "lib/MonoAndroid10/_._",
  4590. "lib/MonoTouch10/_._",
  4591. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  4592. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  4593. "lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
  4594. "lib/net6.0/System.Security.Cryptography.ProtectedData.xml",
  4595. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  4596. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  4597. "lib/xamarinios10/_._",
  4598. "lib/xamarinmac20/_._",
  4599. "lib/xamarintvos10/_._",
  4600. "lib/xamarinwatchos10/_._",
  4601. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  4602. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  4603. "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
  4604. "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.xml",
  4605. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  4606. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  4607. "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512",
  4608. "system.security.cryptography.protecteddata.nuspec",
  4609. "useSharedDesignerContext.txt"
  4610. ]
  4611. },
  4612. "System.Security.Permissions/6.0.0": {
  4613. "sha512": "T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==",
  4614. "type": "package",
  4615. "path": "system.security.permissions/6.0.0",
  4616. "files": [
  4617. ".nupkg.metadata",
  4618. ".signature.p7s",
  4619. "Icon.png",
  4620. "LICENSE.TXT",
  4621. "THIRD-PARTY-NOTICES.TXT",
  4622. "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets",
  4623. "buildTransitive/netcoreapp3.1/_._",
  4624. "lib/net461/System.Security.Permissions.dll",
  4625. "lib/net461/System.Security.Permissions.xml",
  4626. "lib/net5.0/System.Security.Permissions.dll",
  4627. "lib/net5.0/System.Security.Permissions.xml",
  4628. "lib/net6.0/System.Security.Permissions.dll",
  4629. "lib/net6.0/System.Security.Permissions.xml",
  4630. "lib/netcoreapp3.1/System.Security.Permissions.dll",
  4631. "lib/netcoreapp3.1/System.Security.Permissions.xml",
  4632. "lib/netstandard2.0/System.Security.Permissions.dll",
  4633. "lib/netstandard2.0/System.Security.Permissions.xml",
  4634. "runtimes/win/lib/net461/System.Security.Permissions.dll",
  4635. "runtimes/win/lib/net461/System.Security.Permissions.xml",
  4636. "system.security.permissions.6.0.0.nupkg.sha512",
  4637. "system.security.permissions.nuspec",
  4638. "useSharedDesignerContext.txt"
  4639. ]
  4640. },
  4641. "System.Security.Principal.Windows/5.0.0": {
  4642. "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
  4643. "type": "package",
  4644. "path": "system.security.principal.windows/5.0.0",
  4645. "files": [
  4646. ".nupkg.metadata",
  4647. ".signature.p7s",
  4648. "Icon.png",
  4649. "LICENSE.TXT",
  4650. "THIRD-PARTY-NOTICES.TXT",
  4651. "lib/net46/System.Security.Principal.Windows.dll",
  4652. "lib/net461/System.Security.Principal.Windows.dll",
  4653. "lib/net461/System.Security.Principal.Windows.xml",
  4654. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  4655. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  4656. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  4657. "lib/uap10.0.16299/_._",
  4658. "ref/net46/System.Security.Principal.Windows.dll",
  4659. "ref/net461/System.Security.Principal.Windows.dll",
  4660. "ref/net461/System.Security.Principal.Windows.xml",
  4661. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  4662. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  4663. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  4664. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  4665. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  4666. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  4667. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  4668. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  4669. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  4670. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  4671. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  4672. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  4673. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  4674. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  4675. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  4676. "ref/uap10.0.16299/_._",
  4677. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  4678. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  4679. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  4680. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  4681. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  4682. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  4683. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  4684. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  4685. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  4686. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  4687. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  4688. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  4689. "runtimes/win/lib/uap10.0.16299/_._",
  4690. "system.security.principal.windows.5.0.0.nupkg.sha512",
  4691. "system.security.principal.windows.nuspec",
  4692. "useSharedDesignerContext.txt",
  4693. "version.txt"
  4694. ]
  4695. },
  4696. "System.Text.Encoding.CodePages/6.0.0": {
  4697. "sha512": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
  4698. "type": "package",
  4699. "path": "system.text.encoding.codepages/6.0.0",
  4700. "files": [
  4701. ".nupkg.metadata",
  4702. ".signature.p7s",
  4703. "Icon.png",
  4704. "LICENSE.TXT",
  4705. "THIRD-PARTY-NOTICES.TXT",
  4706. "buildTransitive/netcoreapp2.0/System.Text.Encoding.CodePages.targets",
  4707. "buildTransitive/netcoreapp3.1/_._",
  4708. "lib/MonoAndroid10/_._",
  4709. "lib/MonoTouch10/_._",
  4710. "lib/net461/System.Text.Encoding.CodePages.dll",
  4711. "lib/net461/System.Text.Encoding.CodePages.xml",
  4712. "lib/net6.0/System.Text.Encoding.CodePages.dll",
  4713. "lib/net6.0/System.Text.Encoding.CodePages.xml",
  4714. "lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll",
  4715. "lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml",
  4716. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  4717. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  4718. "lib/xamarinios10/_._",
  4719. "lib/xamarinmac20/_._",
  4720. "lib/xamarintvos10/_._",
  4721. "lib/xamarinwatchos10/_._",
  4722. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  4723. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  4724. "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll",
  4725. "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.xml",
  4726. "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll",
  4727. "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml",
  4728. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  4729. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  4730. "system.text.encoding.codepages.6.0.0.nupkg.sha512",
  4731. "system.text.encoding.codepages.nuspec",
  4732. "useSharedDesignerContext.txt"
  4733. ]
  4734. },
  4735. "System.Text.Encodings.Web/8.0.0": {
  4736. "sha512": "yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==",
  4737. "type": "package",
  4738. "path": "system.text.encodings.web/8.0.0",
  4739. "files": [
  4740. ".nupkg.metadata",
  4741. ".signature.p7s",
  4742. "Icon.png",
  4743. "LICENSE.TXT",
  4744. "THIRD-PARTY-NOTICES.TXT",
  4745. "buildTransitive/net461/System.Text.Encodings.Web.targets",
  4746. "buildTransitive/net462/_._",
  4747. "buildTransitive/net6.0/_._",
  4748. "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets",
  4749. "lib/net462/System.Text.Encodings.Web.dll",
  4750. "lib/net462/System.Text.Encodings.Web.xml",
  4751. "lib/net6.0/System.Text.Encodings.Web.dll",
  4752. "lib/net6.0/System.Text.Encodings.Web.xml",
  4753. "lib/net7.0/System.Text.Encodings.Web.dll",
  4754. "lib/net7.0/System.Text.Encodings.Web.xml",
  4755. "lib/net8.0/System.Text.Encodings.Web.dll",
  4756. "lib/net8.0/System.Text.Encodings.Web.xml",
  4757. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  4758. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  4759. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll",
  4760. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml",
  4761. "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll",
  4762. "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.xml",
  4763. "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll",
  4764. "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.xml",
  4765. "system.text.encodings.web.8.0.0.nupkg.sha512",
  4766. "system.text.encodings.web.nuspec",
  4767. "useSharedDesignerContext.txt"
  4768. ]
  4769. },
  4770. "System.Text.Json/8.0.0": {
  4771. "sha512": "OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ==",
  4772. "type": "package",
  4773. "path": "system.text.json/8.0.0",
  4774. "files": [
  4775. ".nupkg.metadata",
  4776. ".signature.p7s",
  4777. "Icon.png",
  4778. "LICENSE.TXT",
  4779. "PACKAGE.md",
  4780. "THIRD-PARTY-NOTICES.TXT",
  4781. "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll",
  4782. "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  4783. "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  4784. "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  4785. "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  4786. "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  4787. "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  4788. "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  4789. "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  4790. "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  4791. "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  4792. "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  4793. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  4794. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  4795. "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll",
  4796. "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  4797. "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  4798. "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  4799. "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  4800. "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  4801. "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  4802. "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  4803. "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  4804. "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  4805. "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  4806. "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  4807. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  4808. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  4809. "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll",
  4810. "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  4811. "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  4812. "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  4813. "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  4814. "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  4815. "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  4816. "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  4817. "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  4818. "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  4819. "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  4820. "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  4821. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  4822. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  4823. "buildTransitive/net461/System.Text.Json.targets",
  4824. "buildTransitive/net462/System.Text.Json.targets",
  4825. "buildTransitive/net6.0/System.Text.Json.targets",
  4826. "buildTransitive/netcoreapp2.0/System.Text.Json.targets",
  4827. "buildTransitive/netstandard2.0/System.Text.Json.targets",
  4828. "lib/net462/System.Text.Json.dll",
  4829. "lib/net462/System.Text.Json.xml",
  4830. "lib/net6.0/System.Text.Json.dll",
  4831. "lib/net6.0/System.Text.Json.xml",
  4832. "lib/net7.0/System.Text.Json.dll",
  4833. "lib/net7.0/System.Text.Json.xml",
  4834. "lib/net8.0/System.Text.Json.dll",
  4835. "lib/net8.0/System.Text.Json.xml",
  4836. "lib/netstandard2.0/System.Text.Json.dll",
  4837. "lib/netstandard2.0/System.Text.Json.xml",
  4838. "system.text.json.8.0.0.nupkg.sha512",
  4839. "system.text.json.nuspec",
  4840. "useSharedDesignerContext.txt"
  4841. ]
  4842. },
  4843. "System.Threading.Tasks.Extensions/4.5.4": {
  4844. "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
  4845. "type": "package",
  4846. "path": "system.threading.tasks.extensions/4.5.4",
  4847. "files": [
  4848. ".nupkg.metadata",
  4849. ".signature.p7s",
  4850. "LICENSE.TXT",
  4851. "THIRD-PARTY-NOTICES.TXT",
  4852. "lib/MonoAndroid10/_._",
  4853. "lib/MonoTouch10/_._",
  4854. "lib/net461/System.Threading.Tasks.Extensions.dll",
  4855. "lib/net461/System.Threading.Tasks.Extensions.xml",
  4856. "lib/netcoreapp2.1/_._",
  4857. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  4858. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  4859. "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
  4860. "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
  4861. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  4862. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  4863. "lib/xamarinios10/_._",
  4864. "lib/xamarinmac20/_._",
  4865. "lib/xamarintvos10/_._",
  4866. "lib/xamarinwatchos10/_._",
  4867. "ref/MonoAndroid10/_._",
  4868. "ref/MonoTouch10/_._",
  4869. "ref/netcoreapp2.1/_._",
  4870. "ref/xamarinios10/_._",
  4871. "ref/xamarinmac20/_._",
  4872. "ref/xamarintvos10/_._",
  4873. "ref/xamarinwatchos10/_._",
  4874. "system.threading.tasks.extensions.4.5.4.nupkg.sha512",
  4875. "system.threading.tasks.extensions.nuspec",
  4876. "useSharedDesignerContext.txt",
  4877. "version.txt"
  4878. ]
  4879. },
  4880. "System.Windows.Extensions/6.0.0": {
  4881. "sha512": "IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==",
  4882. "type": "package",
  4883. "path": "system.windows.extensions/6.0.0",
  4884. "files": [
  4885. ".nupkg.metadata",
  4886. ".signature.p7s",
  4887. "Icon.png",
  4888. "LICENSE.TXT",
  4889. "THIRD-PARTY-NOTICES.TXT",
  4890. "lib/net6.0/System.Windows.Extensions.dll",
  4891. "lib/net6.0/System.Windows.Extensions.xml",
  4892. "lib/netcoreapp3.1/System.Windows.Extensions.dll",
  4893. "lib/netcoreapp3.1/System.Windows.Extensions.xml",
  4894. "runtimes/win/lib/net6.0/System.Windows.Extensions.dll",
  4895. "runtimes/win/lib/net6.0/System.Windows.Extensions.xml",
  4896. "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll",
  4897. "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.xml",
  4898. "system.windows.extensions.6.0.0.nupkg.sha512",
  4899. "system.windows.extensions.nuspec",
  4900. "useSharedDesignerContext.txt"
  4901. ]
  4902. },
  4903. "AipGateway.AIP/1.0.0": {
  4904. "type": "project",
  4905. "path": "../AipGateway.AIP/AipGateway.AIP.csproj",
  4906. "msbuildProject": "../AipGateway.AIP/AipGateway.AIP.csproj"
  4907. },
  4908. "AipGateway.API.Application/1.0.0": {
  4909. "type": "project",
  4910. "path": "../AipGateway.API.Application/AipGateway.API.Application.csproj",
  4911. "msbuildProject": "../AipGateway.API.Application/AipGateway.API.Application.csproj"
  4912. },
  4913. "AipGateway.API.Domain/1.0.0": {
  4914. "type": "project",
  4915. "path": "../AipGateway.API.Domain/AipGateway.API.Domain.csproj",
  4916. "msbuildProject": "../AipGateway.API.Domain/AipGateway.API.Domain.csproj"
  4917. },
  4918. "AipGateway.DRM/1.0.0": {
  4919. "type": "project",
  4920. "path": "../AipGateway.DRM/AipGateway.DRM.csproj",
  4921. "msbuildProject": "../AipGateway.DRM/AipGateway.DRM.csproj"
  4922. },
  4923. "AipGateway.Messaging/1.0.0": {
  4924. "type": "project",
  4925. "path": "../AipGateway.Messaging/AipGateway.Messaging.csproj",
  4926. "msbuildProject": "../AipGateway.Messaging/AipGateway.Messaging.csproj"
  4927. }
  4928. },
  4929. "projectFileDependencyGroups": {
  4930. "net8.0": [
  4931. "AipGateway.AIP >= 1.0.0",
  4932. "AipGateway.API.Application >= 1.0.0",
  4933. "AipGateway.API.Domain >= 1.0.0",
  4934. "AipGateway.DRM >= 1.0.0",
  4935. "AipGateway.Messaging >= 1.0.0",
  4936. "Coravel >= 5.0.3",
  4937. "Dapper >= 2.1.35",
  4938. "Microsoft.AspNetCore.Mvc.NewtonsoftJson >= 8.0.4",
  4939. "Microsoft.EntityFrameworkCore >= 8.0.4",
  4940. "Microsoft.EntityFrameworkCore.SqlServer >= 8.0.4",
  4941. "Microsoft.Extensions.Logging.Log4Net.AspNetCore >= 8.0.0",
  4942. "Serilog >= 4.0.0",
  4943. "Serilog.AspNetCore >= 8.0.1",
  4944. "Serilog.Enrichers.Thread >= 4.0.0",
  4945. "Serilog.Extensions.Logging >= 8.0.0",
  4946. "Serilog.Sinks.Console >= 6.0.0",
  4947. "Serilog.Sinks.File >= 6.0.0",
  4948. "Swashbuckle.AspNetCore >= 6.5.0",
  4949. "Swashbuckle.AspNetCore.Annotations >= 6.5.0",
  4950. "Swashbuckle.AspNetCore.Filters >= 8.0.2"
  4951. ]
  4952. },
  4953. "packageFolders": {
  4954. "C:\\Users\\OpenValue\\.nuget\\packages\\": {},
  4955. "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
  4956. },
  4957. "project": {
  4958. "version": "1.0.0",
  4959. "restore": {
  4960. "projectUniqueName": "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.API\\AipGateway.API.csproj",
  4961. "projectName": "AipGateway.API",
  4962. "projectPath": "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.API\\AipGateway.API.csproj",
  4963. "packagesPath": "C:\\Users\\OpenValue\\.nuget\\packages\\",
  4964. "outputPath": "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.API\\obj\\",
  4965. "projectStyle": "PackageReference",
  4966. "fallbackFolders": [
  4967. "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
  4968. ],
  4969. "configFilePaths": [
  4970. "C:\\Users\\OpenValue\\AppData\\Roaming\\NuGet\\NuGet.Config",
  4971. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  4972. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  4973. ],
  4974. "originalTargetFrameworks": [
  4975. "net8.0"
  4976. ],
  4977. "sources": {
  4978. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  4979. "C:\\Program Files\\dotnet\\library-packs": {},
  4980. "https://api.nuget.org/v3/index.json": {}
  4981. },
  4982. "frameworks": {
  4983. "net8.0": {
  4984. "targetAlias": "net8.0",
  4985. "projectReferences": {
  4986. "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.AIP\\AipGateway.AIP.csproj": {
  4987. "projectPath": "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.AIP\\AipGateway.AIP.csproj"
  4988. },
  4989. "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.API.Application\\AipGateway.API.Application.csproj": {
  4990. "projectPath": "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.API.Application\\AipGateway.API.Application.csproj"
  4991. },
  4992. "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.API.Domain\\AipGateway.API.Domain.csproj": {
  4993. "projectPath": "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.API.Domain\\AipGateway.API.Domain.csproj"
  4994. },
  4995. "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.DRM\\AipGateway.DRM.csproj": {
  4996. "projectPath": "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.DRM\\AipGateway.DRM.csproj"
  4997. },
  4998. "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.Messaging\\AipGateway.Messaging.csproj": {
  4999. "projectPath": "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.Messaging\\AipGateway.Messaging.csproj"
  5000. }
  5001. }
  5002. }
  5003. },
  5004. "warningProperties": {
  5005. "warnAsError": [
  5006. "NU1605"
  5007. ]
  5008. },
  5009. "restoreAuditProperties": {
  5010. "enableAudit": "true",
  5011. "auditLevel": "low",
  5012. "auditMode": "direct"
  5013. }
  5014. },
  5015. "frameworks": {
  5016. "net8.0": {
  5017. "targetAlias": "net8.0",
  5018. "dependencies": {
  5019. "Coravel": {
  5020. "target": "Package",
  5021. "version": "[5.0.3, )"
  5022. },
  5023. "Dapper": {
  5024. "target": "Package",
  5025. "version": "[2.1.35, )"
  5026. },
  5027. "Microsoft.AspNetCore.Mvc.NewtonsoftJson": {
  5028. "target": "Package",
  5029. "version": "[8.0.4, )"
  5030. },
  5031. "Microsoft.EntityFrameworkCore": {
  5032. "target": "Package",
  5033. "version": "[8.0.4, )"
  5034. },
  5035. "Microsoft.EntityFrameworkCore.SqlServer": {
  5036. "target": "Package",
  5037. "version": "[8.0.4, )"
  5038. },
  5039. "Microsoft.Extensions.Logging.Log4Net.AspNetCore": {
  5040. "target": "Package",
  5041. "version": "[8.0.0, )"
  5042. },
  5043. "Serilog": {
  5044. "target": "Package",
  5045. "version": "[4.0.0, )"
  5046. },
  5047. "Serilog.AspNetCore": {
  5048. "target": "Package",
  5049. "version": "[8.0.1, )"
  5050. },
  5051. "Serilog.Enrichers.Thread": {
  5052. "target": "Package",
  5053. "version": "[4.0.0, )"
  5054. },
  5055. "Serilog.Extensions.Logging": {
  5056. "target": "Package",
  5057. "version": "[8.0.0, )"
  5058. },
  5059. "Serilog.Sinks.Console": {
  5060. "target": "Package",
  5061. "version": "[6.0.0, )"
  5062. },
  5063. "Serilog.Sinks.File": {
  5064. "target": "Package",
  5065. "version": "[6.0.0, )"
  5066. },
  5067. "Swashbuckle.AspNetCore": {
  5068. "target": "Package",
  5069. "version": "[6.5.0, )"
  5070. },
  5071. "Swashbuckle.AspNetCore.Annotations": {
  5072. "target": "Package",
  5073. "version": "[6.5.0, )"
  5074. },
  5075. "Swashbuckle.AspNetCore.Filters": {
  5076. "target": "Package",
  5077. "version": "[8.0.2, )"
  5078. }
  5079. },
  5080. "imports": [
  5081. "net461",
  5082. "net462",
  5083. "net47",
  5084. "net471",
  5085. "net472",
  5086. "net48",
  5087. "net481"
  5088. ],
  5089. "assetTargetFallback": true,
  5090. "warn": true,
  5091. "frameworkReferences": {
  5092. "Microsoft.AspNetCore.App": {
  5093. "privateAssets": "none"
  5094. },
  5095. "Microsoft.NETCore.App": {
  5096. "privateAssets": "all"
  5097. }
  5098. },
  5099. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json"
  5100. }
  5101. }
  5102. }
  5103. }