您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ScreeningTest.deps.json 226KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506
  1. {
  2. "runtimeTarget": {
  3. "name": ".NETCoreApp,Version=v5.0",
  4. "signature": ""
  5. },
  6. "compilationOptions": {
  7. "defines": [
  8. "TRACE",
  9. "RELEASE",
  10. "NET",
  11. "NET5_0",
  12. "NETCOREAPP",
  13. "NET5_0_OR_GREATER",
  14. "NETCOREAPP1_0_OR_GREATER",
  15. "NETCOREAPP1_1_OR_GREATER",
  16. "NETCOREAPP2_0_OR_GREATER",
  17. "NETCOREAPP2_1_OR_GREATER",
  18. "NETCOREAPP2_2_OR_GREATER",
  19. "NETCOREAPP3_0_OR_GREATER",
  20. "NETCOREAPP3_1_OR_GREATER"
  21. ],
  22. "languageVersion": "9.0",
  23. "platform": "",
  24. "allowUnsafe": false,
  25. "warningsAsErrors": false,
  26. "optimize": true,
  27. "keyFile": "",
  28. "emitEntryPoint": true,
  29. "xmlDoc": false,
  30. "debugType": "portable"
  31. },
  32. "targets": {
  33. ".NETCoreApp,Version=v5.0": {
  34. "ScreeningTest/1.0.0": {
  35. "dependencies": {
  36. "Microsoft.AspNet.Identity.Core": "2.2.3",
  37. "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "5.0.6",
  38. "Microsoft.AspNetCore.Identity.UI": "5.0.6",
  39. "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation": "5.0.7",
  40. "Microsoft.EntityFrameworkCore.SqlServer": "5.0.6",
  41. "Microsoft.EntityFrameworkCore.Tools": "5.0.6",
  42. "Microsoft.VisualStudio.Web.CodeGeneration.Design": "5.0.2",
  43. "Newtonsoft.Json": "13.0.1",
  44. "ScreeningTest.Business": "1.0.0",
  45. "ScreeningTest.Data": "1.0.0",
  46. "Serilog": "2.10.0",
  47. "Serilog.AspNetCore": "4.1.0",
  48. "Microsoft.AspNetCore.Antiforgery": "5.0.0.0",
  49. "Microsoft.AspNetCore.Authentication.Abstractions": "5.0.0.0",
  50. "Microsoft.AspNetCore.Authentication.Cookies": "5.0.0.0",
  51. "Microsoft.AspNetCore.Authentication.Core": "5.0.0.0",
  52. "Microsoft.AspNetCore.Authentication": "5.0.0.0",
  53. "Microsoft.AspNetCore.Authentication.OAuth": "5.0.0.0",
  54. "Microsoft.AspNetCore.Authorization": "5.0.0.0",
  55. "Microsoft.AspNetCore.Authorization.Policy": "5.0.0.0",
  56. "Microsoft.AspNetCore.Components.Authorization": "5.0.0.0",
  57. "Microsoft.AspNetCore.Components": "5.0.0.0",
  58. "Microsoft.AspNetCore.Components.Forms": "5.0.0.0",
  59. "Microsoft.AspNetCore.Components.Server": "5.0.0.0",
  60. "Microsoft.AspNetCore.Components.Web": "5.0.0.0",
  61. "Microsoft.AspNetCore.Connections.Abstractions": "5.0.0.0",
  62. "Microsoft.AspNetCore.CookiePolicy": "5.0.0.0",
  63. "Microsoft.AspNetCore.Cors": "5.0.0.0",
  64. "Microsoft.AspNetCore.DataProtection.Abstractions": "5.0.0.0",
  65. "Microsoft.AspNetCore.DataProtection": "5.0.0.0",
  66. "Microsoft.AspNetCore.DataProtection.Extensions": "5.0.0.0",
  67. "Microsoft.AspNetCore.Diagnostics.Abstractions": "5.0.0.0",
  68. "Microsoft.AspNetCore.Diagnostics": "5.0.0.0",
  69. "Microsoft.AspNetCore.Diagnostics.HealthChecks": "5.0.0.0",
  70. "Microsoft.AspNetCore": "5.0.0.0",
  71. "Microsoft.AspNetCore.HostFiltering": "5.0.0.0",
  72. "Microsoft.AspNetCore.Hosting.Abstractions": "5.0.0.0",
  73. "Microsoft.AspNetCore.Hosting": "5.0.0.0",
  74. "Microsoft.AspNetCore.Hosting.Server.Abstractions": "5.0.0.0",
  75. "Microsoft.AspNetCore.Html.Abstractions.Reference": "5.0.0.0",
  76. "Microsoft.AspNetCore.Http.Abstractions": "5.0.0.0",
  77. "Microsoft.AspNetCore.Http.Connections.Common": "5.0.0.0",
  78. "Microsoft.AspNetCore.Http.Connections": "5.0.0.0",
  79. "Microsoft.AspNetCore.Http": "5.0.0.0",
  80. "Microsoft.AspNetCore.Http.Extensions": "5.0.0.0",
  81. "Microsoft.AspNetCore.Http.Features": "5.0.0.0",
  82. "Microsoft.AspNetCore.HttpOverrides": "5.0.0.0",
  83. "Microsoft.AspNetCore.HttpsPolicy": "5.0.0.0",
  84. "Microsoft.AspNetCore.Identity": "5.0.0.0",
  85. "Microsoft.AspNetCore.Localization": "5.0.0.0",
  86. "Microsoft.AspNetCore.Localization.Routing": "5.0.0.0",
  87. "Microsoft.AspNetCore.Metadata": "5.0.0.0",
  88. "Microsoft.AspNetCore.Mvc.Abstractions": "5.0.0.0",
  89. "Microsoft.AspNetCore.Mvc.ApiExplorer": "5.0.0.0",
  90. "Microsoft.AspNetCore.Mvc.Core": "5.0.0.0",
  91. "Microsoft.AspNetCore.Mvc.Cors": "5.0.0.0",
  92. "Microsoft.AspNetCore.Mvc.DataAnnotations": "5.0.0.0",
  93. "Microsoft.AspNetCore.Mvc": "5.0.0.0",
  94. "Microsoft.AspNetCore.Mvc.Formatters.Json": "5.0.0.0",
  95. "Microsoft.AspNetCore.Mvc.Formatters.Xml": "5.0.0.0",
  96. "Microsoft.AspNetCore.Mvc.Localization": "5.0.0.0",
  97. "Microsoft.AspNetCore.Mvc.Razor": "5.0.0.0",
  98. "Microsoft.AspNetCore.Mvc.RazorPages": "5.0.0.0",
  99. "Microsoft.AspNetCore.Mvc.TagHelpers": "5.0.0.0",
  100. "Microsoft.AspNetCore.Mvc.ViewFeatures": "5.0.0.0",
  101. "Microsoft.AspNetCore.Razor.Reference": "5.0.0.0",
  102. "Microsoft.AspNetCore.Razor.Runtime.Reference": "5.0.0.0",
  103. "Microsoft.AspNetCore.ResponseCaching.Abstractions": "5.0.0.0",
  104. "Microsoft.AspNetCore.ResponseCaching": "5.0.0.0",
  105. "Microsoft.AspNetCore.ResponseCompression": "5.0.0.0",
  106. "Microsoft.AspNetCore.Rewrite": "5.0.0.0",
  107. "Microsoft.AspNetCore.Routing.Abstractions": "5.0.0.0",
  108. "Microsoft.AspNetCore.Routing": "5.0.0.0",
  109. "Microsoft.AspNetCore.Server.HttpSys": "5.0.0.0",
  110. "Microsoft.AspNetCore.Server.IIS": "5.0.0.0",
  111. "Microsoft.AspNetCore.Server.IISIntegration": "5.0.0.0",
  112. "Microsoft.AspNetCore.Server.Kestrel.Core": "5.0.0.0",
  113. "Microsoft.AspNetCore.Server.Kestrel": "5.0.0.0",
  114. "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "5.0.0.0",
  115. "Microsoft.AspNetCore.Session": "5.0.0.0",
  116. "Microsoft.AspNetCore.SignalR.Common": "5.0.0.0",
  117. "Microsoft.AspNetCore.SignalR.Core": "5.0.0.0",
  118. "Microsoft.AspNetCore.SignalR": "5.0.0.0",
  119. "Microsoft.AspNetCore.SignalR.Protocols.Json": "5.0.0.0",
  120. "Microsoft.AspNetCore.StaticFiles": "5.0.0.0",
  121. "Microsoft.AspNetCore.WebSockets": "5.0.0.0",
  122. "Microsoft.AspNetCore.WebUtilities": "5.0.0.0",
  123. "Microsoft.CSharp.Reference": "5.0.0.0",
  124. "Microsoft.Extensions.Caching.Abstractions.Reference": "5.0.0.0",
  125. "Microsoft.Extensions.Caching.Memory.Reference": "5.0.0.0",
  126. "Microsoft.Extensions.Configuration.Abstractions.Reference": "5.0.0.0",
  127. "Microsoft.Extensions.Configuration.Binder.Reference": "5.0.0.0",
  128. "Microsoft.Extensions.Configuration.CommandLine": "5.0.0.0",
  129. "Microsoft.Extensions.Configuration.Reference": "5.0.0.0",
  130. "Microsoft.Extensions.Configuration.EnvironmentVariables": "5.0.0.0",
  131. "Microsoft.Extensions.Configuration.FileExtensions.Reference": "5.0.0.0",
  132. "Microsoft.Extensions.Configuration.Ini": "5.0.0.0",
  133. "Microsoft.Extensions.Configuration.Json.Reference": "5.0.0.0",
  134. "Microsoft.Extensions.Configuration.KeyPerFile": "5.0.0.0",
  135. "Microsoft.Extensions.Configuration.UserSecrets": "5.0.0.0",
  136. "Microsoft.Extensions.Configuration.Xml": "5.0.0.0",
  137. "Microsoft.Extensions.DependencyInjection.Abstractions.Reference": "5.0.0.0",
  138. "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "5.0.0.0",
  139. "Microsoft.Extensions.Diagnostics.HealthChecks": "5.0.0.0",
  140. "Microsoft.Extensions.FileProviders.Abstractions.Reference": "5.0.0.0",
  141. "Microsoft.Extensions.FileProviders.Composite": "5.0.0.0",
  142. "Microsoft.Extensions.FileProviders.Physical.Reference": "5.0.0.0",
  143. "Microsoft.Extensions.FileSystemGlobbing.Reference": "5.0.0.0",
  144. "Microsoft.Extensions.Hosting.Abstractions.Reference": "5.0.0.0",
  145. "Microsoft.Extensions.Hosting": "5.0.0.0",
  146. "Microsoft.Extensions.Http": "5.0.0.0",
  147. "Microsoft.Extensions.Localization.Abstractions": "5.0.0.0",
  148. "Microsoft.Extensions.Localization": "5.0.0.0",
  149. "Microsoft.Extensions.Logging.Abstractions.Reference": "5.0.0.0",
  150. "Microsoft.Extensions.Logging.Configuration": "5.0.0.0",
  151. "Microsoft.Extensions.Logging.Console": "5.0.0.0",
  152. "Microsoft.Extensions.Logging.Debug": "5.0.0.0",
  153. "Microsoft.Extensions.Logging.Reference": "5.0.0.0",
  154. "Microsoft.Extensions.Logging.EventLog": "5.0.0.0",
  155. "Microsoft.Extensions.Logging.EventSource": "5.0.0.0",
  156. "Microsoft.Extensions.Logging.TraceSource": "5.0.0.0",
  157. "Microsoft.Extensions.ObjectPool": "5.0.0.0",
  158. "Microsoft.Extensions.Options.ConfigurationExtensions.Reference": "5.0.0.0",
  159. "Microsoft.Extensions.Options.DataAnnotations": "5.0.0.0",
  160. "Microsoft.Extensions.Options.Reference": "5.0.0.0",
  161. "Microsoft.Extensions.Primitives.Reference": "5.0.0.0",
  162. "Microsoft.Extensions.WebEncoders": "5.0.0.0",
  163. "Microsoft.JSInterop": "5.0.0.0",
  164. "Microsoft.Net.Http.Headers": "5.0.0.0",
  165. "Microsoft.VisualBasic.Core": "10.0.6.0",
  166. "Microsoft.VisualBasic": "10.0.0.0",
  167. "Microsoft.Win32.Primitives": "5.0.0.0",
  168. "Microsoft.Win32.Registry.Reference": "5.0.0.0",
  169. "mscorlib": "4.0.0.0",
  170. "netstandard": "2.1.0.0",
  171. "System.AppContext": "5.0.0.0",
  172. "System.Buffers.Reference": "5.0.0.0",
  173. "System.Collections.Concurrent.Reference": "5.0.0.0",
  174. "System.Collections.Reference": "5.0.0.0",
  175. "System.Collections.Immutable.Reference": "5.0.0.0",
  176. "System.Collections.NonGeneric.Reference": "5.0.0.0",
  177. "System.Collections.Specialized.Reference": "5.0.0.0",
  178. "System.ComponentModel.Annotations.Reference": "5.0.0.0",
  179. "System.ComponentModel.DataAnnotations": "4.0.0.0",
  180. "System.ComponentModel.Reference": "5.0.0.0",
  181. "System.ComponentModel.EventBasedAsync": "5.0.0.0",
  182. "System.ComponentModel.Primitives.Reference": "5.0.0.0",
  183. "System.ComponentModel.TypeConverter.Reference": "5.0.0.0",
  184. "System.Configuration": "4.0.0.0",
  185. "System.Console.Reference": "5.0.0.0",
  186. "System.Core": "4.0.0.0",
  187. "System.Data.Common": "5.0.0.0",
  188. "System.Data.DataSetExtensions": "4.0.0.0",
  189. "System.Data": "4.0.0.0",
  190. "System.Diagnostics.Contracts": "5.0.0.0",
  191. "System.Diagnostics.Debug.Reference": "5.0.0.0",
  192. "System.Diagnostics.EventLog": "5.0.0.0",
  193. "System.Diagnostics.FileVersionInfo": "5.0.0.0",
  194. "System.Diagnostics.Process": "5.0.0.0",
  195. "System.Diagnostics.StackTrace": "5.0.0.0",
  196. "System.Diagnostics.TextWriterTraceListener": "5.0.0.0",
  197. "System.Diagnostics.Tools.Reference": "5.0.0.0",
  198. "System.Diagnostics.TraceSource": "5.0.0.0",
  199. "System.Diagnostics.Tracing.Reference": "5.0.0.0",
  200. "System": "4.0.0.0",
  201. "System.Drawing": "4.0.0.0",
  202. "System.Drawing.Primitives": "5.0.0.0",
  203. "System.Dynamic.Runtime": "5.0.0.0",
  204. "System.Formats.Asn1": "5.0.0.0",
  205. "System.Globalization.Calendars": "5.0.0.0",
  206. "System.Globalization.Reference": "5.0.0.0",
  207. "System.Globalization.Extensions.Reference": "5.0.0.0",
  208. "System.IO.Compression.Brotli": "5.0.0.0",
  209. "System.IO.Compression": "5.0.0.0",
  210. "System.IO.Compression.FileSystem": "4.0.0.0",
  211. "System.IO.Compression.ZipFile": "5.0.0.0",
  212. "System.IO.Reference": "5.0.0.0",
  213. "System.IO.FileSystem.Reference": "5.0.0.0",
  214. "System.IO.FileSystem.DriveInfo": "5.0.0.0",
  215. "System.IO.FileSystem.Primitives.Reference": "5.0.0.0",
  216. "System.IO.FileSystem.Watcher": "5.0.0.0",
  217. "System.IO.IsolatedStorage": "5.0.0.0",
  218. "System.IO.MemoryMappedFiles": "5.0.0.0",
  219. "System.IO.Pipelines": "5.0.0.0",
  220. "System.IO.Pipes": "5.0.0.0",
  221. "System.IO.UnmanagedMemoryStream": "5.0.0.0",
  222. "System.Linq.Reference": "5.0.0.0",
  223. "System.Linq.Expressions.Reference": "5.0.0.0",
  224. "System.Linq.Parallel": "5.0.0.0",
  225. "System.Linq.Queryable": "5.0.0.0",
  226. "System.Memory.Reference": "5.0.0.0",
  227. "System.Net": "4.0.0.0",
  228. "System.Net.Http": "5.0.0.0",
  229. "System.Net.Http.Json": "5.0.0.0",
  230. "System.Net.HttpListener": "5.0.0.0",
  231. "System.Net.Mail": "5.0.0.0",
  232. "System.Net.NameResolution.Reference": "5.0.0.0",
  233. "System.Net.NetworkInformation": "5.0.0.0",
  234. "System.Net.Ping": "5.0.0.0",
  235. "System.Net.Primitives.Reference": "5.0.0.0",
  236. "System.Net.Requests": "5.0.0.0",
  237. "System.Net.Security": "5.0.0.0",
  238. "System.Net.ServicePoint": "5.0.0.0",
  239. "System.Net.Sockets": "5.0.0.0",
  240. "System.Net.WebClient": "5.0.0.0",
  241. "System.Net.WebHeaderCollection": "5.0.0.0",
  242. "System.Net.WebProxy": "5.0.0.0",
  243. "System.Net.WebSockets.Client": "5.0.0.0",
  244. "System.Net.WebSockets": "5.0.0.0",
  245. "System.Numerics": "4.0.0.0",
  246. "System.Numerics.Vectors": "5.0.0.0",
  247. "System.ObjectModel.Reference": "5.0.0.0",
  248. "System.Reflection.DispatchProxy": "5.0.0.0",
  249. "System.Reflection.Reference": "5.0.0.0",
  250. "System.Reflection.Emit.Reference": "5.0.0.0",
  251. "System.Reflection.Emit.ILGeneration.Reference": "5.0.0.0",
  252. "System.Reflection.Emit.Lightweight.Reference": "5.0.0.0",
  253. "System.Reflection.Extensions.Reference": "5.0.0.0",
  254. "System.Reflection.Metadata.Reference": "5.0.0.0",
  255. "System.Reflection.Primitives.Reference": "5.0.0.0",
  256. "System.Reflection.TypeExtensions.Reference": "5.0.0.0",
  257. "System.Resources.Reader": "5.0.0.0",
  258. "System.Resources.ResourceManager.Reference": "5.0.0.0",
  259. "System.Resources.Writer": "5.0.0.0",
  260. "System.Runtime.CompilerServices.Unsafe.Reference": "5.0.0.0",
  261. "System.Runtime.CompilerServices.VisualC": "5.0.0.0",
  262. "System.Runtime.Reference": "5.0.0.0",
  263. "System.Runtime.Extensions.Reference": "5.0.0.0",
  264. "System.Runtime.Handles.Reference": "5.0.0.0",
  265. "System.Runtime.InteropServices.Reference": "5.0.0.0",
  266. "System.Runtime.InteropServices.RuntimeInformation.Reference": "5.0.0.0",
  267. "System.Runtime.Intrinsics": "5.0.0.0",
  268. "System.Runtime.Loader": "5.0.0.0",
  269. "System.Runtime.Numerics": "5.0.0.0",
  270. "System.Runtime.Serialization": "4.0.0.0",
  271. "System.Runtime.Serialization.Formatters.Reference": "5.0.0.0",
  272. "System.Runtime.Serialization.Json.Reference": "5.0.0.0",
  273. "System.Runtime.Serialization.Primitives.Reference": "5.0.0.0",
  274. "System.Runtime.Serialization.Xml": "5.0.0.0",
  275. "System.Security.AccessControl.Reference": "5.0.0.0",
  276. "System.Security.Claims": "5.0.0.0",
  277. "System.Security.Cryptography.Algorithms": "5.0.0.0",
  278. "System.Security.Cryptography.Cng.Reference": "5.0.0.0",
  279. "System.Security.Cryptography.Csp": "5.0.0.0",
  280. "System.Security.Cryptography.Encoding": "5.0.0.0",
  281. "System.Security.Cryptography.Primitives.Reference": "5.0.0.0",
  282. "System.Security.Cryptography.X509Certificates": "5.0.0.0",
  283. "System.Security.Cryptography.Xml": "5.0.0.0",
  284. "System.Security": "4.0.0.0",
  285. "System.Security.Permissions.Reference": "5.0.0.0",
  286. "System.Security.Principal": "5.0.0.0",
  287. "System.Security.Principal.Windows.Reference": "5.0.0.0",
  288. "System.Security.SecureString.Reference": "5.0.0.0",
  289. "System.ServiceModel.Web": "4.0.0.0",
  290. "System.ServiceProcess": "4.0.0.0",
  291. "System.Text.Encoding.CodePages.Reference": "5.0.0.0",
  292. "System.Text.Encoding.Reference": "5.0.0.0",
  293. "System.Text.Encoding.Extensions.Reference": "5.0.0.0",
  294. "System.Text.Encodings.Web.Reference": "5.0.0.0",
  295. "System.Text.Json": "5.0.0.0",
  296. "System.Text.RegularExpressions.Reference": "5.0.0.0",
  297. "System.Threading.Channels": "5.0.0.0",
  298. "System.Threading.Reference": "5.0.0.0",
  299. "System.Threading.Overlapped": "5.0.0.0",
  300. "System.Threading.Tasks.Dataflow": "5.0.0.0",
  301. "System.Threading.Tasks.Reference": "5.0.0.0",
  302. "System.Threading.Tasks.Extensions.Reference": "5.0.0.0",
  303. "System.Threading.Tasks.Parallel": "5.0.0.0",
  304. "System.Threading.Thread": "5.0.0.0",
  305. "System.Threading.ThreadPool": "5.0.0.0",
  306. "System.Threading.Timer.Reference": "5.0.0.0",
  307. "System.Transactions": "4.0.0.0",
  308. "System.Transactions.Local": "5.0.0.0",
  309. "System.ValueTuple": "4.0.3.0",
  310. "System.Web": "4.0.0.0",
  311. "System.Web.HttpUtility": "5.0.0.0",
  312. "System.Windows": "4.0.0.0",
  313. "System.Windows.Extensions.Reference": "5.0.0.0",
  314. "System.Xml": "4.0.0.0",
  315. "System.Xml.Linq": "4.0.0.0",
  316. "System.Xml.ReaderWriter.Reference": "5.0.0.0",
  317. "System.Xml.Serialization": "4.0.0.0",
  318. "System.Xml.XDocument.Reference": "5.0.0.0",
  319. "System.Xml.XmlDocument.Reference": "5.0.0.0",
  320. "System.Xml.XmlSerializer.Reference": "5.0.0.0",
  321. "System.Xml.XPath": "5.0.0.0",
  322. "System.Xml.XPath.XDocument": "5.0.0.0",
  323. "WindowsBase": "4.0.0.0"
  324. },
  325. "runtime": {
  326. "ScreeningTest.dll": {}
  327. },
  328. "compile": {
  329. "ScreeningTest.dll": {}
  330. }
  331. },
  332. "AutoMapper/10.1.1": {
  333. "dependencies": {
  334. "Microsoft.CSharp": "4.7.0",
  335. "System.Reflection.Emit": "4.7.0"
  336. },
  337. "runtime": {
  338. "lib/netstandard2.0/AutoMapper.dll": {
  339. "assemblyVersion": "10.0.0.0",
  340. "fileVersion": "10.1.1.0"
  341. }
  342. },
  343. "compile": {
  344. "lib/netstandard2.0/AutoMapper.dll": {}
  345. }
  346. },
  347. "Humanizer.Core/2.8.26": {
  348. "runtime": {
  349. "lib/netstandard2.0/Humanizer.dll": {
  350. "assemblyVersion": "2.8.0.0",
  351. "fileVersion": "2.8.26.1919"
  352. }
  353. }
  354. },
  355. "MailKit/2.13.0": {
  356. "dependencies": {
  357. "MimeKit": "2.13.0"
  358. },
  359. "runtime": {
  360. "lib/net50/MailKit.dll": {
  361. "assemblyVersion": "2.13.0.0",
  362. "fileVersion": "2.13.0.0"
  363. }
  364. },
  365. "compile": {
  366. "lib/net50/MailKit.dll": {}
  367. }
  368. },
  369. "Microsoft.AspNet.Identity.Core/2.2.3": {
  370. "runtime": {
  371. "lib/net45/Microsoft.AspNet.Identity.Core.dll": {
  372. "assemblyVersion": "2.0.0.0",
  373. "fileVersion": "2.2.3.11125"
  374. }
  375. },
  376. "compile": {
  377. "lib/net45/Microsoft.AspNet.Identity.Core.dll": {}
  378. }
  379. },
  380. "Microsoft.AspNetCore.Cryptography.Internal/5.0.6": {
  381. "runtime": {
  382. "lib/net5.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {
  383. "assemblyVersion": "5.0.0.0",
  384. "fileVersion": "5.0.621.22305"
  385. }
  386. },
  387. "compile": {
  388. "lib/net5.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
  389. }
  390. },
  391. "Microsoft.AspNetCore.Cryptography.KeyDerivation/5.0.6": {
  392. "dependencies": {
  393. "Microsoft.AspNetCore.Cryptography.Internal": "5.0.6"
  394. },
  395. "runtime": {
  396. "lib/net5.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {
  397. "assemblyVersion": "5.0.0.0",
  398. "fileVersion": "5.0.621.22305"
  399. }
  400. },
  401. "compile": {
  402. "lib/net5.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
  403. }
  404. },
  405. "Microsoft.AspNetCore.Html.Abstractions/2.2.0": {
  406. "dependencies": {
  407. "System.Text.Encodings.Web": "4.5.0"
  408. }
  409. },
  410. "Microsoft.AspNetCore.Identity.EntityFrameworkCore/5.0.6": {
  411. "dependencies": {
  412. "Microsoft.EntityFrameworkCore.Relational": "5.0.7",
  413. "Microsoft.Extensions.Identity.Stores": "5.0.6"
  414. },
  415. "runtime": {
  416. "lib/net5.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {
  417. "assemblyVersion": "5.0.6.0",
  418. "fileVersion": "5.0.621.22305"
  419. }
  420. },
  421. "compile": {
  422. "lib/net5.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {}
  423. }
  424. },
  425. "Microsoft.AspNetCore.Identity.UI/5.0.6": {
  426. "dependencies": {
  427. "Microsoft.Extensions.FileProviders.Embedded": "5.0.6",
  428. "Microsoft.Extensions.Identity.Stores": "5.0.6"
  429. },
  430. "runtime": {
  431. "lib/net5.0/Microsoft.AspNetCore.Identity.UI.Views.V4.dll": {
  432. "assemblyVersion": "5.0.6.0",
  433. "fileVersion": "5.0.621.22305"
  434. },
  435. "lib/net5.0/Microsoft.AspNetCore.Identity.UI.dll": {
  436. "assemblyVersion": "5.0.6.0",
  437. "fileVersion": "5.0.621.22305"
  438. }
  439. },
  440. "compile": {
  441. "lib/net5.0/Microsoft.AspNetCore.Identity.UI.Views.V4.dll": {},
  442. "lib/net5.0/Microsoft.AspNetCore.Identity.UI.dll": {}
  443. }
  444. },
  445. "Microsoft.AspNetCore.Mvc.Razor.Extensions/5.0.7": {
  446. "dependencies": {
  447. "Microsoft.AspNetCore.Razor.Language": "5.0.7",
  448. "Microsoft.CodeAnalysis.Razor": "5.0.7"
  449. },
  450. "runtime": {
  451. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {
  452. "assemblyVersion": "5.0.7.0",
  453. "fileVersion": "5.0.721.26309"
  454. }
  455. },
  456. "compile": {
  457. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {}
  458. }
  459. },
  460. "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation/5.0.7": {
  461. "dependencies": {
  462. "Microsoft.AspNetCore.Mvc.Razor.Extensions": "5.0.7",
  463. "Microsoft.CodeAnalysis.Razor": "5.0.7",
  464. "Microsoft.Extensions.DependencyModel": "5.0.0"
  465. },
  466. "runtime": {
  467. "lib/net5.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll": {
  468. "assemblyVersion": "5.0.7.0",
  469. "fileVersion": "5.0.721.26309"
  470. }
  471. },
  472. "compile": {
  473. "lib/net5.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll": {}
  474. }
  475. },
  476. "Microsoft.AspNetCore.Razor/2.2.0": {
  477. "dependencies": {
  478. "Microsoft.AspNetCore.Html.Abstractions": "2.2.0"
  479. }
  480. },
  481. "Microsoft.AspNetCore.Razor.Language/5.0.7": {
  482. "runtime": {
  483. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {
  484. "assemblyVersion": "5.0.7.0",
  485. "fileVersion": "5.0.721.26309"
  486. }
  487. },
  488. "compile": {
  489. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {}
  490. }
  491. },
  492. "Microsoft.AspNetCore.Razor.Runtime/2.2.0": {
  493. "dependencies": {
  494. "Microsoft.AspNetCore.Html.Abstractions": "2.2.0",
  495. "Microsoft.AspNetCore.Razor": "2.2.0"
  496. }
  497. },
  498. "Microsoft.Bcl.AsyncInterfaces/1.1.1": {
  499. "runtime": {
  500. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
  501. "assemblyVersion": "1.0.0.0",
  502. "fileVersion": "4.700.20.21406"
  503. }
  504. },
  505. "compile": {
  506. "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
  507. }
  508. },
  509. "Microsoft.CodeAnalysis.Analyzers/3.0.0": {},
  510. "Microsoft.CodeAnalysis.Common/3.8.0": {
  511. "dependencies": {
  512. "Microsoft.CodeAnalysis.Analyzers": "3.0.0",
  513. "System.Collections.Immutable": "5.0.0",
  514. "System.Memory": "4.5.4",
  515. "System.Reflection.Metadata": "5.0.0",
  516. "System.Runtime.CompilerServices.Unsafe": "4.7.1",
  517. "System.Text.Encoding.CodePages": "4.7.0",
  518. "System.Threading.Tasks.Extensions": "4.5.4"
  519. },
  520. "runtime": {
  521. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {
  522. "assemblyVersion": "3.8.0.0",
  523. "fileVersion": "3.800.20.56202"
  524. }
  525. },
  526. "resources": {
  527. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": {
  528. "locale": "cs"
  529. },
  530. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": {
  531. "locale": "de"
  532. },
  533. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": {
  534. "locale": "es"
  535. },
  536. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": {
  537. "locale": "fr"
  538. },
  539. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": {
  540. "locale": "it"
  541. },
  542. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": {
  543. "locale": "ja"
  544. },
  545. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": {
  546. "locale": "ko"
  547. },
  548. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": {
  549. "locale": "pl"
  550. },
  551. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
  552. "locale": "pt-BR"
  553. },
  554. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": {
  555. "locale": "ru"
  556. },
  557. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": {
  558. "locale": "tr"
  559. },
  560. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
  561. "locale": "zh-Hans"
  562. },
  563. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
  564. "locale": "zh-Hant"
  565. }
  566. },
  567. "compile": {
  568. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {}
  569. }
  570. },
  571. "Microsoft.CodeAnalysis.CSharp/3.8.0": {
  572. "dependencies": {
  573. "Microsoft.CodeAnalysis.Common": "3.8.0"
  574. },
  575. "runtime": {
  576. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {
  577. "assemblyVersion": "3.8.0.0",
  578. "fileVersion": "3.800.20.56202"
  579. }
  580. },
  581. "resources": {
  582. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  583. "locale": "cs"
  584. },
  585. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  586. "locale": "de"
  587. },
  588. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  589. "locale": "es"
  590. },
  591. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  592. "locale": "fr"
  593. },
  594. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  595. "locale": "it"
  596. },
  597. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  598. "locale": "ja"
  599. },
  600. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  601. "locale": "ko"
  602. },
  603. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  604. "locale": "pl"
  605. },
  606. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  607. "locale": "pt-BR"
  608. },
  609. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  610. "locale": "ru"
  611. },
  612. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  613. "locale": "tr"
  614. },
  615. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  616. "locale": "zh-Hans"
  617. },
  618. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  619. "locale": "zh-Hant"
  620. }
  621. },
  622. "compile": {
  623. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {}
  624. }
  625. },
  626. "Microsoft.CodeAnalysis.CSharp.Workspaces/3.8.0": {
  627. "dependencies": {
  628. "Humanizer.Core": "2.8.26",
  629. "Microsoft.CodeAnalysis.CSharp": "3.8.0",
  630. "Microsoft.CodeAnalysis.Common": "3.8.0",
  631. "Microsoft.CodeAnalysis.Workspaces.Common": "3.8.0"
  632. },
  633. "runtime": {
  634. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {
  635. "assemblyVersion": "3.8.0.0",
  636. "fileVersion": "3.800.20.56202"
  637. }
  638. },
  639. "resources": {
  640. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  641. "locale": "cs"
  642. },
  643. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  644. "locale": "de"
  645. },
  646. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  647. "locale": "es"
  648. },
  649. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  650. "locale": "fr"
  651. },
  652. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  653. "locale": "it"
  654. },
  655. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  656. "locale": "ja"
  657. },
  658. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  659. "locale": "ko"
  660. },
  661. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  662. "locale": "pl"
  663. },
  664. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  665. "locale": "pt-BR"
  666. },
  667. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  668. "locale": "ru"
  669. },
  670. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  671. "locale": "tr"
  672. },
  673. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  674. "locale": "zh-Hans"
  675. },
  676. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  677. "locale": "zh-Hant"
  678. }
  679. },
  680. "compile": {
  681. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {}
  682. }
  683. },
  684. "Microsoft.CodeAnalysis.Razor/5.0.7": {
  685. "dependencies": {
  686. "Microsoft.AspNetCore.Razor.Language": "5.0.7",
  687. "Microsoft.CodeAnalysis.CSharp": "3.8.0",
  688. "Microsoft.CodeAnalysis.Common": "3.8.0"
  689. },
  690. "runtime": {
  691. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {
  692. "assemblyVersion": "5.0.7.0",
  693. "fileVersion": "5.0.721.26309"
  694. }
  695. },
  696. "compile": {
  697. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {}
  698. }
  699. },
  700. "Microsoft.CodeAnalysis.Workspaces.Common/3.8.0": {
  701. "dependencies": {
  702. "Microsoft.Bcl.AsyncInterfaces": "1.1.1",
  703. "Microsoft.CodeAnalysis.Common": "3.8.0",
  704. "System.Composition": "1.0.31"
  705. },
  706. "runtime": {
  707. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": {
  708. "assemblyVersion": "3.8.0.0",
  709. "fileVersion": "3.800.20.56202"
  710. }
  711. },
  712. "resources": {
  713. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  714. "locale": "cs"
  715. },
  716. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  717. "locale": "de"
  718. },
  719. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  720. "locale": "es"
  721. },
  722. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  723. "locale": "fr"
  724. },
  725. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  726. "locale": "it"
  727. },
  728. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  729. "locale": "ja"
  730. },
  731. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  732. "locale": "ko"
  733. },
  734. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  735. "locale": "pl"
  736. },
  737. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  738. "locale": "pt-BR"
  739. },
  740. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  741. "locale": "ru"
  742. },
  743. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  744. "locale": "tr"
  745. },
  746. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  747. "locale": "zh-Hans"
  748. },
  749. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  750. "locale": "zh-Hant"
  751. }
  752. },
  753. "compile": {
  754. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": {}
  755. }
  756. },
  757. "Microsoft.CSharp/4.7.0": {},
  758. "Microsoft.Data.SqlClient/2.0.1": {
  759. "dependencies": {
  760. "Microsoft.Data.SqlClient.SNI.runtime": "2.0.1",
  761. "Microsoft.Identity.Client": "4.14.0",
  762. "Microsoft.IdentityModel.JsonWebTokens": "5.6.0",
  763. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "5.6.0",
  764. "Microsoft.Win32.Registry": "4.7.0",
  765. "System.Configuration.ConfigurationManager": "4.7.0",
  766. "System.Diagnostics.DiagnosticSource": "5.0.1",
  767. "System.Runtime.Caching": "4.7.0",
  768. "System.Security.Principal.Windows": "4.7.0",
  769. "System.Text.Encoding.CodePages": "4.7.0"
  770. },
  771. "runtime": {
  772. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  773. "assemblyVersion": "2.0.20168.4",
  774. "fileVersion": "2.0.20168.4"
  775. }
  776. },
  777. "runtimeTargets": {
  778. "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  779. "rid": "unix",
  780. "assetType": "runtime",
  781. "assemblyVersion": "2.0.20168.4",
  782. "fileVersion": "2.0.20168.4"
  783. },
  784. "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  785. "rid": "win",
  786. "assetType": "runtime",
  787. "assemblyVersion": "2.0.20168.4",
  788. "fileVersion": "2.0.20168.4"
  789. }
  790. },
  791. "compile": {
  792. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {}
  793. }
  794. },
  795. "Microsoft.Data.SqlClient.SNI.runtime/2.0.1": {
  796. "runtimeTargets": {
  797. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": {
  798. "rid": "win-arm",
  799. "assetType": "native",
  800. "fileVersion": "2.0.1.0"
  801. },
  802. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.pdb": {
  803. "rid": "win-arm",
  804. "assetType": "native",
  805. "fileVersion": "0.0.0.0"
  806. },
  807. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": {
  808. "rid": "win-arm64",
  809. "assetType": "native",
  810. "fileVersion": "2.0.1.0"
  811. },
  812. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.pdb": {
  813. "rid": "win-arm64",
  814. "assetType": "native",
  815. "fileVersion": "0.0.0.0"
  816. },
  817. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": {
  818. "rid": "win-x64",
  819. "assetType": "native",
  820. "fileVersion": "2.0.1.0"
  821. },
  822. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.pdb": {
  823. "rid": "win-x64",
  824. "assetType": "native",
  825. "fileVersion": "0.0.0.0"
  826. },
  827. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": {
  828. "rid": "win-x86",
  829. "assetType": "native",
  830. "fileVersion": "2.0.1.0"
  831. },
  832. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.pdb": {
  833. "rid": "win-x86",
  834. "assetType": "native",
  835. "fileVersion": "0.0.0.0"
  836. }
  837. }
  838. },
  839. "Microsoft.EntityFrameworkCore/5.0.7": {
  840. "dependencies": {
  841. "Microsoft.EntityFrameworkCore.Abstractions": "5.0.7",
  842. "Microsoft.EntityFrameworkCore.Analyzers": "5.0.7",
  843. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  844. "Microsoft.Extensions.DependencyInjection": "5.0.1",
  845. "Microsoft.Extensions.Logging": "5.0.0",
  846. "System.Collections.Immutable": "5.0.0",
  847. "System.ComponentModel.Annotations": "5.0.0",
  848. "System.Diagnostics.DiagnosticSource": "5.0.1"
  849. },
  850. "runtime": {
  851. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  852. "assemblyVersion": "5.0.7.0",
  853. "fileVersion": "5.0.721.26102"
  854. }
  855. },
  856. "compile": {
  857. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {}
  858. }
  859. },
  860. "Microsoft.EntityFrameworkCore.Abstractions/5.0.7": {
  861. "runtime": {
  862. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  863. "assemblyVersion": "5.0.7.0",
  864. "fileVersion": "5.0.721.26102"
  865. }
  866. },
  867. "compile": {
  868. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
  869. }
  870. },
  871. "Microsoft.EntityFrameworkCore.Analyzers/5.0.7": {},
  872. "Microsoft.EntityFrameworkCore.Design/5.0.6": {
  873. "dependencies": {
  874. "Humanizer.Core": "2.8.26",
  875. "Microsoft.CSharp": "4.7.0",
  876. "Microsoft.EntityFrameworkCore.Relational": "5.0.7"
  877. }
  878. },
  879. "Microsoft.EntityFrameworkCore.Relational/5.0.7": {
  880. "dependencies": {
  881. "Microsoft.EntityFrameworkCore": "5.0.7",
  882. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  883. },
  884. "runtime": {
  885. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  886. "assemblyVersion": "5.0.7.0",
  887. "fileVersion": "5.0.721.26102"
  888. }
  889. },
  890. "compile": {
  891. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {}
  892. }
  893. },
  894. "Microsoft.EntityFrameworkCore.SqlServer/5.0.6": {
  895. "dependencies": {
  896. "Microsoft.Data.SqlClient": "2.0.1",
  897. "Microsoft.EntityFrameworkCore.Relational": "5.0.7"
  898. },
  899. "runtime": {
  900. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.SqlServer.dll": {
  901. "assemblyVersion": "5.0.6.0",
  902. "fileVersion": "5.0.621.21307"
  903. }
  904. },
  905. "compile": {
  906. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.SqlServer.dll": {}
  907. }
  908. },
  909. "Microsoft.EntityFrameworkCore.Tools/5.0.6": {
  910. "dependencies": {
  911. "Microsoft.EntityFrameworkCore.Design": "5.0.6"
  912. }
  913. },
  914. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  915. "dependencies": {
  916. "Microsoft.Extensions.Primitives": "5.0.0"
  917. }
  918. },
  919. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  920. "dependencies": {
  921. "Microsoft.Extensions.Caching.Abstractions": "5.0.0",
  922. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  923. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  924. "Microsoft.Extensions.Options": "5.0.0",
  925. "Microsoft.Extensions.Primitives": "5.0.0"
  926. }
  927. },
  928. "Microsoft.Extensions.Configuration/5.0.0": {
  929. "dependencies": {
  930. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  931. "Microsoft.Extensions.Primitives": "5.0.0"
  932. }
  933. },
  934. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  935. "dependencies": {
  936. "Microsoft.Extensions.Primitives": "5.0.0"
  937. }
  938. },
  939. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  940. "dependencies": {
  941. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  942. }
  943. },
  944. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  945. "dependencies": {
  946. "Microsoft.Extensions.Configuration": "5.0.0",
  947. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  948. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  949. "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
  950. "Microsoft.Extensions.Primitives": "5.0.0"
  951. }
  952. },
  953. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  954. "dependencies": {
  955. "Microsoft.Extensions.Configuration": "5.0.0",
  956. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  957. "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
  958. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
  959. }
  960. },
  961. "Microsoft.Extensions.DependencyInjection/5.0.1": {
  962. "dependencies": {
  963. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  964. },
  965. "runtime": {
  966. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
  967. "assemblyVersion": "5.0.0.1",
  968. "fileVersion": "5.0.120.57516"
  969. }
  970. },
  971. "compile": {
  972. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {}
  973. }
  974. },
  975. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {},
  976. "Microsoft.Extensions.DependencyModel/5.0.0": {
  977. "runtime": {
  978. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {
  979. "assemblyVersion": "5.0.0.0",
  980. "fileVersion": "5.0.20.51904"
  981. }
  982. },
  983. "compile": {
  984. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {}
  985. }
  986. },
  987. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  988. "dependencies": {
  989. "Microsoft.Extensions.Primitives": "5.0.0"
  990. }
  991. },
  992. "Microsoft.Extensions.FileProviders.Embedded/5.0.6": {
  993. "dependencies": {
  994. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
  995. },
  996. "runtime": {
  997. "lib/net5.0/Microsoft.Extensions.FileProviders.Embedded.dll": {
  998. "assemblyVersion": "5.0.0.0",
  999. "fileVersion": "5.0.621.22305"
  1000. }
  1001. },
  1002. "compile": {
  1003. "lib/net5.0/Microsoft.Extensions.FileProviders.Embedded.dll": {}
  1004. }
  1005. },
  1006. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  1007. "dependencies": {
  1008. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  1009. "Microsoft.Extensions.FileSystemGlobbing": "5.0.0",
  1010. "Microsoft.Extensions.Primitives": "5.0.0"
  1011. }
  1012. },
  1013. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {},
  1014. "Microsoft.Extensions.Hosting.Abstractions/3.1.8": {
  1015. "dependencies": {
  1016. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  1017. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  1018. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  1019. "Microsoft.Extensions.Logging.Abstractions": "5.0.0"
  1020. }
  1021. },
  1022. "Microsoft.Extensions.Identity.Core/5.0.6": {
  1023. "dependencies": {
  1024. "Microsoft.AspNetCore.Cryptography.KeyDerivation": "5.0.6",
  1025. "Microsoft.Extensions.Logging": "5.0.0",
  1026. "Microsoft.Extensions.Options": "5.0.0"
  1027. },
  1028. "runtime": {
  1029. "lib/net5.0/Microsoft.Extensions.Identity.Core.dll": {
  1030. "assemblyVersion": "5.0.0.0",
  1031. "fileVersion": "5.0.621.22305"
  1032. }
  1033. },
  1034. "compile": {
  1035. "lib/net5.0/Microsoft.Extensions.Identity.Core.dll": {}
  1036. }
  1037. },
  1038. "Microsoft.Extensions.Identity.Stores/5.0.6": {
  1039. "dependencies": {
  1040. "Microsoft.Extensions.Caching.Abstractions": "5.0.0",
  1041. "Microsoft.Extensions.Identity.Core": "5.0.6",
  1042. "Microsoft.Extensions.Logging": "5.0.0"
  1043. },
  1044. "runtime": {
  1045. "lib/net5.0/Microsoft.Extensions.Identity.Stores.dll": {
  1046. "assemblyVersion": "5.0.0.0",
  1047. "fileVersion": "5.0.621.22305"
  1048. }
  1049. },
  1050. "compile": {
  1051. "lib/net5.0/Microsoft.Extensions.Identity.Stores.dll": {}
  1052. }
  1053. },
  1054. "Microsoft.Extensions.Logging/5.0.0": {
  1055. "dependencies": {
  1056. "Microsoft.Extensions.DependencyInjection": "5.0.1",
  1057. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  1058. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  1059. "Microsoft.Extensions.Options": "5.0.0"
  1060. }
  1061. },
  1062. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {},
  1063. "Microsoft.Extensions.Options/5.0.0": {
  1064. "dependencies": {
  1065. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  1066. "Microsoft.Extensions.Primitives": "5.0.0"
  1067. }
  1068. },
  1069. "Microsoft.Extensions.Options.ConfigurationExtensions/2.0.0": {
  1070. "dependencies": {
  1071. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  1072. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  1073. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  1074. "Microsoft.Extensions.Options": "5.0.0"
  1075. }
  1076. },
  1077. "Microsoft.Extensions.Primitives/5.0.0": {},
  1078. "Microsoft.Identity.Client/4.14.0": {
  1079. "dependencies": {
  1080. "Microsoft.CSharp": "4.7.0",
  1081. "System.ComponentModel.TypeConverter": "4.3.0",
  1082. "System.Net.NameResolution": "4.3.0",
  1083. "System.Private.Uri": "4.3.2",
  1084. "System.Runtime.Serialization.Formatters": "4.3.0",
  1085. "System.Runtime.Serialization.Json": "4.3.0",
  1086. "System.Runtime.Serialization.Primitives": "4.3.0",
  1087. "System.Security.SecureString": "4.3.0",
  1088. "System.Xml.XDocument": "4.3.0"
  1089. },
  1090. "runtime": {
  1091. "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": {
  1092. "assemblyVersion": "4.14.0.0",
  1093. "fileVersion": "4.14.0.0"
  1094. }
  1095. }
  1096. },
  1097. "Microsoft.IdentityModel.JsonWebTokens/5.6.0": {
  1098. "dependencies": {
  1099. "Microsoft.IdentityModel.Tokens": "5.6.0",
  1100. "Newtonsoft.Json": "13.0.1"
  1101. },
  1102. "runtime": {
  1103. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  1104. "assemblyVersion": "5.6.0.0",
  1105. "fileVersion": "5.6.0.61018"
  1106. }
  1107. },
  1108. "compile": {
  1109. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {}
  1110. }
  1111. },
  1112. "Microsoft.IdentityModel.Logging/5.6.0": {
  1113. "runtime": {
  1114. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  1115. "assemblyVersion": "5.6.0.0",
  1116. "fileVersion": "5.6.0.61018"
  1117. }
  1118. },
  1119. "compile": {
  1120. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {}
  1121. }
  1122. },
  1123. "Microsoft.IdentityModel.Protocols/5.6.0": {
  1124. "dependencies": {
  1125. "Microsoft.IdentityModel.Logging": "5.6.0",
  1126. "Microsoft.IdentityModel.Tokens": "5.6.0"
  1127. },
  1128. "runtime": {
  1129. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {
  1130. "assemblyVersion": "5.6.0.0",
  1131. "fileVersion": "5.6.0.61018"
  1132. }
  1133. },
  1134. "compile": {
  1135. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {}
  1136. }
  1137. },
  1138. "Microsoft.IdentityModel.Protocols.OpenIdConnect/5.6.0": {
  1139. "dependencies": {
  1140. "Microsoft.IdentityModel.Protocols": "5.6.0",
  1141. "Newtonsoft.Json": "13.0.1",
  1142. "System.IdentityModel.Tokens.Jwt": "5.6.0"
  1143. },
  1144. "runtime": {
  1145. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  1146. "assemblyVersion": "5.6.0.0",
  1147. "fileVersion": "5.6.0.61018"
  1148. }
  1149. },
  1150. "compile": {
  1151. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {}
  1152. }
  1153. },
  1154. "Microsoft.IdentityModel.Tokens/5.6.0": {
  1155. "dependencies": {
  1156. "Microsoft.IdentityModel.Logging": "5.6.0",
  1157. "Newtonsoft.Json": "13.0.1",
  1158. "System.Security.Cryptography.Cng": "4.7.0"
  1159. },
  1160. "runtime": {
  1161. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  1162. "assemblyVersion": "5.6.0.0",
  1163. "fileVersion": "5.6.0.61018"
  1164. }
  1165. },
  1166. "compile": {
  1167. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {}
  1168. }
  1169. },
  1170. "Microsoft.NETCore.Platforms/3.1.0": {},
  1171. "Microsoft.NETCore.Targets/1.1.3": {},
  1172. "Microsoft.VisualStudio.Web.CodeGeneration/5.0.2": {
  1173. "dependencies": {
  1174. "Microsoft.Extensions.DependencyInjection": "5.0.1",
  1175. "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "5.0.2"
  1176. },
  1177. "runtime": {
  1178. "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {
  1179. "assemblyVersion": "5.0.2.0",
  1180. "fileVersion": "5.0.221.10809"
  1181. }
  1182. },
  1183. "compile": {
  1184. "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {}
  1185. }
  1186. },
  1187. "Microsoft.VisualStudio.Web.CodeGeneration.Contracts/5.0.2": {
  1188. "dependencies": {
  1189. "Newtonsoft.Json": "13.0.1",
  1190. "System.Collections.Immutable": "5.0.0"
  1191. },
  1192. "runtime": {
  1193. "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll": {
  1194. "assemblyVersion": "5.0.2.0",
  1195. "fileVersion": "5.0.221.10809"
  1196. }
  1197. },
  1198. "compile": {
  1199. "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll": {}
  1200. }
  1201. },
  1202. "Microsoft.VisualStudio.Web.CodeGeneration.Core/5.0.2": {
  1203. "dependencies": {
  1204. "Microsoft.Extensions.DependencyInjection": "5.0.1",
  1205. "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "5.0.2",
  1206. "Newtonsoft.Json": "13.0.1"
  1207. },
  1208. "runtime": {
  1209. "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {
  1210. "assemblyVersion": "5.0.2.0",
  1211. "fileVersion": "5.0.221.10809"
  1212. }
  1213. },
  1214. "compile": {
  1215. "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {}
  1216. }
  1217. },
  1218. "Microsoft.VisualStudio.Web.CodeGeneration.Design/5.0.2": {
  1219. "dependencies": {
  1220. "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "5.0.2"
  1221. },
  1222. "runtime": {
  1223. "lib/net5.0/dotnet-aspnet-codegenerator-design.dll": {
  1224. "assemblyVersion": "5.0.2.0",
  1225. "fileVersion": "5.0.221.10809"
  1226. }
  1227. },
  1228. "runtimeTargets": {
  1229. "runtimes/win-arm/lib/net5.0/dotnet-aspnet-codegenerator-design.exe": {
  1230. "rid": "win-arm",
  1231. "assetType": "runtime",
  1232. "fileVersion": "5.0.221.10809"
  1233. },
  1234. "runtimes/win-arm64/lib/net5.0/dotnet-aspnet-codegenerator-design.exe": {
  1235. "rid": "win-arm64",
  1236. "assetType": "runtime",
  1237. "fileVersion": "5.0.221.10809"
  1238. }
  1239. },
  1240. "compile": {
  1241. "lib/net5.0/dotnet-aspnet-codegenerator-design.dll": {}
  1242. }
  1243. },
  1244. "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/5.0.2": {
  1245. "dependencies": {
  1246. "Microsoft.VisualStudio.Web.CodeGeneration.Core": "5.0.2"
  1247. },
  1248. "runtime": {
  1249. "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {
  1250. "assemblyVersion": "5.0.2.0",
  1251. "fileVersion": "5.0.221.10809"
  1252. }
  1253. },
  1254. "compile": {
  1255. "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {}
  1256. }
  1257. },
  1258. "Microsoft.VisualStudio.Web.CodeGeneration.Templating/5.0.2": {
  1259. "dependencies": {
  1260. "Microsoft.AspNetCore.Razor.Language": "5.0.7",
  1261. "Microsoft.AspNetCore.Razor.Runtime": "2.2.0",
  1262. "Microsoft.CodeAnalysis.CSharp": "3.8.0",
  1263. "Microsoft.CodeAnalysis.Razor": "5.0.7",
  1264. "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "5.0.2"
  1265. },
  1266. "runtime": {
  1267. "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {
  1268. "assemblyVersion": "5.0.2.0",
  1269. "fileVersion": "5.0.221.10809"
  1270. }
  1271. },
  1272. "compile": {
  1273. "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {}
  1274. }
  1275. },
  1276. "Microsoft.VisualStudio.Web.CodeGeneration.Utils/5.0.2": {
  1277. "dependencies": {
  1278. "Microsoft.CodeAnalysis.CSharp.Workspaces": "3.8.0",
  1279. "Microsoft.VisualStudio.Web.CodeGeneration.Contracts": "5.0.2",
  1280. "Newtonsoft.Json": "13.0.1"
  1281. },
  1282. "runtime": {
  1283. "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {
  1284. "assemblyVersion": "5.0.2.0",
  1285. "fileVersion": "5.0.221.10809"
  1286. }
  1287. },
  1288. "compile": {
  1289. "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {}
  1290. }
  1291. },
  1292. "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/5.0.2": {
  1293. "dependencies": {
  1294. "Microsoft.VisualStudio.Web.CodeGeneration": "5.0.2"
  1295. },
  1296. "runtime": {
  1297. "lib/net5.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {
  1298. "assemblyVersion": "5.0.2.0",
  1299. "fileVersion": "5.0.221.10809"
  1300. }
  1301. },
  1302. "compile": {
  1303. "lib/net5.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {}
  1304. }
  1305. },
  1306. "Microsoft.Win32.Registry/4.7.0": {
  1307. "dependencies": {
  1308. "System.Security.AccessControl": "4.7.0",
  1309. "System.Security.Principal.Windows": "4.7.0"
  1310. }
  1311. },
  1312. "Microsoft.Win32.SystemEvents/4.7.0": {
  1313. "dependencies": {
  1314. "Microsoft.NETCore.Platforms": "3.1.0"
  1315. }
  1316. },
  1317. "MimeKit/2.13.0": {
  1318. "dependencies": {
  1319. "Portable.BouncyCastle": "1.8.10",
  1320. "System.Buffers": "4.5.1",
  1321. "System.Reflection.TypeExtensions": "4.4.0",
  1322. "System.Security.Cryptography.Pkcs": "4.7.0",
  1323. "System.Text.Encoding.CodePages": "4.7.0"
  1324. },
  1325. "runtime": {
  1326. "lib/net50/MimeKit.dll": {
  1327. "assemblyVersion": "2.13.0.0",
  1328. "fileVersion": "2.13.0.0"
  1329. }
  1330. },
  1331. "compile": {
  1332. "lib/net50/MimeKit.dll": {}
  1333. }
  1334. },
  1335. "Newtonsoft.Json/13.0.1": {
  1336. "runtime": {
  1337. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1338. "assemblyVersion": "13.0.0.0",
  1339. "fileVersion": "13.0.1.25517"
  1340. }
  1341. },
  1342. "compile": {
  1343. "lib/netstandard2.0/Newtonsoft.Json.dll": {}
  1344. }
  1345. },
  1346. "Npgsql/5.0.7": {
  1347. "dependencies": {
  1348. "System.Runtime.CompilerServices.Unsafe": "4.7.1"
  1349. },
  1350. "runtime": {
  1351. "lib/net5.0/Npgsql.dll": {
  1352. "assemblyVersion": "5.0.7.0",
  1353. "fileVersion": "5.0.7.0"
  1354. }
  1355. },
  1356. "compile": {
  1357. "lib/net5.0/Npgsql.dll": {}
  1358. }
  1359. },
  1360. "Npgsql.EntityFrameworkCore.PostgreSQL/5.0.7": {
  1361. "dependencies": {
  1362. "Microsoft.EntityFrameworkCore": "5.0.7",
  1363. "Microsoft.EntityFrameworkCore.Abstractions": "5.0.7",
  1364. "Microsoft.EntityFrameworkCore.Relational": "5.0.7",
  1365. "Npgsql": "5.0.7"
  1366. },
  1367. "runtime": {
  1368. "lib/netstandard2.1/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {
  1369. "assemblyVersion": "5.0.7.0",
  1370. "fileVersion": "5.0.7.0"
  1371. }
  1372. },
  1373. "compile": {
  1374. "lib/netstandard2.1/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {}
  1375. }
  1376. },
  1377. "Portable.BouncyCastle/1.8.10": {
  1378. "runtime": {
  1379. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  1380. "assemblyVersion": "1.8.10.0",
  1381. "fileVersion": "1.8.10.1"
  1382. }
  1383. },
  1384. "compile": {
  1385. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {}
  1386. }
  1387. },
  1388. "runtime.native.System/4.3.0": {
  1389. "dependencies": {
  1390. "Microsoft.NETCore.Platforms": "3.1.0",
  1391. "Microsoft.NETCore.Targets": "1.1.3"
  1392. }
  1393. },
  1394. "Serilog/2.10.0": {
  1395. "runtime": {
  1396. "lib/netstandard2.1/Serilog.dll": {
  1397. "assemblyVersion": "2.0.0.0",
  1398. "fileVersion": "2.10.0.0"
  1399. }
  1400. },
  1401. "compile": {
  1402. "lib/netstandard2.1/Serilog.dll": {}
  1403. }
  1404. },
  1405. "Serilog.AspNetCore/4.1.0": {
  1406. "dependencies": {
  1407. "Microsoft.Extensions.DependencyInjection": "5.0.1",
  1408. "Microsoft.Extensions.Logging": "5.0.0",
  1409. "Serilog": "2.10.0",
  1410. "Serilog.Extensions.Hosting": "4.1.2",
  1411. "Serilog.Formatting.Compact": "1.1.0",
  1412. "Serilog.Settings.Configuration": "3.1.0",
  1413. "Serilog.Sinks.Console": "3.1.1",
  1414. "Serilog.Sinks.Debug": "2.0.0",
  1415. "Serilog.Sinks.File": "4.1.0"
  1416. },
  1417. "runtime": {
  1418. "lib/net5.0/Serilog.AspNetCore.dll": {
  1419. "assemblyVersion": "2.0.0.0",
  1420. "fileVersion": "4.1.0.0"
  1421. }
  1422. },
  1423. "compile": {
  1424. "lib/net5.0/Serilog.AspNetCore.dll": {}
  1425. }
  1426. },
  1427. "Serilog.Extensions.Hosting/4.1.2": {
  1428. "dependencies": {
  1429. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  1430. "Microsoft.Extensions.Hosting.Abstractions": "3.1.8",
  1431. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  1432. "Serilog": "2.10.0",
  1433. "Serilog.Extensions.Logging": "3.0.1"
  1434. },
  1435. "runtime": {
  1436. "lib/netstandard2.1/Serilog.Extensions.Hosting.dll": {
  1437. "assemblyVersion": "2.0.0.0",
  1438. "fileVersion": "4.1.2.0"
  1439. }
  1440. },
  1441. "compile": {
  1442. "lib/netstandard2.1/Serilog.Extensions.Hosting.dll": {}
  1443. }
  1444. },
  1445. "Serilog.Extensions.Logging/3.0.1": {
  1446. "dependencies": {
  1447. "Microsoft.Extensions.Logging": "5.0.0",
  1448. "Serilog": "2.10.0"
  1449. },
  1450. "runtime": {
  1451. "lib/netstandard2.0/Serilog.Extensions.Logging.dll": {
  1452. "assemblyVersion": "2.0.0.0",
  1453. "fileVersion": "3.0.1.0"
  1454. }
  1455. },
  1456. "compile": {
  1457. "lib/netstandard2.0/Serilog.Extensions.Logging.dll": {}
  1458. }
  1459. },
  1460. "Serilog.Formatting.Compact/1.1.0": {
  1461. "dependencies": {
  1462. "Serilog": "2.10.0"
  1463. },
  1464. "runtime": {
  1465. "lib/netstandard2.0/Serilog.Formatting.Compact.dll": {
  1466. "assemblyVersion": "1.1.0.0",
  1467. "fileVersion": "1.1.0.0"
  1468. }
  1469. },
  1470. "compile": {
  1471. "lib/netstandard2.0/Serilog.Formatting.Compact.dll": {}
  1472. }
  1473. },
  1474. "Serilog.Settings.Configuration/3.1.0": {
  1475. "dependencies": {
  1476. "Microsoft.Extensions.DependencyModel": "5.0.0",
  1477. "Microsoft.Extensions.Options.ConfigurationExtensions": "2.0.0",
  1478. "Serilog": "2.10.0"
  1479. },
  1480. "runtime": {
  1481. "lib/netstandard2.0/Serilog.Settings.Configuration.dll": {
  1482. "assemblyVersion": "3.1.0.0",
  1483. "fileVersion": "3.1.0.0"
  1484. }
  1485. },
  1486. "compile": {
  1487. "lib/netstandard2.0/Serilog.Settings.Configuration.dll": {}
  1488. }
  1489. },
  1490. "Serilog.Sinks.Console/3.1.1": {
  1491. "dependencies": {
  1492. "Serilog": "2.10.0",
  1493. "System.Console": "4.3.0",
  1494. "System.Runtime.InteropServices": "4.3.0",
  1495. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0"
  1496. },
  1497. "runtime": {
  1498. "lib/netcoreapp1.1/Serilog.Sinks.Console.dll": {
  1499. "assemblyVersion": "3.1.1.0",
  1500. "fileVersion": "3.1.1.0"
  1501. }
  1502. },
  1503. "compile": {
  1504. "lib/netcoreapp1.1/Serilog.Sinks.Console.dll": {}
  1505. }
  1506. },
  1507. "Serilog.Sinks.Debug/2.0.0": {
  1508. "dependencies": {
  1509. "Serilog": "2.10.0"
  1510. },
  1511. "runtime": {
  1512. "lib/netstandard2.1/Serilog.Sinks.Debug.dll": {
  1513. "assemblyVersion": "2.0.0.0",
  1514. "fileVersion": "2.0.0.0"
  1515. }
  1516. },
  1517. "compile": {
  1518. "lib/netstandard2.1/Serilog.Sinks.Debug.dll": {}
  1519. }
  1520. },
  1521. "Serilog.Sinks.File/4.1.0": {
  1522. "dependencies": {
  1523. "Serilog": "2.10.0",
  1524. "System.IO.FileSystem": "4.3.0",
  1525. "System.Text.Encoding.Extensions": "4.3.0",
  1526. "System.Threading.Timer": "4.0.1"
  1527. },
  1528. "runtime": {
  1529. "lib/netstandard2.0/Serilog.Sinks.File.dll": {
  1530. "assemblyVersion": "2.0.0.0",
  1531. "fileVersion": "4.1.0.0"
  1532. }
  1533. },
  1534. "compile": {
  1535. "lib/netstandard2.0/Serilog.Sinks.File.dll": {}
  1536. }
  1537. },
  1538. "System.Buffers/4.5.1": {},
  1539. "System.Collections/4.3.0": {
  1540. "dependencies": {
  1541. "Microsoft.NETCore.Platforms": "3.1.0",
  1542. "Microsoft.NETCore.Targets": "1.1.3",
  1543. "System.Runtime": "4.3.0"
  1544. }
  1545. },
  1546. "System.Collections.Concurrent/4.3.0": {
  1547. "dependencies": {
  1548. "System.Collections": "4.3.0",
  1549. "System.Diagnostics.Debug": "4.3.0",
  1550. "System.Diagnostics.Tracing": "4.3.0",
  1551. "System.Globalization": "4.3.0",
  1552. "System.Reflection": "4.3.0",
  1553. "System.Resources.ResourceManager": "4.3.0",
  1554. "System.Runtime": "4.3.0",
  1555. "System.Runtime.Extensions": "4.3.0",
  1556. "System.Threading": "4.3.0",
  1557. "System.Threading.Tasks": "4.3.0"
  1558. }
  1559. },
  1560. "System.Collections.Immutable/5.0.0": {},
  1561. "System.Collections.NonGeneric/4.3.0": {
  1562. "dependencies": {
  1563. "System.Diagnostics.Debug": "4.3.0",
  1564. "System.Globalization": "4.3.0",
  1565. "System.Resources.ResourceManager": "4.3.0",
  1566. "System.Runtime": "4.3.0",
  1567. "System.Runtime.Extensions": "4.3.0",
  1568. "System.Threading": "4.3.0"
  1569. }
  1570. },
  1571. "System.Collections.Specialized/4.3.0": {
  1572. "dependencies": {
  1573. "System.Collections.NonGeneric": "4.3.0",
  1574. "System.Globalization": "4.3.0",
  1575. "System.Globalization.Extensions": "4.3.0",
  1576. "System.Resources.ResourceManager": "4.3.0",
  1577. "System.Runtime": "4.3.0",
  1578. "System.Runtime.Extensions": "4.3.0",
  1579. "System.Threading": "4.3.0"
  1580. }
  1581. },
  1582. "System.ComponentModel/4.3.0": {
  1583. "dependencies": {
  1584. "System.Runtime": "4.3.0"
  1585. }
  1586. },
  1587. "System.ComponentModel.Annotations/5.0.0": {},
  1588. "System.ComponentModel.Primitives/4.3.0": {
  1589. "dependencies": {
  1590. "System.ComponentModel": "4.3.0",
  1591. "System.Resources.ResourceManager": "4.3.0",
  1592. "System.Runtime": "4.3.0"
  1593. }
  1594. },
  1595. "System.ComponentModel.TypeConverter/4.3.0": {
  1596. "dependencies": {
  1597. "System.Collections": "4.3.0",
  1598. "System.Collections.NonGeneric": "4.3.0",
  1599. "System.Collections.Specialized": "4.3.0",
  1600. "System.ComponentModel": "4.3.0",
  1601. "System.ComponentModel.Primitives": "4.3.0",
  1602. "System.Globalization": "4.3.0",
  1603. "System.Linq": "4.3.0",
  1604. "System.Reflection": "4.3.0",
  1605. "System.Reflection.Extensions": "4.3.0",
  1606. "System.Reflection.Primitives": "4.3.0",
  1607. "System.Reflection.TypeExtensions": "4.4.0",
  1608. "System.Resources.ResourceManager": "4.3.0",
  1609. "System.Runtime": "4.3.0",
  1610. "System.Runtime.Extensions": "4.3.0",
  1611. "System.Threading": "4.3.0"
  1612. }
  1613. },
  1614. "System.Composition/1.0.31": {
  1615. "dependencies": {
  1616. "System.Composition.AttributedModel": "1.0.31",
  1617. "System.Composition.Convention": "1.0.31",
  1618. "System.Composition.Hosting": "1.0.31",
  1619. "System.Composition.Runtime": "1.0.31",
  1620. "System.Composition.TypedParts": "1.0.31"
  1621. }
  1622. },
  1623. "System.Composition.AttributedModel/1.0.31": {
  1624. "dependencies": {
  1625. "System.Reflection": "4.3.0",
  1626. "System.Runtime": "4.3.0"
  1627. },
  1628. "runtime": {
  1629. "lib/netstandard1.0/System.Composition.AttributedModel.dll": {
  1630. "assemblyVersion": "1.0.31.0",
  1631. "fileVersion": "4.6.24705.1"
  1632. }
  1633. },
  1634. "compile": {
  1635. "lib/netstandard1.0/System.Composition.AttributedModel.dll": {}
  1636. }
  1637. },
  1638. "System.Composition.Convention/1.0.31": {
  1639. "dependencies": {
  1640. "System.Collections": "4.3.0",
  1641. "System.Composition.AttributedModel": "1.0.31",
  1642. "System.Diagnostics.Debug": "4.3.0",
  1643. "System.Diagnostics.Tools": "4.3.0",
  1644. "System.Globalization": "4.3.0",
  1645. "System.Linq": "4.3.0",
  1646. "System.Linq.Expressions": "4.3.0",
  1647. "System.Reflection": "4.3.0",
  1648. "System.Reflection.Extensions": "4.3.0",
  1649. "System.Resources.ResourceManager": "4.3.0",
  1650. "System.Runtime": "4.3.0",
  1651. "System.Threading": "4.3.0"
  1652. },
  1653. "runtime": {
  1654. "lib/netstandard1.0/System.Composition.Convention.dll": {
  1655. "assemblyVersion": "1.0.31.0",
  1656. "fileVersion": "4.6.24705.1"
  1657. }
  1658. },
  1659. "compile": {
  1660. "lib/netstandard1.0/System.Composition.Convention.dll": {}
  1661. }
  1662. },
  1663. "System.Composition.Hosting/1.0.31": {
  1664. "dependencies": {
  1665. "System.Collections": "4.3.0",
  1666. "System.Composition.Runtime": "1.0.31",
  1667. "System.Diagnostics.Debug": "4.3.0",
  1668. "System.Diagnostics.Tools": "4.3.0",
  1669. "System.Globalization": "4.3.0",
  1670. "System.Linq": "4.3.0",
  1671. "System.Linq.Expressions": "4.3.0",
  1672. "System.ObjectModel": "4.3.0",
  1673. "System.Reflection": "4.3.0",
  1674. "System.Reflection.Extensions": "4.3.0",
  1675. "System.Resources.ResourceManager": "4.3.0",
  1676. "System.Runtime": "4.3.0",
  1677. "System.Threading": "4.3.0"
  1678. },
  1679. "runtime": {
  1680. "lib/netstandard1.0/System.Composition.Hosting.dll": {
  1681. "assemblyVersion": "1.0.31.0",
  1682. "fileVersion": "4.6.24705.1"
  1683. }
  1684. },
  1685. "compile": {
  1686. "lib/netstandard1.0/System.Composition.Hosting.dll": {}
  1687. }
  1688. },
  1689. "System.Composition.Runtime/1.0.31": {
  1690. "dependencies": {
  1691. "System.Collections": "4.3.0",
  1692. "System.Diagnostics.Debug": "4.3.0",
  1693. "System.Diagnostics.Tools": "4.3.0",
  1694. "System.Globalization": "4.3.0",
  1695. "System.Linq": "4.3.0",
  1696. "System.Reflection": "4.3.0",
  1697. "System.Resources.ResourceManager": "4.3.0",
  1698. "System.Runtime": "4.3.0"
  1699. },
  1700. "runtime": {
  1701. "lib/netstandard1.0/System.Composition.Runtime.dll": {
  1702. "assemblyVersion": "1.0.31.0",
  1703. "fileVersion": "4.6.24705.1"
  1704. }
  1705. },
  1706. "compile": {
  1707. "lib/netstandard1.0/System.Composition.Runtime.dll": {}
  1708. }
  1709. },
  1710. "System.Composition.TypedParts/1.0.31": {
  1711. "dependencies": {
  1712. "System.Collections": "4.3.0",
  1713. "System.Composition.AttributedModel": "1.0.31",
  1714. "System.Composition.Hosting": "1.0.31",
  1715. "System.Composition.Runtime": "1.0.31",
  1716. "System.Diagnostics.Debug": "4.3.0",
  1717. "System.Diagnostics.Tools": "4.3.0",
  1718. "System.Globalization": "4.3.0",
  1719. "System.Linq": "4.3.0",
  1720. "System.Linq.Expressions": "4.3.0",
  1721. "System.Reflection": "4.3.0",
  1722. "System.Reflection.Extensions": "4.3.0",
  1723. "System.Resources.ResourceManager": "4.3.0",
  1724. "System.Runtime": "4.3.0",
  1725. "System.Runtime.Extensions": "4.3.0"
  1726. },
  1727. "runtime": {
  1728. "lib/netstandard1.0/System.Composition.TypedParts.dll": {
  1729. "assemblyVersion": "1.0.31.0",
  1730. "fileVersion": "4.6.24705.1"
  1731. }
  1732. },
  1733. "compile": {
  1734. "lib/netstandard1.0/System.Composition.TypedParts.dll": {}
  1735. }
  1736. },
  1737. "System.Configuration.ConfigurationManager/4.7.0": {
  1738. "dependencies": {
  1739. "System.Security.Cryptography.ProtectedData": "4.7.0",
  1740. "System.Security.Permissions": "4.7.0"
  1741. },
  1742. "runtime": {
  1743. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1744. "assemblyVersion": "4.0.3.0",
  1745. "fileVersion": "4.700.19.56404"
  1746. }
  1747. }
  1748. },
  1749. "System.Console/4.3.0": {
  1750. "dependencies": {
  1751. "Microsoft.NETCore.Platforms": "3.1.0",
  1752. "Microsoft.NETCore.Targets": "1.1.3",
  1753. "System.IO": "4.3.0",
  1754. "System.Runtime": "4.3.0",
  1755. "System.Text.Encoding": "4.3.0"
  1756. }
  1757. },
  1758. "System.Diagnostics.Debug/4.3.0": {
  1759. "dependencies": {
  1760. "Microsoft.NETCore.Platforms": "3.1.0",
  1761. "Microsoft.NETCore.Targets": "1.1.3",
  1762. "System.Runtime": "4.3.0"
  1763. }
  1764. },
  1765. "System.Diagnostics.DiagnosticSource/5.0.1": {
  1766. "runtime": {
  1767. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  1768. "assemblyVersion": "5.0.0.0",
  1769. "fileVersion": "5.0.220.61120"
  1770. }
  1771. },
  1772. "compile": {
  1773. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {}
  1774. }
  1775. },
  1776. "System.Diagnostics.Tools/4.3.0": {
  1777. "dependencies": {
  1778. "Microsoft.NETCore.Platforms": "3.1.0",
  1779. "Microsoft.NETCore.Targets": "1.1.3",
  1780. "System.Runtime": "4.3.0"
  1781. }
  1782. },
  1783. "System.Diagnostics.Tracing/4.3.0": {
  1784. "dependencies": {
  1785. "Microsoft.NETCore.Platforms": "3.1.0",
  1786. "Microsoft.NETCore.Targets": "1.1.3",
  1787. "System.Runtime": "4.3.0"
  1788. }
  1789. },
  1790. "System.Drawing.Common/4.7.0": {
  1791. "dependencies": {
  1792. "Microsoft.NETCore.Platforms": "3.1.0",
  1793. "Microsoft.Win32.SystemEvents": "4.7.0"
  1794. }
  1795. },
  1796. "System.Globalization/4.3.0": {
  1797. "dependencies": {
  1798. "Microsoft.NETCore.Platforms": "3.1.0",
  1799. "Microsoft.NETCore.Targets": "1.1.3",
  1800. "System.Runtime": "4.3.0"
  1801. }
  1802. },
  1803. "System.Globalization.Extensions/4.3.0": {
  1804. "dependencies": {
  1805. "Microsoft.NETCore.Platforms": "3.1.0",
  1806. "System.Globalization": "4.3.0",
  1807. "System.Resources.ResourceManager": "4.3.0",
  1808. "System.Runtime": "4.3.0",
  1809. "System.Runtime.Extensions": "4.3.0",
  1810. "System.Runtime.InteropServices": "4.3.0"
  1811. }
  1812. },
  1813. "System.IdentityModel.Tokens.Jwt/5.6.0": {
  1814. "dependencies": {
  1815. "Microsoft.IdentityModel.JsonWebTokens": "5.6.0",
  1816. "Microsoft.IdentityModel.Tokens": "5.6.0",
  1817. "Newtonsoft.Json": "13.0.1"
  1818. },
  1819. "runtime": {
  1820. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  1821. "assemblyVersion": "5.6.0.0",
  1822. "fileVersion": "5.6.0.61018"
  1823. }
  1824. },
  1825. "compile": {
  1826. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {}
  1827. }
  1828. },
  1829. "System.IO/4.3.0": {
  1830. "dependencies": {
  1831. "Microsoft.NETCore.Platforms": "3.1.0",
  1832. "Microsoft.NETCore.Targets": "1.1.3",
  1833. "System.Runtime": "4.3.0",
  1834. "System.Text.Encoding": "4.3.0",
  1835. "System.Threading.Tasks": "4.3.0"
  1836. }
  1837. },
  1838. "System.IO.FileSystem/4.3.0": {
  1839. "dependencies": {
  1840. "Microsoft.NETCore.Platforms": "3.1.0",
  1841. "Microsoft.NETCore.Targets": "1.1.3",
  1842. "System.IO": "4.3.0",
  1843. "System.IO.FileSystem.Primitives": "4.3.0",
  1844. "System.Runtime": "4.3.0",
  1845. "System.Runtime.Handles": "4.3.0",
  1846. "System.Text.Encoding": "4.3.0",
  1847. "System.Threading.Tasks": "4.3.0"
  1848. }
  1849. },
  1850. "System.IO.FileSystem.Primitives/4.3.0": {
  1851. "dependencies": {
  1852. "System.Runtime": "4.3.0"
  1853. }
  1854. },
  1855. "System.Linq/4.3.0": {
  1856. "dependencies": {
  1857. "System.Collections": "4.3.0",
  1858. "System.Diagnostics.Debug": "4.3.0",
  1859. "System.Resources.ResourceManager": "4.3.0",
  1860. "System.Runtime": "4.3.0",
  1861. "System.Runtime.Extensions": "4.3.0"
  1862. }
  1863. },
  1864. "System.Linq.Expressions/4.3.0": {
  1865. "dependencies": {
  1866. "System.Collections": "4.3.0",
  1867. "System.Diagnostics.Debug": "4.3.0",
  1868. "System.Globalization": "4.3.0",
  1869. "System.IO": "4.3.0",
  1870. "System.Linq": "4.3.0",
  1871. "System.ObjectModel": "4.3.0",
  1872. "System.Reflection": "4.3.0",
  1873. "System.Reflection.Emit": "4.7.0",
  1874. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1875. "System.Reflection.Emit.Lightweight": "4.3.0",
  1876. "System.Reflection.Extensions": "4.3.0",
  1877. "System.Reflection.Primitives": "4.3.0",
  1878. "System.Reflection.TypeExtensions": "4.4.0",
  1879. "System.Resources.ResourceManager": "4.3.0",
  1880. "System.Runtime": "4.3.0",
  1881. "System.Runtime.Extensions": "4.3.0",
  1882. "System.Threading": "4.3.0"
  1883. }
  1884. },
  1885. "System.Memory/4.5.4": {},
  1886. "System.Net.NameResolution/4.3.0": {
  1887. "dependencies": {
  1888. "Microsoft.NETCore.Platforms": "3.1.0",
  1889. "System.Collections": "4.3.0",
  1890. "System.Diagnostics.Tracing": "4.3.0",
  1891. "System.Globalization": "4.3.0",
  1892. "System.Net.Primitives": "4.3.0",
  1893. "System.Resources.ResourceManager": "4.3.0",
  1894. "System.Runtime": "4.3.0",
  1895. "System.Runtime.Extensions": "4.3.0",
  1896. "System.Runtime.Handles": "4.3.0",
  1897. "System.Runtime.InteropServices": "4.3.0",
  1898. "System.Security.Principal.Windows": "4.7.0",
  1899. "System.Threading": "4.3.0",
  1900. "System.Threading.Tasks": "4.3.0",
  1901. "runtime.native.System": "4.3.0"
  1902. }
  1903. },
  1904. "System.Net.Primitives/4.3.0": {
  1905. "dependencies": {
  1906. "Microsoft.NETCore.Platforms": "3.1.0",
  1907. "Microsoft.NETCore.Targets": "1.1.3",
  1908. "System.Runtime": "4.3.0",
  1909. "System.Runtime.Handles": "4.3.0"
  1910. }
  1911. },
  1912. "System.ObjectModel/4.3.0": {
  1913. "dependencies": {
  1914. "System.Collections": "4.3.0",
  1915. "System.Diagnostics.Debug": "4.3.0",
  1916. "System.Resources.ResourceManager": "4.3.0",
  1917. "System.Runtime": "4.3.0",
  1918. "System.Threading": "4.3.0"
  1919. }
  1920. },
  1921. "System.Private.DataContractSerialization/4.3.0": {
  1922. "dependencies": {
  1923. "System.Collections": "4.3.0",
  1924. "System.Collections.Concurrent": "4.3.0",
  1925. "System.Diagnostics.Debug": "4.3.0",
  1926. "System.Globalization": "4.3.0",
  1927. "System.IO": "4.3.0",
  1928. "System.Linq": "4.3.0",
  1929. "System.Reflection": "4.3.0",
  1930. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1931. "System.Reflection.Emit.Lightweight": "4.3.0",
  1932. "System.Reflection.Extensions": "4.3.0",
  1933. "System.Reflection.Primitives": "4.3.0",
  1934. "System.Reflection.TypeExtensions": "4.4.0",
  1935. "System.Resources.ResourceManager": "4.3.0",
  1936. "System.Runtime": "4.3.0",
  1937. "System.Runtime.Extensions": "4.3.0",
  1938. "System.Runtime.Serialization.Primitives": "4.3.0",
  1939. "System.Text.Encoding": "4.3.0",
  1940. "System.Text.Encoding.Extensions": "4.3.0",
  1941. "System.Text.RegularExpressions": "4.3.0",
  1942. "System.Threading": "4.3.0",
  1943. "System.Threading.Tasks": "4.3.0",
  1944. "System.Xml.ReaderWriter": "4.3.0",
  1945. "System.Xml.XDocument": "4.3.0",
  1946. "System.Xml.XmlDocument": "4.3.0",
  1947. "System.Xml.XmlSerializer": "4.3.0"
  1948. }
  1949. },
  1950. "System.Private.Uri/4.3.2": {
  1951. "dependencies": {
  1952. "Microsoft.NETCore.Platforms": "3.1.0",
  1953. "Microsoft.NETCore.Targets": "1.1.3"
  1954. }
  1955. },
  1956. "System.Reflection/4.3.0": {
  1957. "dependencies": {
  1958. "Microsoft.NETCore.Platforms": "3.1.0",
  1959. "Microsoft.NETCore.Targets": "1.1.3",
  1960. "System.IO": "4.3.0",
  1961. "System.Reflection.Primitives": "4.3.0",
  1962. "System.Runtime": "4.3.0"
  1963. }
  1964. },
  1965. "System.Reflection.Emit/4.7.0": {},
  1966. "System.Reflection.Emit.ILGeneration/4.3.0": {
  1967. "dependencies": {
  1968. "System.Reflection": "4.3.0",
  1969. "System.Reflection.Primitives": "4.3.0",
  1970. "System.Runtime": "4.3.0"
  1971. }
  1972. },
  1973. "System.Reflection.Emit.Lightweight/4.3.0": {
  1974. "dependencies": {
  1975. "System.Reflection": "4.3.0",
  1976. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1977. "System.Reflection.Primitives": "4.3.0",
  1978. "System.Runtime": "4.3.0"
  1979. }
  1980. },
  1981. "System.Reflection.Extensions/4.3.0": {
  1982. "dependencies": {
  1983. "Microsoft.NETCore.Platforms": "3.1.0",
  1984. "Microsoft.NETCore.Targets": "1.1.3",
  1985. "System.Reflection": "4.3.0",
  1986. "System.Runtime": "4.3.0"
  1987. }
  1988. },
  1989. "System.Reflection.Metadata/5.0.0": {},
  1990. "System.Reflection.Primitives/4.3.0": {
  1991. "dependencies": {
  1992. "Microsoft.NETCore.Platforms": "3.1.0",
  1993. "Microsoft.NETCore.Targets": "1.1.3",
  1994. "System.Runtime": "4.3.0"
  1995. }
  1996. },
  1997. "System.Reflection.TypeExtensions/4.4.0": {},
  1998. "System.Resources.ResourceManager/4.3.0": {
  1999. "dependencies": {
  2000. "Microsoft.NETCore.Platforms": "3.1.0",
  2001. "Microsoft.NETCore.Targets": "1.1.3",
  2002. "System.Globalization": "4.3.0",
  2003. "System.Reflection": "4.3.0",
  2004. "System.Runtime": "4.3.0"
  2005. }
  2006. },
  2007. "System.Runtime/4.3.0": {
  2008. "dependencies": {
  2009. "Microsoft.NETCore.Platforms": "3.1.0",
  2010. "Microsoft.NETCore.Targets": "1.1.3"
  2011. }
  2012. },
  2013. "System.Runtime.Caching/4.7.0": {
  2014. "dependencies": {
  2015. "System.Configuration.ConfigurationManager": "4.7.0"
  2016. },
  2017. "runtime": {
  2018. "lib/netstandard2.0/System.Runtime.Caching.dll": {
  2019. "assemblyVersion": "4.0.1.0",
  2020. "fileVersion": "4.700.19.56404"
  2021. }
  2022. },
  2023. "runtimeTargets": {
  2024. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": {
  2025. "rid": "win",
  2026. "assetType": "runtime",
  2027. "assemblyVersion": "4.0.1.0",
  2028. "fileVersion": "4.700.19.56404"
  2029. }
  2030. }
  2031. },
  2032. "System.Runtime.CompilerServices.Unsafe/4.7.1": {},
  2033. "System.Runtime.Extensions/4.3.0": {
  2034. "dependencies": {
  2035. "Microsoft.NETCore.Platforms": "3.1.0",
  2036. "Microsoft.NETCore.Targets": "1.1.3",
  2037. "System.Runtime": "4.3.0"
  2038. }
  2039. },
  2040. "System.Runtime.Handles/4.3.0": {
  2041. "dependencies": {
  2042. "Microsoft.NETCore.Platforms": "3.1.0",
  2043. "Microsoft.NETCore.Targets": "1.1.3",
  2044. "System.Runtime": "4.3.0"
  2045. }
  2046. },
  2047. "System.Runtime.InteropServices/4.3.0": {
  2048. "dependencies": {
  2049. "Microsoft.NETCore.Platforms": "3.1.0",
  2050. "Microsoft.NETCore.Targets": "1.1.3",
  2051. "System.Reflection": "4.3.0",
  2052. "System.Reflection.Primitives": "4.3.0",
  2053. "System.Runtime": "4.3.0",
  2054. "System.Runtime.Handles": "4.3.0"
  2055. }
  2056. },
  2057. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2058. "dependencies": {
  2059. "System.Reflection": "4.3.0",
  2060. "System.Reflection.Extensions": "4.3.0",
  2061. "System.Resources.ResourceManager": "4.3.0",
  2062. "System.Runtime": "4.3.0",
  2063. "System.Runtime.InteropServices": "4.3.0",
  2064. "System.Threading": "4.3.0",
  2065. "runtime.native.System": "4.3.0"
  2066. }
  2067. },
  2068. "System.Runtime.Serialization.Formatters/4.3.0": {
  2069. "dependencies": {
  2070. "System.Collections": "4.3.0",
  2071. "System.Reflection": "4.3.0",
  2072. "System.Resources.ResourceManager": "4.3.0",
  2073. "System.Runtime": "4.3.0",
  2074. "System.Runtime.Serialization.Primitives": "4.3.0"
  2075. }
  2076. },
  2077. "System.Runtime.Serialization.Json/4.3.0": {
  2078. "dependencies": {
  2079. "System.IO": "4.3.0",
  2080. "System.Private.DataContractSerialization": "4.3.0",
  2081. "System.Runtime": "4.3.0"
  2082. }
  2083. },
  2084. "System.Runtime.Serialization.Primitives/4.3.0": {
  2085. "dependencies": {
  2086. "System.Resources.ResourceManager": "4.3.0",
  2087. "System.Runtime": "4.3.0"
  2088. }
  2089. },
  2090. "System.Security.AccessControl/4.7.0": {
  2091. "dependencies": {
  2092. "Microsoft.NETCore.Platforms": "3.1.0",
  2093. "System.Security.Principal.Windows": "4.7.0"
  2094. }
  2095. },
  2096. "System.Security.Cryptography.Cng/4.7.0": {},
  2097. "System.Security.Cryptography.Pkcs/4.7.0": {
  2098. "dependencies": {
  2099. "System.Security.Cryptography.Cng": "4.7.0"
  2100. },
  2101. "compile": {
  2102. "ref/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": {}
  2103. }
  2104. },
  2105. "System.Security.Cryptography.Primitives/4.3.0": {
  2106. "dependencies": {
  2107. "System.Diagnostics.Debug": "4.3.0",
  2108. "System.Globalization": "4.3.0",
  2109. "System.IO": "4.3.0",
  2110. "System.Resources.ResourceManager": "4.3.0",
  2111. "System.Runtime": "4.3.0",
  2112. "System.Threading": "4.3.0",
  2113. "System.Threading.Tasks": "4.3.0"
  2114. }
  2115. },
  2116. "System.Security.Cryptography.ProtectedData/4.7.0": {
  2117. "runtime": {
  2118. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2119. "assemblyVersion": "4.0.5.0",
  2120. "fileVersion": "4.700.19.56404"
  2121. }
  2122. },
  2123. "runtimeTargets": {
  2124. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2125. "rid": "win",
  2126. "assetType": "runtime",
  2127. "assemblyVersion": "4.0.5.0",
  2128. "fileVersion": "4.700.19.56404"
  2129. }
  2130. }
  2131. },
  2132. "System.Security.Permissions/4.7.0": {
  2133. "dependencies": {
  2134. "System.Security.AccessControl": "4.7.0",
  2135. "System.Windows.Extensions": "4.7.0"
  2136. }
  2137. },
  2138. "System.Security.Principal.Windows/4.7.0": {},
  2139. "System.Security.SecureString/4.3.0": {
  2140. "dependencies": {
  2141. "Microsoft.NETCore.Platforms": "3.1.0",
  2142. "System.Resources.ResourceManager": "4.3.0",
  2143. "System.Runtime": "4.3.0",
  2144. "System.Runtime.Handles": "4.3.0",
  2145. "System.Runtime.InteropServices": "4.3.0",
  2146. "System.Security.Cryptography.Primitives": "4.3.0",
  2147. "System.Text.Encoding": "4.3.0",
  2148. "System.Threading": "4.3.0"
  2149. }
  2150. },
  2151. "System.Text.Encoding/4.3.0": {
  2152. "dependencies": {
  2153. "Microsoft.NETCore.Platforms": "3.1.0",
  2154. "Microsoft.NETCore.Targets": "1.1.3",
  2155. "System.Runtime": "4.3.0"
  2156. }
  2157. },
  2158. "System.Text.Encoding.CodePages/4.7.0": {
  2159. "dependencies": {
  2160. "Microsoft.NETCore.Platforms": "3.1.0"
  2161. }
  2162. },
  2163. "System.Text.Encoding.Extensions/4.3.0": {
  2164. "dependencies": {
  2165. "Microsoft.NETCore.Platforms": "3.1.0",
  2166. "Microsoft.NETCore.Targets": "1.1.3",
  2167. "System.Runtime": "4.3.0",
  2168. "System.Text.Encoding": "4.3.0"
  2169. }
  2170. },
  2171. "System.Text.Encodings.Web/4.5.0": {},
  2172. "System.Text.RegularExpressions/4.3.0": {
  2173. "dependencies": {
  2174. "System.Runtime": "4.3.0"
  2175. }
  2176. },
  2177. "System.Threading/4.3.0": {
  2178. "dependencies": {
  2179. "System.Runtime": "4.3.0",
  2180. "System.Threading.Tasks": "4.3.0"
  2181. }
  2182. },
  2183. "System.Threading.Tasks/4.3.0": {
  2184. "dependencies": {
  2185. "Microsoft.NETCore.Platforms": "3.1.0",
  2186. "Microsoft.NETCore.Targets": "1.1.3",
  2187. "System.Runtime": "4.3.0"
  2188. }
  2189. },
  2190. "System.Threading.Tasks.Extensions/4.5.4": {},
  2191. "System.Threading.Timer/4.0.1": {
  2192. "dependencies": {
  2193. "Microsoft.NETCore.Platforms": "3.1.0",
  2194. "Microsoft.NETCore.Targets": "1.1.3",
  2195. "System.Runtime": "4.3.0"
  2196. }
  2197. },
  2198. "System.Windows.Extensions/4.7.0": {
  2199. "dependencies": {
  2200. "System.Drawing.Common": "4.7.0"
  2201. }
  2202. },
  2203. "System.Xml.ReaderWriter/4.3.0": {
  2204. "dependencies": {
  2205. "System.Collections": "4.3.0",
  2206. "System.Diagnostics.Debug": "4.3.0",
  2207. "System.Globalization": "4.3.0",
  2208. "System.IO": "4.3.0",
  2209. "System.IO.FileSystem": "4.3.0",
  2210. "System.IO.FileSystem.Primitives": "4.3.0",
  2211. "System.Resources.ResourceManager": "4.3.0",
  2212. "System.Runtime": "4.3.0",
  2213. "System.Runtime.Extensions": "4.3.0",
  2214. "System.Runtime.InteropServices": "4.3.0",
  2215. "System.Text.Encoding": "4.3.0",
  2216. "System.Text.Encoding.Extensions": "4.3.0",
  2217. "System.Text.RegularExpressions": "4.3.0",
  2218. "System.Threading.Tasks": "4.3.0",
  2219. "System.Threading.Tasks.Extensions": "4.5.4"
  2220. }
  2221. },
  2222. "System.Xml.XDocument/4.3.0": {
  2223. "dependencies": {
  2224. "System.Collections": "4.3.0",
  2225. "System.Diagnostics.Debug": "4.3.0",
  2226. "System.Diagnostics.Tools": "4.3.0",
  2227. "System.Globalization": "4.3.0",
  2228. "System.IO": "4.3.0",
  2229. "System.Reflection": "4.3.0",
  2230. "System.Resources.ResourceManager": "4.3.0",
  2231. "System.Runtime": "4.3.0",
  2232. "System.Runtime.Extensions": "4.3.0",
  2233. "System.Text.Encoding": "4.3.0",
  2234. "System.Threading": "4.3.0",
  2235. "System.Xml.ReaderWriter": "4.3.0"
  2236. }
  2237. },
  2238. "System.Xml.XmlDocument/4.3.0": {
  2239. "dependencies": {
  2240. "System.Collections": "4.3.0",
  2241. "System.Diagnostics.Debug": "4.3.0",
  2242. "System.Globalization": "4.3.0",
  2243. "System.IO": "4.3.0",
  2244. "System.Resources.ResourceManager": "4.3.0",
  2245. "System.Runtime": "4.3.0",
  2246. "System.Runtime.Extensions": "4.3.0",
  2247. "System.Text.Encoding": "4.3.0",
  2248. "System.Threading": "4.3.0",
  2249. "System.Xml.ReaderWriter": "4.3.0"
  2250. }
  2251. },
  2252. "System.Xml.XmlSerializer/4.3.0": {
  2253. "dependencies": {
  2254. "System.Collections": "4.3.0",
  2255. "System.Globalization": "4.3.0",
  2256. "System.IO": "4.3.0",
  2257. "System.Linq": "4.3.0",
  2258. "System.Reflection": "4.3.0",
  2259. "System.Reflection.Emit": "4.7.0",
  2260. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2261. "System.Reflection.Extensions": "4.3.0",
  2262. "System.Reflection.Primitives": "4.3.0",
  2263. "System.Reflection.TypeExtensions": "4.4.0",
  2264. "System.Resources.ResourceManager": "4.3.0",
  2265. "System.Runtime": "4.3.0",
  2266. "System.Runtime.Extensions": "4.3.0",
  2267. "System.Text.RegularExpressions": "4.3.0",
  2268. "System.Threading": "4.3.0",
  2269. "System.Xml.ReaderWriter": "4.3.0",
  2270. "System.Xml.XmlDocument": "4.3.0"
  2271. }
  2272. },
  2273. "ScreeningTest.Business/1.0.0": {
  2274. "dependencies": {
  2275. "AutoMapper": "10.1.1",
  2276. "MailKit": "2.13.0",
  2277. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  2278. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  2279. "ScreeningTest.Data": "1.0.0"
  2280. },
  2281. "runtime": {
  2282. "ScreeningTest.Business.dll": {}
  2283. },
  2284. "compile": {
  2285. "ScreeningTest.Business.dll": {}
  2286. }
  2287. },
  2288. "ScreeningTest.Data/1.0.0": {
  2289. "dependencies": {
  2290. "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "5.0.6",
  2291. "Microsoft.EntityFrameworkCore": "5.0.7",
  2292. "Microsoft.Extensions.Configuration": "5.0.0",
  2293. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  2294. "Npgsql.EntityFrameworkCore.PostgreSQL": "5.0.7"
  2295. },
  2296. "runtime": {
  2297. "ScreeningTest.Data.dll": {}
  2298. },
  2299. "compile": {
  2300. "ScreeningTest.Data.dll": {}
  2301. }
  2302. },
  2303. "Microsoft.AspNetCore.Antiforgery/5.0.0.0": {
  2304. "compile": {
  2305. "Microsoft.AspNetCore.Antiforgery.dll": {}
  2306. },
  2307. "compileOnly": true
  2308. },
  2309. "Microsoft.AspNetCore.Authentication.Abstractions/5.0.0.0": {
  2310. "compile": {
  2311. "Microsoft.AspNetCore.Authentication.Abstractions.dll": {}
  2312. },
  2313. "compileOnly": true
  2314. },
  2315. "Microsoft.AspNetCore.Authentication.Cookies/5.0.0.0": {
  2316. "compile": {
  2317. "Microsoft.AspNetCore.Authentication.Cookies.dll": {}
  2318. },
  2319. "compileOnly": true
  2320. },
  2321. "Microsoft.AspNetCore.Authentication.Core/5.0.0.0": {
  2322. "compile": {
  2323. "Microsoft.AspNetCore.Authentication.Core.dll": {}
  2324. },
  2325. "compileOnly": true
  2326. },
  2327. "Microsoft.AspNetCore.Authentication/5.0.0.0": {
  2328. "compile": {
  2329. "Microsoft.AspNetCore.Authentication.dll": {}
  2330. },
  2331. "compileOnly": true
  2332. },
  2333. "Microsoft.AspNetCore.Authentication.OAuth/5.0.0.0": {
  2334. "compile": {
  2335. "Microsoft.AspNetCore.Authentication.OAuth.dll": {}
  2336. },
  2337. "compileOnly": true
  2338. },
  2339. "Microsoft.AspNetCore.Authorization/5.0.0.0": {
  2340. "compile": {
  2341. "Microsoft.AspNetCore.Authorization.dll": {}
  2342. },
  2343. "compileOnly": true
  2344. },
  2345. "Microsoft.AspNetCore.Authorization.Policy/5.0.0.0": {
  2346. "compile": {
  2347. "Microsoft.AspNetCore.Authorization.Policy.dll": {}
  2348. },
  2349. "compileOnly": true
  2350. },
  2351. "Microsoft.AspNetCore.Components.Authorization/5.0.0.0": {
  2352. "compile": {
  2353. "Microsoft.AspNetCore.Components.Authorization.dll": {}
  2354. },
  2355. "compileOnly": true
  2356. },
  2357. "Microsoft.AspNetCore.Components/5.0.0.0": {
  2358. "compile": {
  2359. "Microsoft.AspNetCore.Components.dll": {}
  2360. },
  2361. "compileOnly": true
  2362. },
  2363. "Microsoft.AspNetCore.Components.Forms/5.0.0.0": {
  2364. "compile": {
  2365. "Microsoft.AspNetCore.Components.Forms.dll": {}
  2366. },
  2367. "compileOnly": true
  2368. },
  2369. "Microsoft.AspNetCore.Components.Server/5.0.0.0": {
  2370. "compile": {
  2371. "Microsoft.AspNetCore.Components.Server.dll": {}
  2372. },
  2373. "compileOnly": true
  2374. },
  2375. "Microsoft.AspNetCore.Components.Web/5.0.0.0": {
  2376. "compile": {
  2377. "Microsoft.AspNetCore.Components.Web.dll": {}
  2378. },
  2379. "compileOnly": true
  2380. },
  2381. "Microsoft.AspNetCore.Connections.Abstractions/5.0.0.0": {
  2382. "compile": {
  2383. "Microsoft.AspNetCore.Connections.Abstractions.dll": {}
  2384. },
  2385. "compileOnly": true
  2386. },
  2387. "Microsoft.AspNetCore.CookiePolicy/5.0.0.0": {
  2388. "compile": {
  2389. "Microsoft.AspNetCore.CookiePolicy.dll": {}
  2390. },
  2391. "compileOnly": true
  2392. },
  2393. "Microsoft.AspNetCore.Cors/5.0.0.0": {
  2394. "compile": {
  2395. "Microsoft.AspNetCore.Cors.dll": {}
  2396. },
  2397. "compileOnly": true
  2398. },
  2399. "Microsoft.AspNetCore.DataProtection.Abstractions/5.0.0.0": {
  2400. "compile": {
  2401. "Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
  2402. },
  2403. "compileOnly": true
  2404. },
  2405. "Microsoft.AspNetCore.DataProtection/5.0.0.0": {
  2406. "compile": {
  2407. "Microsoft.AspNetCore.DataProtection.dll": {}
  2408. },
  2409. "compileOnly": true
  2410. },
  2411. "Microsoft.AspNetCore.DataProtection.Extensions/5.0.0.0": {
  2412. "compile": {
  2413. "Microsoft.AspNetCore.DataProtection.Extensions.dll": {}
  2414. },
  2415. "compileOnly": true
  2416. },
  2417. "Microsoft.AspNetCore.Diagnostics.Abstractions/5.0.0.0": {
  2418. "compile": {
  2419. "Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
  2420. },
  2421. "compileOnly": true
  2422. },
  2423. "Microsoft.AspNetCore.Diagnostics/5.0.0.0": {
  2424. "compile": {
  2425. "Microsoft.AspNetCore.Diagnostics.dll": {}
  2426. },
  2427. "compileOnly": true
  2428. },
  2429. "Microsoft.AspNetCore.Diagnostics.HealthChecks/5.0.0.0": {
  2430. "compile": {
  2431. "Microsoft.AspNetCore.Diagnostics.HealthChecks.dll": {}
  2432. },
  2433. "compileOnly": true
  2434. },
  2435. "Microsoft.AspNetCore/5.0.0.0": {
  2436. "compile": {
  2437. "Microsoft.AspNetCore.dll": {}
  2438. },
  2439. "compileOnly": true
  2440. },
  2441. "Microsoft.AspNetCore.HostFiltering/5.0.0.0": {
  2442. "compile": {
  2443. "Microsoft.AspNetCore.HostFiltering.dll": {}
  2444. },
  2445. "compileOnly": true
  2446. },
  2447. "Microsoft.AspNetCore.Hosting.Abstractions/5.0.0.0": {
  2448. "compile": {
  2449. "Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
  2450. },
  2451. "compileOnly": true
  2452. },
  2453. "Microsoft.AspNetCore.Hosting/5.0.0.0": {
  2454. "compile": {
  2455. "Microsoft.AspNetCore.Hosting.dll": {}
  2456. },
  2457. "compileOnly": true
  2458. },
  2459. "Microsoft.AspNetCore.Hosting.Server.Abstractions/5.0.0.0": {
  2460. "compile": {
  2461. "Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
  2462. },
  2463. "compileOnly": true
  2464. },
  2465. "Microsoft.AspNetCore.Html.Abstractions.Reference/5.0.0.0": {
  2466. "compile": {
  2467. "Microsoft.AspNetCore.Html.Abstractions.dll": {}
  2468. },
  2469. "compileOnly": true
  2470. },
  2471. "Microsoft.AspNetCore.Http.Abstractions/5.0.0.0": {
  2472. "compile": {
  2473. "Microsoft.AspNetCore.Http.Abstractions.dll": {}
  2474. },
  2475. "compileOnly": true
  2476. },
  2477. "Microsoft.AspNetCore.Http.Connections.Common/5.0.0.0": {
  2478. "compile": {
  2479. "Microsoft.AspNetCore.Http.Connections.Common.dll": {}
  2480. },
  2481. "compileOnly": true
  2482. },
  2483. "Microsoft.AspNetCore.Http.Connections/5.0.0.0": {
  2484. "compile": {
  2485. "Microsoft.AspNetCore.Http.Connections.dll": {}
  2486. },
  2487. "compileOnly": true
  2488. },
  2489. "Microsoft.AspNetCore.Http/5.0.0.0": {
  2490. "compile": {
  2491. "Microsoft.AspNetCore.Http.dll": {}
  2492. },
  2493. "compileOnly": true
  2494. },
  2495. "Microsoft.AspNetCore.Http.Extensions/5.0.0.0": {
  2496. "compile": {
  2497. "Microsoft.AspNetCore.Http.Extensions.dll": {}
  2498. },
  2499. "compileOnly": true
  2500. },
  2501. "Microsoft.AspNetCore.Http.Features/5.0.0.0": {
  2502. "compile": {
  2503. "Microsoft.AspNetCore.Http.Features.dll": {}
  2504. },
  2505. "compileOnly": true
  2506. },
  2507. "Microsoft.AspNetCore.HttpOverrides/5.0.0.0": {
  2508. "compile": {
  2509. "Microsoft.AspNetCore.HttpOverrides.dll": {}
  2510. },
  2511. "compileOnly": true
  2512. },
  2513. "Microsoft.AspNetCore.HttpsPolicy/5.0.0.0": {
  2514. "compile": {
  2515. "Microsoft.AspNetCore.HttpsPolicy.dll": {}
  2516. },
  2517. "compileOnly": true
  2518. },
  2519. "Microsoft.AspNetCore.Identity/5.0.0.0": {
  2520. "compile": {
  2521. "Microsoft.AspNetCore.Identity.dll": {}
  2522. },
  2523. "compileOnly": true
  2524. },
  2525. "Microsoft.AspNetCore.Localization/5.0.0.0": {
  2526. "compile": {
  2527. "Microsoft.AspNetCore.Localization.dll": {}
  2528. },
  2529. "compileOnly": true
  2530. },
  2531. "Microsoft.AspNetCore.Localization.Routing/5.0.0.0": {
  2532. "compile": {
  2533. "Microsoft.AspNetCore.Localization.Routing.dll": {}
  2534. },
  2535. "compileOnly": true
  2536. },
  2537. "Microsoft.AspNetCore.Metadata/5.0.0.0": {
  2538. "compile": {
  2539. "Microsoft.AspNetCore.Metadata.dll": {}
  2540. },
  2541. "compileOnly": true
  2542. },
  2543. "Microsoft.AspNetCore.Mvc.Abstractions/5.0.0.0": {
  2544. "compile": {
  2545. "Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
  2546. },
  2547. "compileOnly": true
  2548. },
  2549. "Microsoft.AspNetCore.Mvc.ApiExplorer/5.0.0.0": {
  2550. "compile": {
  2551. "Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {}
  2552. },
  2553. "compileOnly": true
  2554. },
  2555. "Microsoft.AspNetCore.Mvc.Core/5.0.0.0": {
  2556. "compile": {
  2557. "Microsoft.AspNetCore.Mvc.Core.dll": {}
  2558. },
  2559. "compileOnly": true
  2560. },
  2561. "Microsoft.AspNetCore.Mvc.Cors/5.0.0.0": {
  2562. "compile": {
  2563. "Microsoft.AspNetCore.Mvc.Cors.dll": {}
  2564. },
  2565. "compileOnly": true
  2566. },
  2567. "Microsoft.AspNetCore.Mvc.DataAnnotations/5.0.0.0": {
  2568. "compile": {
  2569. "Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {}
  2570. },
  2571. "compileOnly": true
  2572. },
  2573. "Microsoft.AspNetCore.Mvc/5.0.0.0": {
  2574. "compile": {
  2575. "Microsoft.AspNetCore.Mvc.dll": {}
  2576. },
  2577. "compileOnly": true
  2578. },
  2579. "Microsoft.AspNetCore.Mvc.Formatters.Json/5.0.0.0": {
  2580. "compile": {
  2581. "Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
  2582. },
  2583. "compileOnly": true
  2584. },
  2585. "Microsoft.AspNetCore.Mvc.Formatters.Xml/5.0.0.0": {
  2586. "compile": {
  2587. "Microsoft.AspNetCore.Mvc.Formatters.Xml.dll": {}
  2588. },
  2589. "compileOnly": true
  2590. },
  2591. "Microsoft.AspNetCore.Mvc.Localization/5.0.0.0": {
  2592. "compile": {
  2593. "Microsoft.AspNetCore.Mvc.Localization.dll": {}
  2594. },
  2595. "compileOnly": true
  2596. },
  2597. "Microsoft.AspNetCore.Mvc.Razor/5.0.0.0": {
  2598. "compile": {
  2599. "Microsoft.AspNetCore.Mvc.Razor.dll": {}
  2600. },
  2601. "compileOnly": true
  2602. },
  2603. "Microsoft.AspNetCore.Mvc.RazorPages/5.0.0.0": {
  2604. "compile": {
  2605. "Microsoft.AspNetCore.Mvc.RazorPages.dll": {}
  2606. },
  2607. "compileOnly": true
  2608. },
  2609. "Microsoft.AspNetCore.Mvc.TagHelpers/5.0.0.0": {
  2610. "compile": {
  2611. "Microsoft.AspNetCore.Mvc.TagHelpers.dll": {}
  2612. },
  2613. "compileOnly": true
  2614. },
  2615. "Microsoft.AspNetCore.Mvc.ViewFeatures/5.0.0.0": {
  2616. "compile": {
  2617. "Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
  2618. },
  2619. "compileOnly": true
  2620. },
  2621. "Microsoft.AspNetCore.Razor.Reference/5.0.0.0": {
  2622. "compile": {
  2623. "Microsoft.AspNetCore.Razor.dll": {}
  2624. },
  2625. "compileOnly": true
  2626. },
  2627. "Microsoft.AspNetCore.Razor.Runtime.Reference/5.0.0.0": {
  2628. "compile": {
  2629. "Microsoft.AspNetCore.Razor.Runtime.dll": {}
  2630. },
  2631. "compileOnly": true
  2632. },
  2633. "Microsoft.AspNetCore.ResponseCaching.Abstractions/5.0.0.0": {
  2634. "compile": {
  2635. "Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
  2636. },
  2637. "compileOnly": true
  2638. },
  2639. "Microsoft.AspNetCore.ResponseCaching/5.0.0.0": {
  2640. "compile": {
  2641. "Microsoft.AspNetCore.ResponseCaching.dll": {}
  2642. },
  2643. "compileOnly": true
  2644. },
  2645. "Microsoft.AspNetCore.ResponseCompression/5.0.0.0": {
  2646. "compile": {
  2647. "Microsoft.AspNetCore.ResponseCompression.dll": {}
  2648. },
  2649. "compileOnly": true
  2650. },
  2651. "Microsoft.AspNetCore.Rewrite/5.0.0.0": {
  2652. "compile": {
  2653. "Microsoft.AspNetCore.Rewrite.dll": {}
  2654. },
  2655. "compileOnly": true
  2656. },
  2657. "Microsoft.AspNetCore.Routing.Abstractions/5.0.0.0": {
  2658. "compile": {
  2659. "Microsoft.AspNetCore.Routing.Abstractions.dll": {}
  2660. },
  2661. "compileOnly": true
  2662. },
  2663. "Microsoft.AspNetCore.Routing/5.0.0.0": {
  2664. "compile": {
  2665. "Microsoft.AspNetCore.Routing.dll": {}
  2666. },
  2667. "compileOnly": true
  2668. },
  2669. "Microsoft.AspNetCore.Server.HttpSys/5.0.0.0": {
  2670. "compile": {
  2671. "Microsoft.AspNetCore.Server.HttpSys.dll": {}
  2672. },
  2673. "compileOnly": true
  2674. },
  2675. "Microsoft.AspNetCore.Server.IIS/5.0.0.0": {
  2676. "compile": {
  2677. "Microsoft.AspNetCore.Server.IIS.dll": {}
  2678. },
  2679. "compileOnly": true
  2680. },
  2681. "Microsoft.AspNetCore.Server.IISIntegration/5.0.0.0": {
  2682. "compile": {
  2683. "Microsoft.AspNetCore.Server.IISIntegration.dll": {}
  2684. },
  2685. "compileOnly": true
  2686. },
  2687. "Microsoft.AspNetCore.Server.Kestrel.Core/5.0.0.0": {
  2688. "compile": {
  2689. "Microsoft.AspNetCore.Server.Kestrel.Core.dll": {}
  2690. },
  2691. "compileOnly": true
  2692. },
  2693. "Microsoft.AspNetCore.Server.Kestrel/5.0.0.0": {
  2694. "compile": {
  2695. "Microsoft.AspNetCore.Server.Kestrel.dll": {}
  2696. },
  2697. "compileOnly": true
  2698. },
  2699. "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/5.0.0.0": {
  2700. "compile": {
  2701. "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": {}
  2702. },
  2703. "compileOnly": true
  2704. },
  2705. "Microsoft.AspNetCore.Session/5.0.0.0": {
  2706. "compile": {
  2707. "Microsoft.AspNetCore.Session.dll": {}
  2708. },
  2709. "compileOnly": true
  2710. },
  2711. "Microsoft.AspNetCore.SignalR.Common/5.0.0.0": {
  2712. "compile": {
  2713. "Microsoft.AspNetCore.SignalR.Common.dll": {}
  2714. },
  2715. "compileOnly": true
  2716. },
  2717. "Microsoft.AspNetCore.SignalR.Core/5.0.0.0": {
  2718. "compile": {
  2719. "Microsoft.AspNetCore.SignalR.Core.dll": {}
  2720. },
  2721. "compileOnly": true
  2722. },
  2723. "Microsoft.AspNetCore.SignalR/5.0.0.0": {
  2724. "compile": {
  2725. "Microsoft.AspNetCore.SignalR.dll": {}
  2726. },
  2727. "compileOnly": true
  2728. },
  2729. "Microsoft.AspNetCore.SignalR.Protocols.Json/5.0.0.0": {
  2730. "compile": {
  2731. "Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {}
  2732. },
  2733. "compileOnly": true
  2734. },
  2735. "Microsoft.AspNetCore.StaticFiles/5.0.0.0": {
  2736. "compile": {
  2737. "Microsoft.AspNetCore.StaticFiles.dll": {}
  2738. },
  2739. "compileOnly": true
  2740. },
  2741. "Microsoft.AspNetCore.WebSockets/5.0.0.0": {
  2742. "compile": {
  2743. "Microsoft.AspNetCore.WebSockets.dll": {}
  2744. },
  2745. "compileOnly": true
  2746. },
  2747. "Microsoft.AspNetCore.WebUtilities/5.0.0.0": {
  2748. "compile": {
  2749. "Microsoft.AspNetCore.WebUtilities.dll": {}
  2750. },
  2751. "compileOnly": true
  2752. },
  2753. "Microsoft.CSharp.Reference/5.0.0.0": {
  2754. "compile": {
  2755. "Microsoft.CSharp.dll": {}
  2756. },
  2757. "compileOnly": true
  2758. },
  2759. "Microsoft.Extensions.Caching.Abstractions.Reference/5.0.0.0": {
  2760. "compile": {
  2761. "Microsoft.Extensions.Caching.Abstractions.dll": {}
  2762. },
  2763. "compileOnly": true
  2764. },
  2765. "Microsoft.Extensions.Caching.Memory.Reference/5.0.0.0": {
  2766. "compile": {
  2767. "Microsoft.Extensions.Caching.Memory.dll": {}
  2768. },
  2769. "compileOnly": true
  2770. },
  2771. "Microsoft.Extensions.Configuration.Abstractions.Reference/5.0.0.0": {
  2772. "compile": {
  2773. "Microsoft.Extensions.Configuration.Abstractions.dll": {}
  2774. },
  2775. "compileOnly": true
  2776. },
  2777. "Microsoft.Extensions.Configuration.Binder.Reference/5.0.0.0": {
  2778. "compile": {
  2779. "Microsoft.Extensions.Configuration.Binder.dll": {}
  2780. },
  2781. "compileOnly": true
  2782. },
  2783. "Microsoft.Extensions.Configuration.CommandLine/5.0.0.0": {
  2784. "compile": {
  2785. "Microsoft.Extensions.Configuration.CommandLine.dll": {}
  2786. },
  2787. "compileOnly": true
  2788. },
  2789. "Microsoft.Extensions.Configuration.Reference/5.0.0.0": {
  2790. "compile": {
  2791. "Microsoft.Extensions.Configuration.dll": {}
  2792. },
  2793. "compileOnly": true
  2794. },
  2795. "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0.0": {
  2796. "compile": {
  2797. "Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
  2798. },
  2799. "compileOnly": true
  2800. },
  2801. "Microsoft.Extensions.Configuration.FileExtensions.Reference/5.0.0.0": {
  2802. "compile": {
  2803. "Microsoft.Extensions.Configuration.FileExtensions.dll": {}
  2804. },
  2805. "compileOnly": true
  2806. },
  2807. "Microsoft.Extensions.Configuration.Ini/5.0.0.0": {
  2808. "compile": {
  2809. "Microsoft.Extensions.Configuration.Ini.dll": {}
  2810. },
  2811. "compileOnly": true
  2812. },
  2813. "Microsoft.Extensions.Configuration.Json.Reference/5.0.0.0": {
  2814. "compile": {
  2815. "Microsoft.Extensions.Configuration.Json.dll": {}
  2816. },
  2817. "compileOnly": true
  2818. },
  2819. "Microsoft.Extensions.Configuration.KeyPerFile/5.0.0.0": {
  2820. "compile": {
  2821. "Microsoft.Extensions.Configuration.KeyPerFile.dll": {}
  2822. },
  2823. "compileOnly": true
  2824. },
  2825. "Microsoft.Extensions.Configuration.UserSecrets/5.0.0.0": {
  2826. "compile": {
  2827. "Microsoft.Extensions.Configuration.UserSecrets.dll": {}
  2828. },
  2829. "compileOnly": true
  2830. },
  2831. "Microsoft.Extensions.Configuration.Xml/5.0.0.0": {
  2832. "compile": {
  2833. "Microsoft.Extensions.Configuration.Xml.dll": {}
  2834. },
  2835. "compileOnly": true
  2836. },
  2837. "Microsoft.Extensions.DependencyInjection.Abstractions.Reference/5.0.0.0": {
  2838. "compile": {
  2839. "Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  2840. },
  2841. "compileOnly": true
  2842. },
  2843. "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/5.0.0.0": {
  2844. "compile": {
  2845. "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll": {}
  2846. },
  2847. "compileOnly": true
  2848. },
  2849. "Microsoft.Extensions.Diagnostics.HealthChecks/5.0.0.0": {
  2850. "compile": {
  2851. "Microsoft.Extensions.Diagnostics.HealthChecks.dll": {}
  2852. },
  2853. "compileOnly": true
  2854. },
  2855. "Microsoft.Extensions.FileProviders.Abstractions.Reference/5.0.0.0": {
  2856. "compile": {
  2857. "Microsoft.Extensions.FileProviders.Abstractions.dll": {}
  2858. },
  2859. "compileOnly": true
  2860. },
  2861. "Microsoft.Extensions.FileProviders.Composite/5.0.0.0": {
  2862. "compile": {
  2863. "Microsoft.Extensions.FileProviders.Composite.dll": {}
  2864. },
  2865. "compileOnly": true
  2866. },
  2867. "Microsoft.Extensions.FileProviders.Physical.Reference/5.0.0.0": {
  2868. "compile": {
  2869. "Microsoft.Extensions.FileProviders.Physical.dll": {}
  2870. },
  2871. "compileOnly": true
  2872. },
  2873. "Microsoft.Extensions.FileSystemGlobbing.Reference/5.0.0.0": {
  2874. "compile": {
  2875. "Microsoft.Extensions.FileSystemGlobbing.dll": {}
  2876. },
  2877. "compileOnly": true
  2878. },
  2879. "Microsoft.Extensions.Hosting.Abstractions.Reference/5.0.0.0": {
  2880. "compile": {
  2881. "Microsoft.Extensions.Hosting.Abstractions.dll": {}
  2882. },
  2883. "compileOnly": true
  2884. },
  2885. "Microsoft.Extensions.Hosting/5.0.0.0": {
  2886. "compile": {
  2887. "Microsoft.Extensions.Hosting.dll": {}
  2888. },
  2889. "compileOnly": true
  2890. },
  2891. "Microsoft.Extensions.Http/5.0.0.0": {
  2892. "compile": {
  2893. "Microsoft.Extensions.Http.dll": {}
  2894. },
  2895. "compileOnly": true
  2896. },
  2897. "Microsoft.Extensions.Localization.Abstractions/5.0.0.0": {
  2898. "compile": {
  2899. "Microsoft.Extensions.Localization.Abstractions.dll": {}
  2900. },
  2901. "compileOnly": true
  2902. },
  2903. "Microsoft.Extensions.Localization/5.0.0.0": {
  2904. "compile": {
  2905. "Microsoft.Extensions.Localization.dll": {}
  2906. },
  2907. "compileOnly": true
  2908. },
  2909. "Microsoft.Extensions.Logging.Abstractions.Reference/5.0.0.0": {
  2910. "compile": {
  2911. "Microsoft.Extensions.Logging.Abstractions.dll": {}
  2912. },
  2913. "compileOnly": true
  2914. },
  2915. "Microsoft.Extensions.Logging.Configuration/5.0.0.0": {
  2916. "compile": {
  2917. "Microsoft.Extensions.Logging.Configuration.dll": {}
  2918. },
  2919. "compileOnly": true
  2920. },
  2921. "Microsoft.Extensions.Logging.Console/5.0.0.0": {
  2922. "compile": {
  2923. "Microsoft.Extensions.Logging.Console.dll": {}
  2924. },
  2925. "compileOnly": true
  2926. },
  2927. "Microsoft.Extensions.Logging.Debug/5.0.0.0": {
  2928. "compile": {
  2929. "Microsoft.Extensions.Logging.Debug.dll": {}
  2930. },
  2931. "compileOnly": true
  2932. },
  2933. "Microsoft.Extensions.Logging.Reference/5.0.0.0": {
  2934. "compile": {
  2935. "Microsoft.Extensions.Logging.dll": {}
  2936. },
  2937. "compileOnly": true
  2938. },
  2939. "Microsoft.Extensions.Logging.EventLog/5.0.0.0": {
  2940. "compile": {
  2941. "Microsoft.Extensions.Logging.EventLog.dll": {}
  2942. },
  2943. "compileOnly": true
  2944. },
  2945. "Microsoft.Extensions.Logging.EventSource/5.0.0.0": {
  2946. "compile": {
  2947. "Microsoft.Extensions.Logging.EventSource.dll": {}
  2948. },
  2949. "compileOnly": true
  2950. },
  2951. "Microsoft.Extensions.Logging.TraceSource/5.0.0.0": {
  2952. "compile": {
  2953. "Microsoft.Extensions.Logging.TraceSource.dll": {}
  2954. },
  2955. "compileOnly": true
  2956. },
  2957. "Microsoft.Extensions.ObjectPool/5.0.0.0": {
  2958. "compile": {
  2959. "Microsoft.Extensions.ObjectPool.dll": {}
  2960. },
  2961. "compileOnly": true
  2962. },
  2963. "Microsoft.Extensions.Options.ConfigurationExtensions.Reference/5.0.0.0": {
  2964. "compile": {
  2965. "Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
  2966. },
  2967. "compileOnly": true
  2968. },
  2969. "Microsoft.Extensions.Options.DataAnnotations/5.0.0.0": {
  2970. "compile": {
  2971. "Microsoft.Extensions.Options.DataAnnotations.dll": {}
  2972. },
  2973. "compileOnly": true
  2974. },
  2975. "Microsoft.Extensions.Options.Reference/5.0.0.0": {
  2976. "compile": {
  2977. "Microsoft.Extensions.Options.dll": {}
  2978. },
  2979. "compileOnly": true
  2980. },
  2981. "Microsoft.Extensions.Primitives.Reference/5.0.0.0": {
  2982. "compile": {
  2983. "Microsoft.Extensions.Primitives.dll": {}
  2984. },
  2985. "compileOnly": true
  2986. },
  2987. "Microsoft.Extensions.WebEncoders/5.0.0.0": {
  2988. "compile": {
  2989. "Microsoft.Extensions.WebEncoders.dll": {}
  2990. },
  2991. "compileOnly": true
  2992. },
  2993. "Microsoft.JSInterop/5.0.0.0": {
  2994. "compile": {
  2995. "Microsoft.JSInterop.dll": {}
  2996. },
  2997. "compileOnly": true
  2998. },
  2999. "Microsoft.Net.Http.Headers/5.0.0.0": {
  3000. "compile": {
  3001. "Microsoft.Net.Http.Headers.dll": {}
  3002. },
  3003. "compileOnly": true
  3004. },
  3005. "Microsoft.VisualBasic.Core/10.0.6.0": {
  3006. "compile": {
  3007. "Microsoft.VisualBasic.Core.dll": {}
  3008. },
  3009. "compileOnly": true
  3010. },
  3011. "Microsoft.VisualBasic/10.0.0.0": {
  3012. "compile": {
  3013. "Microsoft.VisualBasic.dll": {}
  3014. },
  3015. "compileOnly": true
  3016. },
  3017. "Microsoft.Win32.Primitives/5.0.0.0": {
  3018. "compile": {
  3019. "Microsoft.Win32.Primitives.dll": {}
  3020. },
  3021. "compileOnly": true
  3022. },
  3023. "Microsoft.Win32.Registry.Reference/5.0.0.0": {
  3024. "compile": {
  3025. "Microsoft.Win32.Registry.dll": {}
  3026. },
  3027. "compileOnly": true
  3028. },
  3029. "mscorlib/4.0.0.0": {
  3030. "compile": {
  3031. "mscorlib.dll": {}
  3032. },
  3033. "compileOnly": true
  3034. },
  3035. "netstandard/2.1.0.0": {
  3036. "compile": {
  3037. "netstandard.dll": {}
  3038. },
  3039. "compileOnly": true
  3040. },
  3041. "System.AppContext/5.0.0.0": {
  3042. "compile": {
  3043. "System.AppContext.dll": {}
  3044. },
  3045. "compileOnly": true
  3046. },
  3047. "System.Buffers.Reference/5.0.0.0": {
  3048. "compile": {
  3049. "System.Buffers.dll": {}
  3050. },
  3051. "compileOnly": true
  3052. },
  3053. "System.Collections.Concurrent.Reference/5.0.0.0": {
  3054. "compile": {
  3055. "System.Collections.Concurrent.dll": {}
  3056. },
  3057. "compileOnly": true
  3058. },
  3059. "System.Collections.Reference/5.0.0.0": {
  3060. "compile": {
  3061. "System.Collections.dll": {}
  3062. },
  3063. "compileOnly": true
  3064. },
  3065. "System.Collections.Immutable.Reference/5.0.0.0": {
  3066. "compile": {
  3067. "System.Collections.Immutable.dll": {}
  3068. },
  3069. "compileOnly": true
  3070. },
  3071. "System.Collections.NonGeneric.Reference/5.0.0.0": {
  3072. "compile": {
  3073. "System.Collections.NonGeneric.dll": {}
  3074. },
  3075. "compileOnly": true
  3076. },
  3077. "System.Collections.Specialized.Reference/5.0.0.0": {
  3078. "compile": {
  3079. "System.Collections.Specialized.dll": {}
  3080. },
  3081. "compileOnly": true
  3082. },
  3083. "System.ComponentModel.Annotations.Reference/5.0.0.0": {
  3084. "compile": {
  3085. "System.ComponentModel.Annotations.dll": {}
  3086. },
  3087. "compileOnly": true
  3088. },
  3089. "System.ComponentModel.DataAnnotations/4.0.0.0": {
  3090. "compile": {
  3091. "System.ComponentModel.DataAnnotations.dll": {}
  3092. },
  3093. "compileOnly": true
  3094. },
  3095. "System.ComponentModel.Reference/5.0.0.0": {
  3096. "compile": {
  3097. "System.ComponentModel.dll": {}
  3098. },
  3099. "compileOnly": true
  3100. },
  3101. "System.ComponentModel.EventBasedAsync/5.0.0.0": {
  3102. "compile": {
  3103. "System.ComponentModel.EventBasedAsync.dll": {}
  3104. },
  3105. "compileOnly": true
  3106. },
  3107. "System.ComponentModel.Primitives.Reference/5.0.0.0": {
  3108. "compile": {
  3109. "System.ComponentModel.Primitives.dll": {}
  3110. },
  3111. "compileOnly": true
  3112. },
  3113. "System.ComponentModel.TypeConverter.Reference/5.0.0.0": {
  3114. "compile": {
  3115. "System.ComponentModel.TypeConverter.dll": {}
  3116. },
  3117. "compileOnly": true
  3118. },
  3119. "System.Configuration/4.0.0.0": {
  3120. "compile": {
  3121. "System.Configuration.dll": {}
  3122. },
  3123. "compileOnly": true
  3124. },
  3125. "System.Console.Reference/5.0.0.0": {
  3126. "compile": {
  3127. "System.Console.dll": {}
  3128. },
  3129. "compileOnly": true
  3130. },
  3131. "System.Core/4.0.0.0": {
  3132. "compile": {
  3133. "System.Core.dll": {}
  3134. },
  3135. "compileOnly": true
  3136. },
  3137. "System.Data.Common/5.0.0.0": {
  3138. "compile": {
  3139. "System.Data.Common.dll": {}
  3140. },
  3141. "compileOnly": true
  3142. },
  3143. "System.Data.DataSetExtensions/4.0.0.0": {
  3144. "compile": {
  3145. "System.Data.DataSetExtensions.dll": {}
  3146. },
  3147. "compileOnly": true
  3148. },
  3149. "System.Data/4.0.0.0": {
  3150. "compile": {
  3151. "System.Data.dll": {}
  3152. },
  3153. "compileOnly": true
  3154. },
  3155. "System.Diagnostics.Contracts/5.0.0.0": {
  3156. "compile": {
  3157. "System.Diagnostics.Contracts.dll": {}
  3158. },
  3159. "compileOnly": true
  3160. },
  3161. "System.Diagnostics.Debug.Reference/5.0.0.0": {
  3162. "compile": {
  3163. "System.Diagnostics.Debug.dll": {}
  3164. },
  3165. "compileOnly": true
  3166. },
  3167. "System.Diagnostics.EventLog/5.0.0.0": {
  3168. "compile": {
  3169. "System.Diagnostics.EventLog.dll": {}
  3170. },
  3171. "compileOnly": true
  3172. },
  3173. "System.Diagnostics.FileVersionInfo/5.0.0.0": {
  3174. "compile": {
  3175. "System.Diagnostics.FileVersionInfo.dll": {}
  3176. },
  3177. "compileOnly": true
  3178. },
  3179. "System.Diagnostics.Process/5.0.0.0": {
  3180. "compile": {
  3181. "System.Diagnostics.Process.dll": {}
  3182. },
  3183. "compileOnly": true
  3184. },
  3185. "System.Diagnostics.StackTrace/5.0.0.0": {
  3186. "compile": {
  3187. "System.Diagnostics.StackTrace.dll": {}
  3188. },
  3189. "compileOnly": true
  3190. },
  3191. "System.Diagnostics.TextWriterTraceListener/5.0.0.0": {
  3192. "compile": {
  3193. "System.Diagnostics.TextWriterTraceListener.dll": {}
  3194. },
  3195. "compileOnly": true
  3196. },
  3197. "System.Diagnostics.Tools.Reference/5.0.0.0": {
  3198. "compile": {
  3199. "System.Diagnostics.Tools.dll": {}
  3200. },
  3201. "compileOnly": true
  3202. },
  3203. "System.Diagnostics.TraceSource/5.0.0.0": {
  3204. "compile": {
  3205. "System.Diagnostics.TraceSource.dll": {}
  3206. },
  3207. "compileOnly": true
  3208. },
  3209. "System.Diagnostics.Tracing.Reference/5.0.0.0": {
  3210. "compile": {
  3211. "System.Diagnostics.Tracing.dll": {}
  3212. },
  3213. "compileOnly": true
  3214. },
  3215. "System/4.0.0.0": {
  3216. "compile": {
  3217. "System.dll": {}
  3218. },
  3219. "compileOnly": true
  3220. },
  3221. "System.Drawing/4.0.0.0": {
  3222. "compile": {
  3223. "System.Drawing.dll": {}
  3224. },
  3225. "compileOnly": true
  3226. },
  3227. "System.Drawing.Primitives/5.0.0.0": {
  3228. "compile": {
  3229. "System.Drawing.Primitives.dll": {}
  3230. },
  3231. "compileOnly": true
  3232. },
  3233. "System.Dynamic.Runtime/5.0.0.0": {
  3234. "compile": {
  3235. "System.Dynamic.Runtime.dll": {}
  3236. },
  3237. "compileOnly": true
  3238. },
  3239. "System.Formats.Asn1/5.0.0.0": {
  3240. "compile": {
  3241. "System.Formats.Asn1.dll": {}
  3242. },
  3243. "compileOnly": true
  3244. },
  3245. "System.Globalization.Calendars/5.0.0.0": {
  3246. "compile": {
  3247. "System.Globalization.Calendars.dll": {}
  3248. },
  3249. "compileOnly": true
  3250. },
  3251. "System.Globalization.Reference/5.0.0.0": {
  3252. "compile": {
  3253. "System.Globalization.dll": {}
  3254. },
  3255. "compileOnly": true
  3256. },
  3257. "System.Globalization.Extensions.Reference/5.0.0.0": {
  3258. "compile": {
  3259. "System.Globalization.Extensions.dll": {}
  3260. },
  3261. "compileOnly": true
  3262. },
  3263. "System.IO.Compression.Brotli/5.0.0.0": {
  3264. "compile": {
  3265. "System.IO.Compression.Brotli.dll": {}
  3266. },
  3267. "compileOnly": true
  3268. },
  3269. "System.IO.Compression/5.0.0.0": {
  3270. "compile": {
  3271. "System.IO.Compression.dll": {}
  3272. },
  3273. "compileOnly": true
  3274. },
  3275. "System.IO.Compression.FileSystem/4.0.0.0": {
  3276. "compile": {
  3277. "System.IO.Compression.FileSystem.dll": {}
  3278. },
  3279. "compileOnly": true
  3280. },
  3281. "System.IO.Compression.ZipFile/5.0.0.0": {
  3282. "compile": {
  3283. "System.IO.Compression.ZipFile.dll": {}
  3284. },
  3285. "compileOnly": true
  3286. },
  3287. "System.IO.Reference/5.0.0.0": {
  3288. "compile": {
  3289. "System.IO.dll": {}
  3290. },
  3291. "compileOnly": true
  3292. },
  3293. "System.IO.FileSystem.Reference/5.0.0.0": {
  3294. "compile": {
  3295. "System.IO.FileSystem.dll": {}
  3296. },
  3297. "compileOnly": true
  3298. },
  3299. "System.IO.FileSystem.DriveInfo/5.0.0.0": {
  3300. "compile": {
  3301. "System.IO.FileSystem.DriveInfo.dll": {}
  3302. },
  3303. "compileOnly": true
  3304. },
  3305. "System.IO.FileSystem.Primitives.Reference/5.0.0.0": {
  3306. "compile": {
  3307. "System.IO.FileSystem.Primitives.dll": {}
  3308. },
  3309. "compileOnly": true
  3310. },
  3311. "System.IO.FileSystem.Watcher/5.0.0.0": {
  3312. "compile": {
  3313. "System.IO.FileSystem.Watcher.dll": {}
  3314. },
  3315. "compileOnly": true
  3316. },
  3317. "System.IO.IsolatedStorage/5.0.0.0": {
  3318. "compile": {
  3319. "System.IO.IsolatedStorage.dll": {}
  3320. },
  3321. "compileOnly": true
  3322. },
  3323. "System.IO.MemoryMappedFiles/5.0.0.0": {
  3324. "compile": {
  3325. "System.IO.MemoryMappedFiles.dll": {}
  3326. },
  3327. "compileOnly": true
  3328. },
  3329. "System.IO.Pipelines/5.0.0.0": {
  3330. "compile": {
  3331. "System.IO.Pipelines.dll": {}
  3332. },
  3333. "compileOnly": true
  3334. },
  3335. "System.IO.Pipes/5.0.0.0": {
  3336. "compile": {
  3337. "System.IO.Pipes.dll": {}
  3338. },
  3339. "compileOnly": true
  3340. },
  3341. "System.IO.UnmanagedMemoryStream/5.0.0.0": {
  3342. "compile": {
  3343. "System.IO.UnmanagedMemoryStream.dll": {}
  3344. },
  3345. "compileOnly": true
  3346. },
  3347. "System.Linq.Reference/5.0.0.0": {
  3348. "compile": {
  3349. "System.Linq.dll": {}
  3350. },
  3351. "compileOnly": true
  3352. },
  3353. "System.Linq.Expressions.Reference/5.0.0.0": {
  3354. "compile": {
  3355. "System.Linq.Expressions.dll": {}
  3356. },
  3357. "compileOnly": true
  3358. },
  3359. "System.Linq.Parallel/5.0.0.0": {
  3360. "compile": {
  3361. "System.Linq.Parallel.dll": {}
  3362. },
  3363. "compileOnly": true
  3364. },
  3365. "System.Linq.Queryable/5.0.0.0": {
  3366. "compile": {
  3367. "System.Linq.Queryable.dll": {}
  3368. },
  3369. "compileOnly": true
  3370. },
  3371. "System.Memory.Reference/5.0.0.0": {
  3372. "compile": {
  3373. "System.Memory.dll": {}
  3374. },
  3375. "compileOnly": true
  3376. },
  3377. "System.Net/4.0.0.0": {
  3378. "compile": {
  3379. "System.Net.dll": {}
  3380. },
  3381. "compileOnly": true
  3382. },
  3383. "System.Net.Http/5.0.0.0": {
  3384. "compile": {
  3385. "System.Net.Http.dll": {}
  3386. },
  3387. "compileOnly": true
  3388. },
  3389. "System.Net.Http.Json/5.0.0.0": {
  3390. "compile": {
  3391. "System.Net.Http.Json.dll": {}
  3392. },
  3393. "compileOnly": true
  3394. },
  3395. "System.Net.HttpListener/5.0.0.0": {
  3396. "compile": {
  3397. "System.Net.HttpListener.dll": {}
  3398. },
  3399. "compileOnly": true
  3400. },
  3401. "System.Net.Mail/5.0.0.0": {
  3402. "compile": {
  3403. "System.Net.Mail.dll": {}
  3404. },
  3405. "compileOnly": true
  3406. },
  3407. "System.Net.NameResolution.Reference/5.0.0.0": {
  3408. "compile": {
  3409. "System.Net.NameResolution.dll": {}
  3410. },
  3411. "compileOnly": true
  3412. },
  3413. "System.Net.NetworkInformation/5.0.0.0": {
  3414. "compile": {
  3415. "System.Net.NetworkInformation.dll": {}
  3416. },
  3417. "compileOnly": true
  3418. },
  3419. "System.Net.Ping/5.0.0.0": {
  3420. "compile": {
  3421. "System.Net.Ping.dll": {}
  3422. },
  3423. "compileOnly": true
  3424. },
  3425. "System.Net.Primitives.Reference/5.0.0.0": {
  3426. "compile": {
  3427. "System.Net.Primitives.dll": {}
  3428. },
  3429. "compileOnly": true
  3430. },
  3431. "System.Net.Requests/5.0.0.0": {
  3432. "compile": {
  3433. "System.Net.Requests.dll": {}
  3434. },
  3435. "compileOnly": true
  3436. },
  3437. "System.Net.Security/5.0.0.0": {
  3438. "compile": {
  3439. "System.Net.Security.dll": {}
  3440. },
  3441. "compileOnly": true
  3442. },
  3443. "System.Net.ServicePoint/5.0.0.0": {
  3444. "compile": {
  3445. "System.Net.ServicePoint.dll": {}
  3446. },
  3447. "compileOnly": true
  3448. },
  3449. "System.Net.Sockets/5.0.0.0": {
  3450. "compile": {
  3451. "System.Net.Sockets.dll": {}
  3452. },
  3453. "compileOnly": true
  3454. },
  3455. "System.Net.WebClient/5.0.0.0": {
  3456. "compile": {
  3457. "System.Net.WebClient.dll": {}
  3458. },
  3459. "compileOnly": true
  3460. },
  3461. "System.Net.WebHeaderCollection/5.0.0.0": {
  3462. "compile": {
  3463. "System.Net.WebHeaderCollection.dll": {}
  3464. },
  3465. "compileOnly": true
  3466. },
  3467. "System.Net.WebProxy/5.0.0.0": {
  3468. "compile": {
  3469. "System.Net.WebProxy.dll": {}
  3470. },
  3471. "compileOnly": true
  3472. },
  3473. "System.Net.WebSockets.Client/5.0.0.0": {
  3474. "compile": {
  3475. "System.Net.WebSockets.Client.dll": {}
  3476. },
  3477. "compileOnly": true
  3478. },
  3479. "System.Net.WebSockets/5.0.0.0": {
  3480. "compile": {
  3481. "System.Net.WebSockets.dll": {}
  3482. },
  3483. "compileOnly": true
  3484. },
  3485. "System.Numerics/4.0.0.0": {
  3486. "compile": {
  3487. "System.Numerics.dll": {}
  3488. },
  3489. "compileOnly": true
  3490. },
  3491. "System.Numerics.Vectors/5.0.0.0": {
  3492. "compile": {
  3493. "System.Numerics.Vectors.dll": {}
  3494. },
  3495. "compileOnly": true
  3496. },
  3497. "System.ObjectModel.Reference/5.0.0.0": {
  3498. "compile": {
  3499. "System.ObjectModel.dll": {}
  3500. },
  3501. "compileOnly": true
  3502. },
  3503. "System.Reflection.DispatchProxy/5.0.0.0": {
  3504. "compile": {
  3505. "System.Reflection.DispatchProxy.dll": {}
  3506. },
  3507. "compileOnly": true
  3508. },
  3509. "System.Reflection.Reference/5.0.0.0": {
  3510. "compile": {
  3511. "System.Reflection.dll": {}
  3512. },
  3513. "compileOnly": true
  3514. },
  3515. "System.Reflection.Emit.Reference/5.0.0.0": {
  3516. "compile": {
  3517. "System.Reflection.Emit.dll": {}
  3518. },
  3519. "compileOnly": true
  3520. },
  3521. "System.Reflection.Emit.ILGeneration.Reference/5.0.0.0": {
  3522. "compile": {
  3523. "System.Reflection.Emit.ILGeneration.dll": {}
  3524. },
  3525. "compileOnly": true
  3526. },
  3527. "System.Reflection.Emit.Lightweight.Reference/5.0.0.0": {
  3528. "compile": {
  3529. "System.Reflection.Emit.Lightweight.dll": {}
  3530. },
  3531. "compileOnly": true
  3532. },
  3533. "System.Reflection.Extensions.Reference/5.0.0.0": {
  3534. "compile": {
  3535. "System.Reflection.Extensions.dll": {}
  3536. },
  3537. "compileOnly": true
  3538. },
  3539. "System.Reflection.Metadata.Reference/5.0.0.0": {
  3540. "compile": {
  3541. "System.Reflection.Metadata.dll": {}
  3542. },
  3543. "compileOnly": true
  3544. },
  3545. "System.Reflection.Primitives.Reference/5.0.0.0": {
  3546. "compile": {
  3547. "System.Reflection.Primitives.dll": {}
  3548. },
  3549. "compileOnly": true
  3550. },
  3551. "System.Reflection.TypeExtensions.Reference/5.0.0.0": {
  3552. "compile": {
  3553. "System.Reflection.TypeExtensions.dll": {}
  3554. },
  3555. "compileOnly": true
  3556. },
  3557. "System.Resources.Reader/5.0.0.0": {
  3558. "compile": {
  3559. "System.Resources.Reader.dll": {}
  3560. },
  3561. "compileOnly": true
  3562. },
  3563. "System.Resources.ResourceManager.Reference/5.0.0.0": {
  3564. "compile": {
  3565. "System.Resources.ResourceManager.dll": {}
  3566. },
  3567. "compileOnly": true
  3568. },
  3569. "System.Resources.Writer/5.0.0.0": {
  3570. "compile": {
  3571. "System.Resources.Writer.dll": {}
  3572. },
  3573. "compileOnly": true
  3574. },
  3575. "System.Runtime.CompilerServices.Unsafe.Reference/5.0.0.0": {
  3576. "compile": {
  3577. "System.Runtime.CompilerServices.Unsafe.dll": {}
  3578. },
  3579. "compileOnly": true
  3580. },
  3581. "System.Runtime.CompilerServices.VisualC/5.0.0.0": {
  3582. "compile": {
  3583. "System.Runtime.CompilerServices.VisualC.dll": {}
  3584. },
  3585. "compileOnly": true
  3586. },
  3587. "System.Runtime.Reference/5.0.0.0": {
  3588. "compile": {
  3589. "System.Runtime.dll": {}
  3590. },
  3591. "compileOnly": true
  3592. },
  3593. "System.Runtime.Extensions.Reference/5.0.0.0": {
  3594. "compile": {
  3595. "System.Runtime.Extensions.dll": {}
  3596. },
  3597. "compileOnly": true
  3598. },
  3599. "System.Runtime.Handles.Reference/5.0.0.0": {
  3600. "compile": {
  3601. "System.Runtime.Handles.dll": {}
  3602. },
  3603. "compileOnly": true
  3604. },
  3605. "System.Runtime.InteropServices.Reference/5.0.0.0": {
  3606. "compile": {
  3607. "System.Runtime.InteropServices.dll": {}
  3608. },
  3609. "compileOnly": true
  3610. },
  3611. "System.Runtime.InteropServices.RuntimeInformation.Reference/5.0.0.0": {
  3612. "compile": {
  3613. "System.Runtime.InteropServices.RuntimeInformation.dll": {}
  3614. },
  3615. "compileOnly": true
  3616. },
  3617. "System.Runtime.Intrinsics/5.0.0.0": {
  3618. "compile": {
  3619. "System.Runtime.Intrinsics.dll": {}
  3620. },
  3621. "compileOnly": true
  3622. },
  3623. "System.Runtime.Loader/5.0.0.0": {
  3624. "compile": {
  3625. "System.Runtime.Loader.dll": {}
  3626. },
  3627. "compileOnly": true
  3628. },
  3629. "System.Runtime.Numerics/5.0.0.0": {
  3630. "compile": {
  3631. "System.Runtime.Numerics.dll": {}
  3632. },
  3633. "compileOnly": true
  3634. },
  3635. "System.Runtime.Serialization/4.0.0.0": {
  3636. "compile": {
  3637. "System.Runtime.Serialization.dll": {}
  3638. },
  3639. "compileOnly": true
  3640. },
  3641. "System.Runtime.Serialization.Formatters.Reference/5.0.0.0": {
  3642. "compile": {
  3643. "System.Runtime.Serialization.Formatters.dll": {}
  3644. },
  3645. "compileOnly": true
  3646. },
  3647. "System.Runtime.Serialization.Json.Reference/5.0.0.0": {
  3648. "compile": {
  3649. "System.Runtime.Serialization.Json.dll": {}
  3650. },
  3651. "compileOnly": true
  3652. },
  3653. "System.Runtime.Serialization.Primitives.Reference/5.0.0.0": {
  3654. "compile": {
  3655. "System.Runtime.Serialization.Primitives.dll": {}
  3656. },
  3657. "compileOnly": true
  3658. },
  3659. "System.Runtime.Serialization.Xml/5.0.0.0": {
  3660. "compile": {
  3661. "System.Runtime.Serialization.Xml.dll": {}
  3662. },
  3663. "compileOnly": true
  3664. },
  3665. "System.Security.AccessControl.Reference/5.0.0.0": {
  3666. "compile": {
  3667. "System.Security.AccessControl.dll": {}
  3668. },
  3669. "compileOnly": true
  3670. },
  3671. "System.Security.Claims/5.0.0.0": {
  3672. "compile": {
  3673. "System.Security.Claims.dll": {}
  3674. },
  3675. "compileOnly": true
  3676. },
  3677. "System.Security.Cryptography.Algorithms/5.0.0.0": {
  3678. "compile": {
  3679. "System.Security.Cryptography.Algorithms.dll": {}
  3680. },
  3681. "compileOnly": true
  3682. },
  3683. "System.Security.Cryptography.Cng.Reference/5.0.0.0": {
  3684. "compile": {
  3685. "System.Security.Cryptography.Cng.dll": {}
  3686. },
  3687. "compileOnly": true
  3688. },
  3689. "System.Security.Cryptography.Csp/5.0.0.0": {
  3690. "compile": {
  3691. "System.Security.Cryptography.Csp.dll": {}
  3692. },
  3693. "compileOnly": true
  3694. },
  3695. "System.Security.Cryptography.Encoding/5.0.0.0": {
  3696. "compile": {
  3697. "System.Security.Cryptography.Encoding.dll": {}
  3698. },
  3699. "compileOnly": true
  3700. },
  3701. "System.Security.Cryptography.Primitives.Reference/5.0.0.0": {
  3702. "compile": {
  3703. "System.Security.Cryptography.Primitives.dll": {}
  3704. },
  3705. "compileOnly": true
  3706. },
  3707. "System.Security.Cryptography.X509Certificates/5.0.0.0": {
  3708. "compile": {
  3709. "System.Security.Cryptography.X509Certificates.dll": {}
  3710. },
  3711. "compileOnly": true
  3712. },
  3713. "System.Security.Cryptography.Xml/5.0.0.0": {
  3714. "compile": {
  3715. "System.Security.Cryptography.Xml.dll": {}
  3716. },
  3717. "compileOnly": true
  3718. },
  3719. "System.Security/4.0.0.0": {
  3720. "compile": {
  3721. "System.Security.dll": {}
  3722. },
  3723. "compileOnly": true
  3724. },
  3725. "System.Security.Permissions.Reference/5.0.0.0": {
  3726. "compile": {
  3727. "System.Security.Permissions.dll": {}
  3728. },
  3729. "compileOnly": true
  3730. },
  3731. "System.Security.Principal/5.0.0.0": {
  3732. "compile": {
  3733. "System.Security.Principal.dll": {}
  3734. },
  3735. "compileOnly": true
  3736. },
  3737. "System.Security.Principal.Windows.Reference/5.0.0.0": {
  3738. "compile": {
  3739. "System.Security.Principal.Windows.dll": {}
  3740. },
  3741. "compileOnly": true
  3742. },
  3743. "System.Security.SecureString.Reference/5.0.0.0": {
  3744. "compile": {
  3745. "System.Security.SecureString.dll": {}
  3746. },
  3747. "compileOnly": true
  3748. },
  3749. "System.ServiceModel.Web/4.0.0.0": {
  3750. "compile": {
  3751. "System.ServiceModel.Web.dll": {}
  3752. },
  3753. "compileOnly": true
  3754. },
  3755. "System.ServiceProcess/4.0.0.0": {
  3756. "compile": {
  3757. "System.ServiceProcess.dll": {}
  3758. },
  3759. "compileOnly": true
  3760. },
  3761. "System.Text.Encoding.CodePages.Reference/5.0.0.0": {
  3762. "compile": {
  3763. "System.Text.Encoding.CodePages.dll": {}
  3764. },
  3765. "compileOnly": true
  3766. },
  3767. "System.Text.Encoding.Reference/5.0.0.0": {
  3768. "compile": {
  3769. "System.Text.Encoding.dll": {}
  3770. },
  3771. "compileOnly": true
  3772. },
  3773. "System.Text.Encoding.Extensions.Reference/5.0.0.0": {
  3774. "compile": {
  3775. "System.Text.Encoding.Extensions.dll": {}
  3776. },
  3777. "compileOnly": true
  3778. },
  3779. "System.Text.Encodings.Web.Reference/5.0.0.0": {
  3780. "compile": {
  3781. "System.Text.Encodings.Web.dll": {}
  3782. },
  3783. "compileOnly": true
  3784. },
  3785. "System.Text.Json/5.0.0.0": {
  3786. "compile": {
  3787. "System.Text.Json.dll": {}
  3788. },
  3789. "compileOnly": true
  3790. },
  3791. "System.Text.RegularExpressions.Reference/5.0.0.0": {
  3792. "compile": {
  3793. "System.Text.RegularExpressions.dll": {}
  3794. },
  3795. "compileOnly": true
  3796. },
  3797. "System.Threading.Channels/5.0.0.0": {
  3798. "compile": {
  3799. "System.Threading.Channels.dll": {}
  3800. },
  3801. "compileOnly": true
  3802. },
  3803. "System.Threading.Reference/5.0.0.0": {
  3804. "compile": {
  3805. "System.Threading.dll": {}
  3806. },
  3807. "compileOnly": true
  3808. },
  3809. "System.Threading.Overlapped/5.0.0.0": {
  3810. "compile": {
  3811. "System.Threading.Overlapped.dll": {}
  3812. },
  3813. "compileOnly": true
  3814. },
  3815. "System.Threading.Tasks.Dataflow/5.0.0.0": {
  3816. "compile": {
  3817. "System.Threading.Tasks.Dataflow.dll": {}
  3818. },
  3819. "compileOnly": true
  3820. },
  3821. "System.Threading.Tasks.Reference/5.0.0.0": {
  3822. "compile": {
  3823. "System.Threading.Tasks.dll": {}
  3824. },
  3825. "compileOnly": true
  3826. },
  3827. "System.Threading.Tasks.Extensions.Reference/5.0.0.0": {
  3828. "compile": {
  3829. "System.Threading.Tasks.Extensions.dll": {}
  3830. },
  3831. "compileOnly": true
  3832. },
  3833. "System.Threading.Tasks.Parallel/5.0.0.0": {
  3834. "compile": {
  3835. "System.Threading.Tasks.Parallel.dll": {}
  3836. },
  3837. "compileOnly": true
  3838. },
  3839. "System.Threading.Thread/5.0.0.0": {
  3840. "compile": {
  3841. "System.Threading.Thread.dll": {}
  3842. },
  3843. "compileOnly": true
  3844. },
  3845. "System.Threading.ThreadPool/5.0.0.0": {
  3846. "compile": {
  3847. "System.Threading.ThreadPool.dll": {}
  3848. },
  3849. "compileOnly": true
  3850. },
  3851. "System.Threading.Timer.Reference/5.0.0.0": {
  3852. "compile": {
  3853. "System.Threading.Timer.dll": {}
  3854. },
  3855. "compileOnly": true
  3856. },
  3857. "System.Transactions/4.0.0.0": {
  3858. "compile": {
  3859. "System.Transactions.dll": {}
  3860. },
  3861. "compileOnly": true
  3862. },
  3863. "System.Transactions.Local/5.0.0.0": {
  3864. "compile": {
  3865. "System.Transactions.Local.dll": {}
  3866. },
  3867. "compileOnly": true
  3868. },
  3869. "System.ValueTuple/4.0.3.0": {
  3870. "compile": {
  3871. "System.ValueTuple.dll": {}
  3872. },
  3873. "compileOnly": true
  3874. },
  3875. "System.Web/4.0.0.0": {
  3876. "compile": {
  3877. "System.Web.dll": {}
  3878. },
  3879. "compileOnly": true
  3880. },
  3881. "System.Web.HttpUtility/5.0.0.0": {
  3882. "compile": {
  3883. "System.Web.HttpUtility.dll": {}
  3884. },
  3885. "compileOnly": true
  3886. },
  3887. "System.Windows/4.0.0.0": {
  3888. "compile": {
  3889. "System.Windows.dll": {}
  3890. },
  3891. "compileOnly": true
  3892. },
  3893. "System.Windows.Extensions.Reference/5.0.0.0": {
  3894. "compile": {
  3895. "System.Windows.Extensions.dll": {}
  3896. },
  3897. "compileOnly": true
  3898. },
  3899. "System.Xml/4.0.0.0": {
  3900. "compile": {
  3901. "System.Xml.dll": {}
  3902. },
  3903. "compileOnly": true
  3904. },
  3905. "System.Xml.Linq/4.0.0.0": {
  3906. "compile": {
  3907. "System.Xml.Linq.dll": {}
  3908. },
  3909. "compileOnly": true
  3910. },
  3911. "System.Xml.ReaderWriter.Reference/5.0.0.0": {
  3912. "compile": {
  3913. "System.Xml.ReaderWriter.dll": {}
  3914. },
  3915. "compileOnly": true
  3916. },
  3917. "System.Xml.Serialization/4.0.0.0": {
  3918. "compile": {
  3919. "System.Xml.Serialization.dll": {}
  3920. },
  3921. "compileOnly": true
  3922. },
  3923. "System.Xml.XDocument.Reference/5.0.0.0": {
  3924. "compile": {
  3925. "System.Xml.XDocument.dll": {}
  3926. },
  3927. "compileOnly": true
  3928. },
  3929. "System.Xml.XmlDocument.Reference/5.0.0.0": {
  3930. "compile": {
  3931. "System.Xml.XmlDocument.dll": {}
  3932. },
  3933. "compileOnly": true
  3934. },
  3935. "System.Xml.XmlSerializer.Reference/5.0.0.0": {
  3936. "compile": {
  3937. "System.Xml.XmlSerializer.dll": {}
  3938. },
  3939. "compileOnly": true
  3940. },
  3941. "System.Xml.XPath/5.0.0.0": {
  3942. "compile": {
  3943. "System.Xml.XPath.dll": {}
  3944. },
  3945. "compileOnly": true
  3946. },
  3947. "System.Xml.XPath.XDocument/5.0.0.0": {
  3948. "compile": {
  3949. "System.Xml.XPath.XDocument.dll": {}
  3950. },
  3951. "compileOnly": true
  3952. },
  3953. "WindowsBase/4.0.0.0": {
  3954. "compile": {
  3955. "WindowsBase.dll": {}
  3956. },
  3957. "compileOnly": true
  3958. }
  3959. }
  3960. },
  3961. "libraries": {
  3962. "ScreeningTest/1.0.0": {
  3963. "type": "project",
  3964. "serviceable": false,
  3965. "sha512": ""
  3966. },
  3967. "AutoMapper/10.1.1": {
  3968. "type": "package",
  3969. "serviceable": true,
  3970. "sha512": "sha512-uMgbqOdu9ZG5cIOty0C85hzzayBH2i9BthnS5FlMqKtMSHDv4ts81a2jS1VFaDBVhlBeIqJ/kQKjQY95BZde9w==",
  3971. "path": "automapper/10.1.1",
  3972. "hashPath": "automapper.10.1.1.nupkg.sha512"
  3973. },
  3974. "Humanizer.Core/2.8.26": {
  3975. "type": "package",
  3976. "serviceable": true,
  3977. "sha512": "sha512-OiKusGL20vby4uDEswj2IgkdchC1yQ6rwbIkZDVBPIR6al2b7n3pC91elBul9q33KaBgRKhbZH3+2Ur4fnWx2A==",
  3978. "path": "humanizer.core/2.8.26",
  3979. "hashPath": "humanizer.core.2.8.26.nupkg.sha512"
  3980. },
  3981. "MailKit/2.13.0": {
  3982. "type": "package",
  3983. "serviceable": true,
  3984. "sha512": "sha512-h+2fxPnB/gb+8nniTwetvooM8r9nmbWVF116uXZn8d4+k6V+mf+IOA4Gqb7nwHcZooale0s/v13O7B/6StRHJA==",
  3985. "path": "mailkit/2.13.0",
  3986. "hashPath": "mailkit.2.13.0.nupkg.sha512"
  3987. },
  3988. "Microsoft.AspNet.Identity.Core/2.2.3": {
  3989. "type": "package",
  3990. "serviceable": true,
  3991. "sha512": "sha512-Mv5FpoaxspE8hlWLE4r1IdZtovg/OyFgVRhxQbx47J4sqdLImN1hnM1lnwCj+/wLmqtqFk/RYMoZ5GAcwm/00g==",
  3992. "path": "microsoft.aspnet.identity.core/2.2.3",
  3993. "hashPath": "microsoft.aspnet.identity.core.2.2.3.nupkg.sha512"
  3994. },
  3995. "Microsoft.AspNetCore.Cryptography.Internal/5.0.6": {
  3996. "type": "package",
  3997. "serviceable": true,
  3998. "sha512": "sha512-iJYBphYXA0BLEzVwJDFpYuWN9yrZkPZIrOoHKthLuAA3pbv2rBRrDgiTp244ZQ8LGLVUa11VOBDncmFexZuhCg==",
  3999. "path": "microsoft.aspnetcore.cryptography.internal/5.0.6",
  4000. "hashPath": "microsoft.aspnetcore.cryptography.internal.5.0.6.nupkg.sha512"
  4001. },
  4002. "Microsoft.AspNetCore.Cryptography.KeyDerivation/5.0.6": {
  4003. "type": "package",
  4004. "serviceable": true,
  4005. "sha512": "sha512-868Bpz85BwdDIEFdYxufcffDgm9soYTf6EUBLWpJg6gQ+HaeyWvvJyjpSsnZhuTekvloN+NHiVN5bEi1/jQFbA==",
  4006. "path": "microsoft.aspnetcore.cryptography.keyderivation/5.0.6",
  4007. "hashPath": "microsoft.aspnetcore.cryptography.keyderivation.5.0.6.nupkg.sha512"
  4008. },
  4009. "Microsoft.AspNetCore.Html.Abstractions/2.2.0": {
  4010. "type": "package",
  4011. "serviceable": true,
  4012. "sha512": "sha512-Y4rs5aMEXY8G7wJo5S3EEt6ltqyOTr/qOeZzfn+hw/fuQj5GppGckMY5psGLETo1U9hcT5MmAhaT5xtusM1b5g==",
  4013. "path": "microsoft.aspnetcore.html.abstractions/2.2.0",
  4014. "hashPath": "microsoft.aspnetcore.html.abstractions.2.2.0.nupkg.sha512"
  4015. },
  4016. "Microsoft.AspNetCore.Identity.EntityFrameworkCore/5.0.6": {
  4017. "type": "package",
  4018. "serviceable": true,
  4019. "sha512": "sha512-eUXOjgKe3O2sB5oA1doeSBe2Y02EnQ+MPjUlot0uGS1RhyDfF41Kp3HWON508JTzcfHiM2pWj9IIVdj9sQMvGw==",
  4020. "path": "microsoft.aspnetcore.identity.entityframeworkcore/5.0.6",
  4021. "hashPath": "microsoft.aspnetcore.identity.entityframeworkcore.5.0.6.nupkg.sha512"
  4022. },
  4023. "Microsoft.AspNetCore.Identity.UI/5.0.6": {
  4024. "type": "package",
  4025. "serviceable": true,
  4026. "sha512": "sha512-PfTihuqKSNtB5i2JrWsuA89TEfc2+2O/PPOew8W2uLHtwUOe34fd5MciOEuJwzK5AdIfqWd9/WwBPCpl+NFkTg==",
  4027. "path": "microsoft.aspnetcore.identity.ui/5.0.6",
  4028. "hashPath": "microsoft.aspnetcore.identity.ui.5.0.6.nupkg.sha512"
  4029. },
  4030. "Microsoft.AspNetCore.Mvc.Razor.Extensions/5.0.7": {
  4031. "type": "package",
  4032. "serviceable": true,
  4033. "sha512": "sha512-kg5RDNGHq9WRsJOE5AiEg0UaT0qGdlChqzLkpbq+kN65ZBUT5q23mje6n44tECdGnK5BVPZzwwD69CLnpC0fsg==",
  4034. "path": "microsoft.aspnetcore.mvc.razor.extensions/5.0.7",
  4035. "hashPath": "microsoft.aspnetcore.mvc.razor.extensions.5.0.7.nupkg.sha512"
  4036. },
  4037. "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation/5.0.7": {
  4038. "type": "package",
  4039. "serviceable": true,
  4040. "sha512": "sha512-XaReWUymXpJLy8t37ZmIrvtfJKBZ99qTByRBv1SmUqfHzZdq71XEYqp4F9zoa6jG1OoXvKegThiUbqEPPBeoaw==",
  4041. "path": "microsoft.aspnetcore.mvc.razor.runtimecompilation/5.0.7",
  4042. "hashPath": "microsoft.aspnetcore.mvc.razor.runtimecompilation.5.0.7.nupkg.sha512"
  4043. },
  4044. "Microsoft.AspNetCore.Razor/2.2.0": {
  4045. "type": "package",
  4046. "serviceable": true,
  4047. "sha512": "sha512-V54PIyDCFl8COnTp9gezNHpUNHk7F9UnerGeZy3UfbnwYvfzbo+ipqQmSgeoESH8e0JvKhRTyQyZquW2EPtCmg==",
  4048. "path": "microsoft.aspnetcore.razor/2.2.0",
  4049. "hashPath": "microsoft.aspnetcore.razor.2.2.0.nupkg.sha512"
  4050. },
  4051. "Microsoft.AspNetCore.Razor.Language/5.0.7": {
  4052. "type": "package",
  4053. "serviceable": true,
  4054. "sha512": "sha512-U5lqzXIbvS31gPWYgRbJtbPVIlJaLYVjCOpOo0QnhhMDuCv0kxLXjAq30OCUMzq+2gmaa4XsLYHs9n7hXYRLWA==",
  4055. "path": "microsoft.aspnetcore.razor.language/5.0.7",
  4056. "hashPath": "microsoft.aspnetcore.razor.language.5.0.7.nupkg.sha512"
  4057. },
  4058. "Microsoft.AspNetCore.Razor.Runtime/2.2.0": {
  4059. "type": "package",
  4060. "serviceable": true,
  4061. "sha512": "sha512-7YqK+H61lN6yj9RiQUko7oaOhKtRR9Q/kBcoWNRemhJdTIWOh1OmdvJKzZrMWOlff3BAjejkPQm+0V0qXk+B1w==",
  4062. "path": "microsoft.aspnetcore.razor.runtime/2.2.0",
  4063. "hashPath": "microsoft.aspnetcore.razor.runtime.2.2.0.nupkg.sha512"
  4064. },
  4065. "Microsoft.Bcl.AsyncInterfaces/1.1.1": {
  4066. "type": "package",
  4067. "serviceable": true,
  4068. "sha512": "sha512-yuvf07qFWFqtK3P/MRkEKLhn5r2UbSpVueRziSqj0yJQIKFwG1pq9mOayK3zE5qZCTs0CbrwL9M6R8VwqyGy2w==",
  4069. "path": "microsoft.bcl.asyncinterfaces/1.1.1",
  4070. "hashPath": "microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512"
  4071. },
  4072. "Microsoft.CodeAnalysis.Analyzers/3.0.0": {
  4073. "type": "package",
  4074. "serviceable": true,
  4075. "sha512": "sha512-ojG5pGAhTPmjxRGTNvuszO3H8XPZqksDwr9xLd4Ae/JBjZZdl6GuoLk7uLMf+o7yl5wO0TAqoWcEKkEWqrZE5g==",
  4076. "path": "microsoft.codeanalysis.analyzers/3.0.0",
  4077. "hashPath": "microsoft.codeanalysis.analyzers.3.0.0.nupkg.sha512"
  4078. },
  4079. "Microsoft.CodeAnalysis.Common/3.8.0": {
  4080. "type": "package",
  4081. "serviceable": true,
  4082. "sha512": "sha512-8YTZ7GpsbTdC08DITx7/kwV0k4SC6cbBAFqc13cOm5vKJZcEIAh51tNSyGSkWisMgYCr96B2wb5Zri1bsla3+g==",
  4083. "path": "microsoft.codeanalysis.common/3.8.0",
  4084. "hashPath": "microsoft.codeanalysis.common.3.8.0.nupkg.sha512"
  4085. },
  4086. "Microsoft.CodeAnalysis.CSharp/3.8.0": {
  4087. "type": "package",
  4088. "serviceable": true,
  4089. "sha512": "sha512-hKqFCUSk9TIMBDjiYMF8/ZfK9p9mzpU+slM73CaCHu4ctfkoqJGHLQhyT8wvrYsIg+ufrUWBF8hcJYmyr5rc5Q==",
  4090. "path": "microsoft.codeanalysis.csharp/3.8.0",
  4091. "hashPath": "microsoft.codeanalysis.csharp.3.8.0.nupkg.sha512"
  4092. },
  4093. "Microsoft.CodeAnalysis.CSharp.Workspaces/3.8.0": {
  4094. "type": "package",
  4095. "serviceable": true,
  4096. "sha512": "sha512-rdEBvPWqe/IIscsnp7OkZ4tQin8khxBcSLyV9tU+sHdw9uW9U0GKL+Dv2rD4voC1bZBaO18Hp+m4Vkyfmaz0OA==",
  4097. "path": "microsoft.codeanalysis.csharp.workspaces/3.8.0",
  4098. "hashPath": "microsoft.codeanalysis.csharp.workspaces.3.8.0.nupkg.sha512"
  4099. },
  4100. "Microsoft.CodeAnalysis.Razor/5.0.7": {
  4101. "type": "package",
  4102. "serviceable": true,
  4103. "sha512": "sha512-tZ/oTpkhHmSSMJ1crrcUPQGw6nNypn+AEqm3rJ4hAudC/E4ztG+gqV+koCOrQhOmqGPPyjQCudky/JmatkQjgA==",
  4104. "path": "microsoft.codeanalysis.razor/5.0.7",
  4105. "hashPath": "microsoft.codeanalysis.razor.5.0.7.nupkg.sha512"
  4106. },
  4107. "Microsoft.CodeAnalysis.Workspaces.Common/3.8.0": {
  4108. "type": "package",
  4109. "serviceable": true,
  4110. "sha512": "sha512-GPYVydsmOmScOWDJA1LFky7/MkoXpx1JI3lZJShxC+bvVUvL9zVKE8WDZMLsYJ5MAbry2xkZftdfeMpZ+kvLDQ==",
  4111. "path": "microsoft.codeanalysis.workspaces.common/3.8.0",
  4112. "hashPath": "microsoft.codeanalysis.workspaces.common.3.8.0.nupkg.sha512"
  4113. },
  4114. "Microsoft.CSharp/4.7.0": {
  4115. "type": "package",
  4116. "serviceable": true,
  4117. "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  4118. "path": "microsoft.csharp/4.7.0",
  4119. "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512"
  4120. },
  4121. "Microsoft.Data.SqlClient/2.0.1": {
  4122. "type": "package",
  4123. "serviceable": true,
  4124. "sha512": "sha512-cff+ug/XZnGmX6DFgLY92t7G9W3i8r23w5Qnuby41l9rS+X+f7Y51hV5glvIrmsu3tIcnxbR+Z4CQ2zGhksIJw==",
  4125. "path": "microsoft.data.sqlclient/2.0.1",
  4126. "hashPath": "microsoft.data.sqlclient.2.0.1.nupkg.sha512"
  4127. },
  4128. "Microsoft.Data.SqlClient.SNI.runtime/2.0.1": {
  4129. "type": "package",
  4130. "serviceable": true,
  4131. "sha512": "sha512-MalWSIMdwLZoNXxjmFmeRrFgaUXbEADkYNGm6HM33pculFv8gKt53s1Frs+kTfVPWMYjocd4gqwz92KrkcLfXA==",
  4132. "path": "microsoft.data.sqlclient.sni.runtime/2.0.1",
  4133. "hashPath": "microsoft.data.sqlclient.sni.runtime.2.0.1.nupkg.sha512"
  4134. },
  4135. "Microsoft.EntityFrameworkCore/5.0.7": {
  4136. "type": "package",
  4137. "serviceable": true,
  4138. "sha512": "sha512-VAvmiQPdw0PUh3X7k9k7haVnCfQuDgyki9rq5XVk0gXJFeh+bwqPzPrY71A08O5TjnIeK9lEggXDnMuhQXUUww==",
  4139. "path": "microsoft.entityframeworkcore/5.0.7",
  4140. "hashPath": "microsoft.entityframeworkcore.5.0.7.nupkg.sha512"
  4141. },
  4142. "Microsoft.EntityFrameworkCore.Abstractions/5.0.7": {
  4143. "type": "package",
  4144. "serviceable": true,
  4145. "sha512": "sha512-MM5M9vYDLUXCePUGN2WZ0MkNcNj74sIgyVR9v7tW6abRULtBWPcyZf6zLYhZYpRgPXcahcME+Koscz9kP2DxyA==",
  4146. "path": "microsoft.entityframeworkcore.abstractions/5.0.7",
  4147. "hashPath": "microsoft.entityframeworkcore.abstractions.5.0.7.nupkg.sha512"
  4148. },
  4149. "Microsoft.EntityFrameworkCore.Analyzers/5.0.7": {
  4150. "type": "package",
  4151. "serviceable": true,
  4152. "sha512": "sha512-ZShPEOZaQhBZqDObU3+kigEmlEGug37F8v/jpQgVs1XfHrLeXVyk+p94DBH4f+bUUHUbsEEcIbU6OhUBtWZztg==",
  4153. "path": "microsoft.entityframeworkcore.analyzers/5.0.7",
  4154. "hashPath": "microsoft.entityframeworkcore.analyzers.5.0.7.nupkg.sha512"
  4155. },
  4156. "Microsoft.EntityFrameworkCore.Design/5.0.6": {
  4157. "type": "package",
  4158. "serviceable": true,
  4159. "sha512": "sha512-2hjMovtUx3zvMMJDNjFFtYbiYRg7SNAyRe3JQzCYy7kXfADcyr7tuf9meq0lxGZBf8qvilYcDaBj5M+iq90krQ==",
  4160. "path": "microsoft.entityframeworkcore.design/5.0.6",
  4161. "hashPath": "microsoft.entityframeworkcore.design.5.0.6.nupkg.sha512"
  4162. },
  4163. "Microsoft.EntityFrameworkCore.Relational/5.0.7": {
  4164. "type": "package",
  4165. "serviceable": true,
  4166. "sha512": "sha512-W3nj58s5GX8KFQwZaytERGy3tTqutjWK6309KCpXaVtVvuYf3GE3R0lrouxONzLynLG8hsODcs2gym5QQoqtSg==",
  4167. "path": "microsoft.entityframeworkcore.relational/5.0.7",
  4168. "hashPath": "microsoft.entityframeworkcore.relational.5.0.7.nupkg.sha512"
  4169. },
  4170. "Microsoft.EntityFrameworkCore.SqlServer/5.0.6": {
  4171. "type": "package",
  4172. "serviceable": true,
  4173. "sha512": "sha512-OQFZB8hOaaU+VO62MHdkAVkPbfH+Yx8Kp+Bp+LKnmX7HxDGe/8DEOJSoHKAE8gFUTaSnJ5/OvBKNxXefeAyT0g==",
  4174. "path": "microsoft.entityframeworkcore.sqlserver/5.0.6",
  4175. "hashPath": "microsoft.entityframeworkcore.sqlserver.5.0.6.nupkg.sha512"
  4176. },
  4177. "Microsoft.EntityFrameworkCore.Tools/5.0.6": {
  4178. "type": "package",
  4179. "serviceable": true,
  4180. "sha512": "sha512-eh3jspEKaDu/q3+YqdZ6V1Htwjn/eMp5rT9KGHFw4GEKUIg7CVNzGtZ57ZV5HwBus4A/6OcGUGa6/J72UU8ZUg==",
  4181. "path": "microsoft.entityframeworkcore.tools/5.0.6",
  4182. "hashPath": "microsoft.entityframeworkcore.tools.5.0.6.nupkg.sha512"
  4183. },
  4184. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  4185. "type": "package",
  4186. "serviceable": true,
  4187. "sha512": "sha512-bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==",
  4188. "path": "microsoft.extensions.caching.abstractions/5.0.0",
  4189. "hashPath": "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512"
  4190. },
  4191. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  4192. "type": "package",
  4193. "serviceable": true,
  4194. "sha512": "sha512-/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==",
  4195. "path": "microsoft.extensions.caching.memory/5.0.0",
  4196. "hashPath": "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512"
  4197. },
  4198. "Microsoft.Extensions.Configuration/5.0.0": {
  4199. "type": "package",
  4200. "serviceable": true,
  4201. "sha512": "sha512-LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
  4202. "path": "microsoft.extensions.configuration/5.0.0",
  4203. "hashPath": "microsoft.extensions.configuration.5.0.0.nupkg.sha512"
  4204. },
  4205. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  4206. "type": "package",
  4207. "serviceable": true,
  4208. "sha512": "sha512-ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
  4209. "path": "microsoft.extensions.configuration.abstractions/5.0.0",
  4210. "hashPath": "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512"
  4211. },
  4212. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  4213. "type": "package",
  4214. "serviceable": true,
  4215. "sha512": "sha512-Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
  4216. "path": "microsoft.extensions.configuration.binder/5.0.0",
  4217. "hashPath": "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512"
  4218. },
  4219. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  4220. "type": "package",
  4221. "serviceable": true,
  4222. "sha512": "sha512-rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
  4223. "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
  4224. "hashPath": "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512"
  4225. },
  4226. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  4227. "type": "package",
  4228. "serviceable": true,
  4229. "sha512": "sha512-Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
  4230. "path": "microsoft.extensions.configuration.json/5.0.0",
  4231. "hashPath": "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512"
  4232. },
  4233. "Microsoft.Extensions.DependencyInjection/5.0.1": {
  4234. "type": "package",
  4235. "serviceable": true,
  4236. "sha512": "sha512-//mDNrYeiJ0eh/awFhDFJQzkRVra/njU5Y4fyK7X29g5HScrzbUkKOKlyTtygthcGFt4zNC8G5CFCjb/oizomA==",
  4237. "path": "microsoft.extensions.dependencyinjection/5.0.1",
  4238. "hashPath": "microsoft.extensions.dependencyinjection.5.0.1.nupkg.sha512"
  4239. },
  4240. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  4241. "type": "package",
  4242. "serviceable": true,
  4243. "sha512": "sha512-ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
  4244. "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
  4245. "hashPath": "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512"
  4246. },
  4247. "Microsoft.Extensions.DependencyModel/5.0.0": {
  4248. "type": "package",
  4249. "serviceable": true,
  4250. "sha512": "sha512-umBECCoMC+sOUgm083yFr8SxTobUOcPFH4AXigdO2xJiszCHAnmeDl4qPphJt+oaJ/XIfV1wOjIts2nRnki61Q==",
  4251. "path": "microsoft.extensions.dependencymodel/5.0.0",
  4252. "hashPath": "microsoft.extensions.dependencymodel.5.0.0.nupkg.sha512"
  4253. },
  4254. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  4255. "type": "package",
  4256. "serviceable": true,
  4257. "sha512": "sha512-iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
  4258. "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
  4259. "hashPath": "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512"
  4260. },
  4261. "Microsoft.Extensions.FileProviders.Embedded/5.0.6": {
  4262. "type": "package",
  4263. "serviceable": true,
  4264. "sha512": "sha512-W3HjLWtCjrz/RXsIDznMKNJunGwvtWOm7ZQ2XUMnkbWLFLNPYhvmAx751E0HBgVEsSBPE3qZ2mZ8umm5B6k/og==",
  4265. "path": "microsoft.extensions.fileproviders.embedded/5.0.6",
  4266. "hashPath": "microsoft.extensions.fileproviders.embedded.5.0.6.nupkg.sha512"
  4267. },
  4268. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  4269. "type": "package",
  4270. "serviceable": true,
  4271. "sha512": "sha512-1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
  4272. "path": "microsoft.extensions.fileproviders.physical/5.0.0",
  4273. "hashPath": "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512"
  4274. },
  4275. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  4276. "type": "package",
  4277. "serviceable": true,
  4278. "sha512": "sha512-ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
  4279. "path": "microsoft.extensions.filesystemglobbing/5.0.0",
  4280. "hashPath": "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512"
  4281. },
  4282. "Microsoft.Extensions.Hosting.Abstractions/3.1.8": {
  4283. "type": "package",
  4284. "serviceable": true,
  4285. "sha512": "sha512-7ZJUKwPipkDvuv2KJPZ3r01wp2AWNMiYH+61i0dL89F7QICknjKpWgLKLpTSUYFgl77S3b4264I6i4HzDdrb2A==",
  4286. "path": "microsoft.extensions.hosting.abstractions/3.1.8",
  4287. "hashPath": "microsoft.extensions.hosting.abstractions.3.1.8.nupkg.sha512"
  4288. },
  4289. "Microsoft.Extensions.Identity.Core/5.0.6": {
  4290. "type": "package",
  4291. "serviceable": true,
  4292. "sha512": "sha512-RgppFgQKpUcrkfhGFum+kILfigdMM8bomgECh0J6DuM5uqR4/sL8/wi2Smad26uQ5j7cix5AyMjzmXbuXBLN+g==",
  4293. "path": "microsoft.extensions.identity.core/5.0.6",
  4294. "hashPath": "microsoft.extensions.identity.core.5.0.6.nupkg.sha512"
  4295. },
  4296. "Microsoft.Extensions.Identity.Stores/5.0.6": {
  4297. "type": "package",
  4298. "serviceable": true,
  4299. "sha512": "sha512-tm2V/IZZZHfFaAlUgYJLonfPdWUZMPjq6RDgh7bBTNZi+QJfu0Mji38hkK8YxSev9J0NlpubY/infVt+x4OQVA==",
  4300. "path": "microsoft.extensions.identity.stores/5.0.6",
  4301. "hashPath": "microsoft.extensions.identity.stores.5.0.6.nupkg.sha512"
  4302. },
  4303. "Microsoft.Extensions.Logging/5.0.0": {
  4304. "type": "package",
  4305. "serviceable": true,
  4306. "sha512": "sha512-MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
  4307. "path": "microsoft.extensions.logging/5.0.0",
  4308. "hashPath": "microsoft.extensions.logging.5.0.0.nupkg.sha512"
  4309. },
  4310. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  4311. "type": "package",
  4312. "serviceable": true,
  4313. "sha512": "sha512-NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
  4314. "path": "microsoft.extensions.logging.abstractions/5.0.0",
  4315. "hashPath": "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512"
  4316. },
  4317. "Microsoft.Extensions.Options/5.0.0": {
  4318. "type": "package",
  4319. "serviceable": true,
  4320. "sha512": "sha512-CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
  4321. "path": "microsoft.extensions.options/5.0.0",
  4322. "hashPath": "microsoft.extensions.options.5.0.0.nupkg.sha512"
  4323. },
  4324. "Microsoft.Extensions.Options.ConfigurationExtensions/2.0.0": {
  4325. "type": "package",
  4326. "serviceable": true,
  4327. "sha512": "sha512-Y/lGICwO27fCkQRK3tZseVzFjZaxfGmui990E67sB4MuiPzdJHnJDS/BeYWrHShSSBgCl4KyKRx4ux686fftPg==",
  4328. "path": "microsoft.extensions.options.configurationextensions/2.0.0",
  4329. "hashPath": "microsoft.extensions.options.configurationextensions.2.0.0.nupkg.sha512"
  4330. },
  4331. "Microsoft.Extensions.Primitives/5.0.0": {
  4332. "type": "package",
  4333. "serviceable": true,
  4334. "sha512": "sha512-cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
  4335. "path": "microsoft.extensions.primitives/5.0.0",
  4336. "hashPath": "microsoft.extensions.primitives.5.0.0.nupkg.sha512"
  4337. },
  4338. "Microsoft.Identity.Client/4.14.0": {
  4339. "type": "package",
  4340. "serviceable": true,
  4341. "sha512": "sha512-Etqux6Zuuv1yEN4UwKbAn6EZv0Rooc+vM4N9z7gxmeT7dyoKlXIRN44DQPzD9LV1CW0KsTVqH+2B42p1NKqPlQ==",
  4342. "path": "microsoft.identity.client/4.14.0",
  4343. "hashPath": "microsoft.identity.client.4.14.0.nupkg.sha512"
  4344. },
  4345. "Microsoft.IdentityModel.JsonWebTokens/5.6.0": {
  4346. "type": "package",
  4347. "serviceable": true,
  4348. "sha512": "sha512-0q0U1W+gX1jmfmv7uU7GXFGB518atmSwucxsVwPGpuaGS3jwd2tUi+Gau+ezxR6oAFEBFKG9lz/fxRZzGMeDXg==",
  4349. "path": "microsoft.identitymodel.jsonwebtokens/5.6.0",
  4350. "hashPath": "microsoft.identitymodel.jsonwebtokens.5.6.0.nupkg.sha512"
  4351. },
  4352. "Microsoft.IdentityModel.Logging/5.6.0": {
  4353. "type": "package",
  4354. "serviceable": true,
  4355. "sha512": "sha512-zEDrfEVW5x5w2hbTV94WwAcWvtue5hNTXYqoPh3ypF6U8csm09JazEYy+VPp2RtczkyMfcsvWY9Fea17e+isYQ==",
  4356. "path": "microsoft.identitymodel.logging/5.6.0",
  4357. "hashPath": "microsoft.identitymodel.logging.5.6.0.nupkg.sha512"
  4358. },
  4359. "Microsoft.IdentityModel.Protocols/5.6.0": {
  4360. "type": "package",
  4361. "serviceable": true,
  4362. "sha512": "sha512-ei7YqYx0pIFL6JjK8ZnPK0MXZRWUNHtJPUl3KqSvj9+2f5CMa6GRSEC+BMDHr17tP6yujYUg0IQOcKzmC7qN5g==",
  4363. "path": "microsoft.identitymodel.protocols/5.6.0",
  4364. "hashPath": "microsoft.identitymodel.protocols.5.6.0.nupkg.sha512"
  4365. },
  4366. "Microsoft.IdentityModel.Protocols.OpenIdConnect/5.6.0": {
  4367. "type": "package",
  4368. "serviceable": true,
  4369. "sha512": "sha512-yh3n+uXiwpBy/5+t67tYcmRxb9kwQdaKRyG/DNipRMF37bg5Jr0vENOo1BQz6OySMl5WIK544SzPjtr7/KkucA==",
  4370. "path": "microsoft.identitymodel.protocols.openidconnect/5.6.0",
  4371. "hashPath": "microsoft.identitymodel.protocols.openidconnect.5.6.0.nupkg.sha512"
  4372. },
  4373. "Microsoft.IdentityModel.Tokens/5.6.0": {
  4374. "type": "package",
  4375. "serviceable": true,
  4376. "sha512": "sha512-C3OqR3QfBQ7wcC7yAsdMQqay87OsV6yWPYG/Ai3n7dvmWIGkouQhXoVxRP0xz3cAFL4hxZBXyw4aLTC421PaMg==",
  4377. "path": "microsoft.identitymodel.tokens/5.6.0",
  4378. "hashPath": "microsoft.identitymodel.tokens.5.6.0.nupkg.sha512"
  4379. },
  4380. "Microsoft.NETCore.Platforms/3.1.0": {
  4381. "type": "package",
  4382. "serviceable": true,
  4383. "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
  4384. "path": "microsoft.netcore.platforms/3.1.0",
  4385. "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512"
  4386. },
  4387. "Microsoft.NETCore.Targets/1.1.3": {
  4388. "type": "package",
  4389. "serviceable": true,
  4390. "sha512": "sha512-3Wrmi0kJDzClwAC+iBdUBpEKmEle8FQNsCs77fkiOIw/9oYA07bL1EZNX0kQ2OMN3xpwvl0vAtOCYY3ndDNlhQ==",
  4391. "path": "microsoft.netcore.targets/1.1.3",
  4392. "hashPath": "microsoft.netcore.targets.1.1.3.nupkg.sha512"
  4393. },
  4394. "Microsoft.VisualStudio.Web.CodeGeneration/5.0.2": {
  4395. "type": "package",
  4396. "serviceable": true,
  4397. "sha512": "sha512-YUah81QG5q/ViVbr1BZcTbDLNJ5/k84fr+xx3/IoDVJR8KEUm89HmPAGM+FMMyWOjit+CIVpyOq7yEmRBBWXxQ==",
  4398. "path": "microsoft.visualstudio.web.codegeneration/5.0.2",
  4399. "hashPath": "microsoft.visualstudio.web.codegeneration.5.0.2.nupkg.sha512"
  4400. },
  4401. "Microsoft.VisualStudio.Web.CodeGeneration.Contracts/5.0.2": {
  4402. "type": "package",
  4403. "serviceable": true,
  4404. "sha512": "sha512-34v6AkkRJykgFq7rHwNbzXBsLFquevLuegM9XDQl2j+wyOfj+ql1++jUR1WdZoPkv04WoM09mD47S3lMzJmHrQ==",
  4405. "path": "microsoft.visualstudio.web.codegeneration.contracts/5.0.2",
  4406. "hashPath": "microsoft.visualstudio.web.codegeneration.contracts.5.0.2.nupkg.sha512"
  4407. },
  4408. "Microsoft.VisualStudio.Web.CodeGeneration.Core/5.0.2": {
  4409. "type": "package",
  4410. "serviceable": true,
  4411. "sha512": "sha512-R7mrxvTtv/MiEH42OtHYi/3L0A/vaAH8mwg+3yAyQtVuy6v9CeeVyL30lfTQ7EYV4ezUmuQKFwfjcU6PP0/KSQ==",
  4412. "path": "microsoft.visualstudio.web.codegeneration.core/5.0.2",
  4413. "hashPath": "microsoft.visualstudio.web.codegeneration.core.5.0.2.nupkg.sha512"
  4414. },
  4415. "Microsoft.VisualStudio.Web.CodeGeneration.Design/5.0.2": {
  4416. "type": "package",
  4417. "serviceable": true,
  4418. "sha512": "sha512-9eTZV7W+S2iO2AJD03xXyXJZ+Nf71Y25gMXhqyXb8bB63jPfn+VQhV8I1lb6J+NR3jW98m5EB9QBftBSrjgiYQ==",
  4419. "path": "microsoft.visualstudio.web.codegeneration.design/5.0.2",
  4420. "hashPath": "microsoft.visualstudio.web.codegeneration.design.5.0.2.nupkg.sha512"
  4421. },
  4422. "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/5.0.2": {
  4423. "type": "package",
  4424. "serviceable": true,
  4425. "sha512": "sha512-f9XeBRS9ICosrCpbO9jnAVMd/ISLhaZgx388XNBjigiyBJuq577J6tQgQWZA8PQTiPj6MKe9HVIW2GnKXDiUrQ==",
  4426. "path": "microsoft.visualstudio.web.codegeneration.entityframeworkcore/5.0.2",
  4427. "hashPath": "microsoft.visualstudio.web.codegeneration.entityframeworkcore.5.0.2.nupkg.sha512"
  4428. },
  4429. "Microsoft.VisualStudio.Web.CodeGeneration.Templating/5.0.2": {
  4430. "type": "package",
  4431. "serviceable": true,
  4432. "sha512": "sha512-P3z/JZTGP5DhSc8ik4xrimWuCZ2ZaEZ6q7WGgfgmSVibfXxwh2Oo+dtdkiXwq8MNlkrcP0AZAo3+1wowYUzluA==",
  4433. "path": "microsoft.visualstudio.web.codegeneration.templating/5.0.2",
  4434. "hashPath": "microsoft.visualstudio.web.codegeneration.templating.5.0.2.nupkg.sha512"
  4435. },
  4436. "Microsoft.VisualStudio.Web.CodeGeneration.Utils/5.0.2": {
  4437. "type": "package",
  4438. "serviceable": true,
  4439. "sha512": "sha512-4zViWGIFeKsGxDmc5xpn2G8kWs2FSHiLOolw85ZPHihDXc2jiFKp7qjA3SRt8U23kR3zeb0vZiFlETxgTHwAUA==",
  4440. "path": "microsoft.visualstudio.web.codegeneration.utils/5.0.2",
  4441. "hashPath": "microsoft.visualstudio.web.codegeneration.utils.5.0.2.nupkg.sha512"
  4442. },
  4443. "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/5.0.2": {
  4444. "type": "package",
  4445. "serviceable": true,
  4446. "sha512": "sha512-W4Uk2y0oja+4E+XP5d5OFu+ViTEtlqm3a6nYuuC3tjA+lTK6dLaMf0G6WnO4BO18i0kM0l49XjTwwXd5XpjnAQ==",
  4447. "path": "microsoft.visualstudio.web.codegenerators.mvc/5.0.2",
  4448. "hashPath": "microsoft.visualstudio.web.codegenerators.mvc.5.0.2.nupkg.sha512"
  4449. },
  4450. "Microsoft.Win32.Registry/4.7.0": {
  4451. "type": "package",
  4452. "serviceable": true,
  4453. "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
  4454. "path": "microsoft.win32.registry/4.7.0",
  4455. "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512"
  4456. },
  4457. "Microsoft.Win32.SystemEvents/4.7.0": {
  4458. "type": "package",
  4459. "serviceable": true,
  4460. "sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==",
  4461. "path": "microsoft.win32.systemevents/4.7.0",
  4462. "hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512"
  4463. },
  4464. "MimeKit/2.13.0": {
  4465. "type": "package",
  4466. "serviceable": true,
  4467. "sha512": "sha512-wkHUQzy/sAtWCifZfNDq24DB/xshYoc+QeynSCJPSNeeA51DzZWjVaRslyix/9OEGhdSsUtvisL66dpGp0THjw==",
  4468. "path": "mimekit/2.13.0",
  4469. "hashPath": "mimekit.2.13.0.nupkg.sha512"
  4470. },
  4471. "Newtonsoft.Json/13.0.1": {
  4472. "type": "package",
  4473. "serviceable": true,
  4474. "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
  4475. "path": "newtonsoft.json/13.0.1",
  4476. "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512"
  4477. },
  4478. "Npgsql/5.0.7": {
  4479. "type": "package",
  4480. "serviceable": true,
  4481. "sha512": "sha512-EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==",
  4482. "path": "npgsql/5.0.7",
  4483. "hashPath": "npgsql.5.0.7.nupkg.sha512"
  4484. },
  4485. "Npgsql.EntityFrameworkCore.PostgreSQL/5.0.7": {
  4486. "type": "package",
  4487. "serviceable": true,
  4488. "sha512": "sha512-RxFmJ0I4uppEAyR7b+xCfj4ZilUoGkKD4otUjiu+O3hv+vG6LUFOfJcB1ms5kOWTIvLEQHow9e+0zH7JWWV0ig==",
  4489. "path": "npgsql.entityframeworkcore.postgresql/5.0.7",
  4490. "hashPath": "npgsql.entityframeworkcore.postgresql.5.0.7.nupkg.sha512"
  4491. },
  4492. "Portable.BouncyCastle/1.8.10": {
  4493. "type": "package",
  4494. "serviceable": true,
  4495. "sha512": "sha512-XLhjNAwuVB9ynwn11l5K44eyozh8q6gFseTrlnLNttejimglX7+F9+vxh60LPjvA/DAt6fUdS43N3ah8K6eaWg==",
  4496. "path": "portable.bouncycastle/1.8.10",
  4497. "hashPath": "portable.bouncycastle.1.8.10.nupkg.sha512"
  4498. },
  4499. "runtime.native.System/4.3.0": {
  4500. "type": "package",
  4501. "serviceable": true,
  4502. "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  4503. "path": "runtime.native.system/4.3.0",
  4504. "hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
  4505. },
  4506. "Serilog/2.10.0": {
  4507. "type": "package",
  4508. "serviceable": true,
  4509. "sha512": "sha512-+QX0hmf37a0/OZLxM3wL7V6/ADvC1XihXN4Kq/p6d8lCPfgkRdiuhbWlMaFjR9Av0dy5F0+MBeDmDdRZN/YwQA==",
  4510. "path": "serilog/2.10.0",
  4511. "hashPath": "serilog.2.10.0.nupkg.sha512"
  4512. },
  4513. "Serilog.AspNetCore/4.1.0": {
  4514. "type": "package",
  4515. "serviceable": true,
  4516. "sha512": "sha512-qRdEkjX10VJ5Cb3B9q/Q/tv+0ntDxAIA1YbOmmNMlkha1TU0ckK5b73eBYMNNLMAU92ofrzOEuIJEc6Q+Q1Z2A==",
  4517. "path": "serilog.aspnetcore/4.1.0",
  4518. "hashPath": "serilog.aspnetcore.4.1.0.nupkg.sha512"
  4519. },
  4520. "Serilog.Extensions.Hosting/4.1.2": {
  4521. "type": "package",
  4522. "serviceable": true,
  4523. "sha512": "sha512-nOpvvYgDoepae4FsXnyX4uSYLO+f+v7aRyNpA0pbpxjdkpw3FWZtfQDe2gnUmZGNYMLWnxMRCPJQ455U/dOUbQ==",
  4524. "path": "serilog.extensions.hosting/4.1.2",
  4525. "hashPath": "serilog.extensions.hosting.4.1.2.nupkg.sha512"
  4526. },
  4527. "Serilog.Extensions.Logging/3.0.1": {
  4528. "type": "package",
  4529. "serviceable": true,
  4530. "sha512": "sha512-U0xbGoZuxJRjE3C5vlCfrf9a4xHTmbrCXKmaA14cHAqiT1Qir0rkV7Xss9GpPJR3MRYH19DFUUqZ9hvWeJrzdQ==",
  4531. "path": "serilog.extensions.logging/3.0.1",
  4532. "hashPath": "serilog.extensions.logging.3.0.1.nupkg.sha512"
  4533. },
  4534. "Serilog.Formatting.Compact/1.1.0": {
  4535. "type": "package",
  4536. "serviceable": true,
  4537. "sha512": "sha512-pNroKVjo+rDqlxNG5PXkRLpfSCuDOBY0ri6jp9PLe505ljqwhwZz8ospy2vWhQlFu5GkIesh3FcDs4n7sWZODA==",
  4538. "path": "serilog.formatting.compact/1.1.0",
  4539. "hashPath": "serilog.formatting.compact.1.1.0.nupkg.sha512"
  4540. },
  4541. "Serilog.Settings.Configuration/3.1.0": {
  4542. "type": "package",
  4543. "serviceable": true,
  4544. "sha512": "sha512-BS+G1dhThTHBOYm8R21JNlR+Nh7ETAOlJuL1P6te1rOG98eV1vos5EyWRTGr0AbHgySxsGu1Q/evfFxS9+Gk1Q==",
  4545. "path": "serilog.settings.configuration/3.1.0",
  4546. "hashPath": "serilog.settings.configuration.3.1.0.nupkg.sha512"
  4547. },
  4548. "Serilog.Sinks.Console/3.1.1": {
  4549. "type": "package",
  4550. "serviceable": true,
  4551. "sha512": "sha512-56mI5AqvyF/i/c2451nvV71kq370XOCE4Uu5qiaJ295sOhMb9q3BWwG7mWLOVSnmpWiq0SBT3SXfgRXGNP6vzA==",
  4552. "path": "serilog.sinks.console/3.1.1",
  4553. "hashPath": "serilog.sinks.console.3.1.1.nupkg.sha512"
  4554. },
  4555. "Serilog.Sinks.Debug/2.0.0": {
  4556. "type": "package",
  4557. "serviceable": true,
  4558. "sha512": "sha512-Y6g3OBJ4JzTyyw16fDqtFcQ41qQAydnEvEqmXjhwhgjsnG/FaJ8GUqF5ldsC/bVkK8KYmqrPhDO+tm4dF6xx4A==",
  4559. "path": "serilog.sinks.debug/2.0.0",
  4560. "hashPath": "serilog.sinks.debug.2.0.0.nupkg.sha512"
  4561. },
  4562. "Serilog.Sinks.File/4.1.0": {
  4563. "type": "package",
  4564. "serviceable": true,
  4565. "sha512": "sha512-U0b34w+ZikbqWEZ3ui7BdzxY/19zwrdhLtI3o6tfmLdD3oXxg7n2TZJjwCCTlKPgRuYic9CBWfrZevbb70mTaw==",
  4566. "path": "serilog.sinks.file/4.1.0",
  4567. "hashPath": "serilog.sinks.file.4.1.0.nupkg.sha512"
  4568. },
  4569. "System.Buffers/4.5.1": {
  4570. "type": "package",
  4571. "serviceable": true,
  4572. "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  4573. "path": "system.buffers/4.5.1",
  4574. "hashPath": "system.buffers.4.5.1.nupkg.sha512"
  4575. },
  4576. "System.Collections/4.3.0": {
  4577. "type": "package",
  4578. "serviceable": true,
  4579. "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  4580. "path": "system.collections/4.3.0",
  4581. "hashPath": "system.collections.4.3.0.nupkg.sha512"
  4582. },
  4583. "System.Collections.Concurrent/4.3.0": {
  4584. "type": "package",
  4585. "serviceable": true,
  4586. "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  4587. "path": "system.collections.concurrent/4.3.0",
  4588. "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512"
  4589. },
  4590. "System.Collections.Immutable/5.0.0": {
  4591. "type": "package",
  4592. "serviceable": true,
  4593. "sha512": "sha512-FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
  4594. "path": "system.collections.immutable/5.0.0",
  4595. "hashPath": "system.collections.immutable.5.0.0.nupkg.sha512"
  4596. },
  4597. "System.Collections.NonGeneric/4.3.0": {
  4598. "type": "package",
  4599. "serviceable": true,
  4600. "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  4601. "path": "system.collections.nongeneric/4.3.0",
  4602. "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512"
  4603. },
  4604. "System.Collections.Specialized/4.3.0": {
  4605. "type": "package",
  4606. "serviceable": true,
  4607. "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  4608. "path": "system.collections.specialized/4.3.0",
  4609. "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512"
  4610. },
  4611. "System.ComponentModel/4.3.0": {
  4612. "type": "package",
  4613. "serviceable": true,
  4614. "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  4615. "path": "system.componentmodel/4.3.0",
  4616. "hashPath": "system.componentmodel.4.3.0.nupkg.sha512"
  4617. },
  4618. "System.ComponentModel.Annotations/5.0.0": {
  4619. "type": "package",
  4620. "serviceable": true,
  4621. "sha512": "sha512-dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  4622. "path": "system.componentmodel.annotations/5.0.0",
  4623. "hashPath": "system.componentmodel.annotations.5.0.0.nupkg.sha512"
  4624. },
  4625. "System.ComponentModel.Primitives/4.3.0": {
  4626. "type": "package",
  4627. "serviceable": true,
  4628. "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  4629. "path": "system.componentmodel.primitives/4.3.0",
  4630. "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512"
  4631. },
  4632. "System.ComponentModel.TypeConverter/4.3.0": {
  4633. "type": "package",
  4634. "serviceable": true,
  4635. "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
  4636. "path": "system.componentmodel.typeconverter/4.3.0",
  4637. "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512"
  4638. },
  4639. "System.Composition/1.0.31": {
  4640. "type": "package",
  4641. "serviceable": true,
  4642. "sha512": "sha512-I+D26qpYdoklyAVUdqwUBrEIckMNjAYnuPJy/h9dsQItpQwVREkDFs4b4tkBza0kT2Yk48Lcfsv2QQ9hWsh9Iw==",
  4643. "path": "system.composition/1.0.31",
  4644. "hashPath": "system.composition.1.0.31.nupkg.sha512"
  4645. },
  4646. "System.Composition.AttributedModel/1.0.31": {
  4647. "type": "package",
  4648. "serviceable": true,
  4649. "sha512": "sha512-NHWhkM3ZkspmA0XJEsKdtTt1ViDYuojgSND3yHhTzwxepiwqZf+BCWuvCbjUt4fe0NxxQhUDGJ5km6sLjo9qnQ==",
  4650. "path": "system.composition.attributedmodel/1.0.31",
  4651. "hashPath": "system.composition.attributedmodel.1.0.31.nupkg.sha512"
  4652. },
  4653. "System.Composition.Convention/1.0.31": {
  4654. "type": "package",
  4655. "serviceable": true,
  4656. "sha512": "sha512-GLjh2Ju71k6C0qxMMtl4efHa68NmWeIUYh4fkUI8xbjQrEBvFmRwMDFcylT8/PR9SQbeeL48IkFxU/+gd0nYEQ==",
  4657. "path": "system.composition.convention/1.0.31",
  4658. "hashPath": "system.composition.convention.1.0.31.nupkg.sha512"
  4659. },
  4660. "System.Composition.Hosting/1.0.31": {
  4661. "type": "package",
  4662. "serviceable": true,
  4663. "sha512": "sha512-fN1bT4RX4vUqjbgoyuJFVUizAl2mYF5VAb+bVIxIYZSSc0BdnX+yGAxcavxJuDDCQ1K+/mdpgyEFc8e9ikjvrg==",
  4664. "path": "system.composition.hosting/1.0.31",
  4665. "hashPath": "system.composition.hosting.1.0.31.nupkg.sha512"
  4666. },
  4667. "System.Composition.Runtime/1.0.31": {
  4668. "type": "package",
  4669. "serviceable": true,
  4670. "sha512": "sha512-0LEJN+2NVM89CE4SekDrrk5tHV5LeATltkp+9WNYrR+Huiyt0vaCqHbbHtVAjPyeLWIc8dOz/3kthRBj32wGQg==",
  4671. "path": "system.composition.runtime/1.0.31",
  4672. "hashPath": "system.composition.runtime.1.0.31.nupkg.sha512"
  4673. },
  4674. "System.Composition.TypedParts/1.0.31": {
  4675. "type": "package",
  4676. "serviceable": true,
  4677. "sha512": "sha512-0Zae/FtzeFgDBBuILeIbC/T9HMYbW4olAmi8XqqAGosSOWvXfiQLfARZEhiGd0LVXaYgXr0NhxiU1LldRP1fpQ==",
  4678. "path": "system.composition.typedparts/1.0.31",
  4679. "hashPath": "system.composition.typedparts.1.0.31.nupkg.sha512"
  4680. },
  4681. "System.Configuration.ConfigurationManager/4.7.0": {
  4682. "type": "package",
  4683. "serviceable": true,
  4684. "sha512": "sha512-/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==",
  4685. "path": "system.configuration.configurationmanager/4.7.0",
  4686. "hashPath": "system.configuration.configurationmanager.4.7.0.nupkg.sha512"
  4687. },
  4688. "System.Console/4.3.0": {
  4689. "type": "package",
  4690. "serviceable": true,
  4691. "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  4692. "path": "system.console/4.3.0",
  4693. "hashPath": "system.console.4.3.0.nupkg.sha512"
  4694. },
  4695. "System.Diagnostics.Debug/4.3.0": {
  4696. "type": "package",
  4697. "serviceable": true,
  4698. "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  4699. "path": "system.diagnostics.debug/4.3.0",
  4700. "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
  4701. },
  4702. "System.Diagnostics.DiagnosticSource/5.0.1": {
  4703. "type": "package",
  4704. "serviceable": true,
  4705. "sha512": "sha512-uXQEYqav2V3zP6OwkOKtLv+qIi6z3m1hsGyKwXX7ZA7htT4shoVccGxnJ9kVRFPNAsi1ArZTq2oh7WOto6GbkQ==",
  4706. "path": "system.diagnostics.diagnosticsource/5.0.1",
  4707. "hashPath": "system.diagnostics.diagnosticsource.5.0.1.nupkg.sha512"
  4708. },
  4709. "System.Diagnostics.Tools/4.3.0": {
  4710. "type": "package",
  4711. "serviceable": true,
  4712. "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  4713. "path": "system.diagnostics.tools/4.3.0",
  4714. "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512"
  4715. },
  4716. "System.Diagnostics.Tracing/4.3.0": {
  4717. "type": "package",
  4718. "serviceable": true,
  4719. "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  4720. "path": "system.diagnostics.tracing/4.3.0",
  4721. "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512"
  4722. },
  4723. "System.Drawing.Common/4.7.0": {
  4724. "type": "package",
  4725. "serviceable": true,
  4726. "sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==",
  4727. "path": "system.drawing.common/4.7.0",
  4728. "hashPath": "system.drawing.common.4.7.0.nupkg.sha512"
  4729. },
  4730. "System.Globalization/4.3.0": {
  4731. "type": "package",
  4732. "serviceable": true,
  4733. "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  4734. "path": "system.globalization/4.3.0",
  4735. "hashPath": "system.globalization.4.3.0.nupkg.sha512"
  4736. },
  4737. "System.Globalization.Extensions/4.3.0": {
  4738. "type": "package",
  4739. "serviceable": true,
  4740. "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  4741. "path": "system.globalization.extensions/4.3.0",
  4742. "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512"
  4743. },
  4744. "System.IdentityModel.Tokens.Jwt/5.6.0": {
  4745. "type": "package",
  4746. "serviceable": true,
  4747. "sha512": "sha512-KMvPpX4exs2fe7Upq5zHMSR4yupc+jy8WG8yjucZL0XvT+r/T0hRvLIe9fP/SeN8/UVxFYBRAkRI5k1zbRGqmA==",
  4748. "path": "system.identitymodel.tokens.jwt/5.6.0",
  4749. "hashPath": "system.identitymodel.tokens.jwt.5.6.0.nupkg.sha512"
  4750. },
  4751. "System.IO/4.3.0": {
  4752. "type": "package",
  4753. "serviceable": true,
  4754. "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  4755. "path": "system.io/4.3.0",
  4756. "hashPath": "system.io.4.3.0.nupkg.sha512"
  4757. },
  4758. "System.IO.FileSystem/4.3.0": {
  4759. "type": "package",
  4760. "serviceable": true,
  4761. "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  4762. "path": "system.io.filesystem/4.3.0",
  4763. "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
  4764. },
  4765. "System.IO.FileSystem.Primitives/4.3.0": {
  4766. "type": "package",
  4767. "serviceable": true,
  4768. "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  4769. "path": "system.io.filesystem.primitives/4.3.0",
  4770. "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
  4771. },
  4772. "System.Linq/4.3.0": {
  4773. "type": "package",
  4774. "serviceable": true,
  4775. "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  4776. "path": "system.linq/4.3.0",
  4777. "hashPath": "system.linq.4.3.0.nupkg.sha512"
  4778. },
  4779. "System.Linq.Expressions/4.3.0": {
  4780. "type": "package",
  4781. "serviceable": true,
  4782. "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  4783. "path": "system.linq.expressions/4.3.0",
  4784. "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
  4785. },
  4786. "System.Memory/4.5.4": {
  4787. "type": "package",
  4788. "serviceable": true,
  4789. "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
  4790. "path": "system.memory/4.5.4",
  4791. "hashPath": "system.memory.4.5.4.nupkg.sha512"
  4792. },
  4793. "System.Net.NameResolution/4.3.0": {
  4794. "type": "package",
  4795. "serviceable": true,
  4796. "sha512": "sha512-AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
  4797. "path": "system.net.nameresolution/4.3.0",
  4798. "hashPath": "system.net.nameresolution.4.3.0.nupkg.sha512"
  4799. },
  4800. "System.Net.Primitives/4.3.0": {
  4801. "type": "package",
  4802. "serviceable": true,
  4803. "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  4804. "path": "system.net.primitives/4.3.0",
  4805. "hashPath": "system.net.primitives.4.3.0.nupkg.sha512"
  4806. },
  4807. "System.ObjectModel/4.3.0": {
  4808. "type": "package",
  4809. "serviceable": true,
  4810. "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  4811. "path": "system.objectmodel/4.3.0",
  4812. "hashPath": "system.objectmodel.4.3.0.nupkg.sha512"
  4813. },
  4814. "System.Private.DataContractSerialization/4.3.0": {
  4815. "type": "package",
  4816. "serviceable": true,
  4817. "sha512": "sha512-yDaJ2x3mMmjdZEDB4IbezSnCsnjQ4BxinKhRAaP6kEgL6Bb6jANWphs5SzyD8imqeC/3FxgsuXT6ykkiH1uUmA==",
  4818. "path": "system.private.datacontractserialization/4.3.0",
  4819. "hashPath": "system.private.datacontractserialization.4.3.0.nupkg.sha512"
  4820. },
  4821. "System.Private.Uri/4.3.2": {
  4822. "type": "package",
  4823. "serviceable": true,
  4824. "sha512": "sha512-o1+7RJnu3Ik3PazR7Z7tJhjPdE000Eq2KGLLWhqJJKXj04wrS8lwb1OFtDF9jzXXADhUuZNJZlPc98uwwqmpFA==",
  4825. "path": "system.private.uri/4.3.2",
  4826. "hashPath": "system.private.uri.4.3.2.nupkg.sha512"
  4827. },
  4828. "System.Reflection/4.3.0": {
  4829. "type": "package",
  4830. "serviceable": true,
  4831. "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  4832. "path": "system.reflection/4.3.0",
  4833. "hashPath": "system.reflection.4.3.0.nupkg.sha512"
  4834. },
  4835. "System.Reflection.Emit/4.7.0": {
  4836. "type": "package",
  4837. "serviceable": true,
  4838. "sha512": "sha512-VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==",
  4839. "path": "system.reflection.emit/4.7.0",
  4840. "hashPath": "system.reflection.emit.4.7.0.nupkg.sha512"
  4841. },
  4842. "System.Reflection.Emit.ILGeneration/4.3.0": {
  4843. "type": "package",
  4844. "serviceable": true,
  4845. "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  4846. "path": "system.reflection.emit.ilgeneration/4.3.0",
  4847. "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
  4848. },
  4849. "System.Reflection.Emit.Lightweight/4.3.0": {
  4850. "type": "package",
  4851. "serviceable": true,
  4852. "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  4853. "path": "system.reflection.emit.lightweight/4.3.0",
  4854. "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
  4855. },
  4856. "System.Reflection.Extensions/4.3.0": {
  4857. "type": "package",
  4858. "serviceable": true,
  4859. "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  4860. "path": "system.reflection.extensions/4.3.0",
  4861. "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
  4862. },
  4863. "System.Reflection.Metadata/5.0.0": {
  4864. "type": "package",
  4865. "serviceable": true,
  4866. "sha512": "sha512-5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==",
  4867. "path": "system.reflection.metadata/5.0.0",
  4868. "hashPath": "system.reflection.metadata.5.0.0.nupkg.sha512"
  4869. },
  4870. "System.Reflection.Primitives/4.3.0": {
  4871. "type": "package",
  4872. "serviceable": true,
  4873. "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  4874. "path": "system.reflection.primitives/4.3.0",
  4875. "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
  4876. },
  4877. "System.Reflection.TypeExtensions/4.4.0": {
  4878. "type": "package",
  4879. "serviceable": true,
  4880. "sha512": "sha512-dkmh/ySlwnXJp/1qYP9uyKkCK1CXR/REFzl7abHcArxBcV91mY2CgrrzSRA5Z/X4MevJWwXsklGRdR3A7K9zbg==",
  4881. "path": "system.reflection.typeextensions/4.4.0",
  4882. "hashPath": "system.reflection.typeextensions.4.4.0.nupkg.sha512"
  4883. },
  4884. "System.Resources.ResourceManager/4.3.0": {
  4885. "type": "package",
  4886. "serviceable": true,
  4887. "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  4888. "path": "system.resources.resourcemanager/4.3.0",
  4889. "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
  4890. },
  4891. "System.Runtime/4.3.0": {
  4892. "type": "package",
  4893. "serviceable": true,
  4894. "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  4895. "path": "system.runtime/4.3.0",
  4896. "hashPath": "system.runtime.4.3.0.nupkg.sha512"
  4897. },
  4898. "System.Runtime.Caching/4.7.0": {
  4899. "type": "package",
  4900. "serviceable": true,
  4901. "sha512": "sha512-NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==",
  4902. "path": "system.runtime.caching/4.7.0",
  4903. "hashPath": "system.runtime.caching.4.7.0.nupkg.sha512"
  4904. },
  4905. "System.Runtime.CompilerServices.Unsafe/4.7.1": {
  4906. "type": "package",
  4907. "serviceable": true,
  4908. "sha512": "sha512-zOHkQmzPCn5zm/BH+cxC1XbUS3P4Yoi3xzW7eRgVpDR2tPGSzyMZ17Ig1iRkfJuY0nhxkQQde8pgePNiA7z7TQ==",
  4909. "path": "system.runtime.compilerservices.unsafe/4.7.1",
  4910. "hashPath": "system.runtime.compilerservices.unsafe.4.7.1.nupkg.sha512"
  4911. },
  4912. "System.Runtime.Extensions/4.3.0": {
  4913. "type": "package",
  4914. "serviceable": true,
  4915. "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  4916. "path": "system.runtime.extensions/4.3.0",
  4917. "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
  4918. },
  4919. "System.Runtime.Handles/4.3.0": {
  4920. "type": "package",
  4921. "serviceable": true,
  4922. "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  4923. "path": "system.runtime.handles/4.3.0",
  4924. "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
  4925. },
  4926. "System.Runtime.InteropServices/4.3.0": {
  4927. "type": "package",
  4928. "serviceable": true,
  4929. "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  4930. "path": "system.runtime.interopservices/4.3.0",
  4931. "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
  4932. },
  4933. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  4934. "type": "package",
  4935. "serviceable": true,
  4936. "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  4937. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  4938. "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512"
  4939. },
  4940. "System.Runtime.Serialization.Formatters/4.3.0": {
  4941. "type": "package",
  4942. "serviceable": true,
  4943. "sha512": "sha512-KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==",
  4944. "path": "system.runtime.serialization.formatters/4.3.0",
  4945. "hashPath": "system.runtime.serialization.formatters.4.3.0.nupkg.sha512"
  4946. },
  4947. "System.Runtime.Serialization.Json/4.3.0": {
  4948. "type": "package",
  4949. "serviceable": true,
  4950. "sha512": "sha512-CpVfOH0M/uZ5PH+M9+Gu56K0j9lJw3M+PKRegTkcrY/stOIvRUeonggxNrfBYLA5WOHL2j15KNJuTuld3x4o9w==",
  4951. "path": "system.runtime.serialization.json/4.3.0",
  4952. "hashPath": "system.runtime.serialization.json.4.3.0.nupkg.sha512"
  4953. },
  4954. "System.Runtime.Serialization.Primitives/4.3.0": {
  4955. "type": "package",
  4956. "serviceable": true,
  4957. "sha512": "sha512-Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
  4958. "path": "system.runtime.serialization.primitives/4.3.0",
  4959. "hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512"
  4960. },
  4961. "System.Security.AccessControl/4.7.0": {
  4962. "type": "package",
  4963. "serviceable": true,
  4964. "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  4965. "path": "system.security.accesscontrol/4.7.0",
  4966. "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512"
  4967. },
  4968. "System.Security.Cryptography.Cng/4.7.0": {
  4969. "type": "package",
  4970. "serviceable": true,
  4971. "sha512": "sha512-4WQjFuypWtxb/bl/YwEE7LYGn4fgpsikFfBU6xwEm4YBYiRAhXAEJ62lILBu2JJSFbClIAntFTGfDZafn8yZTg==",
  4972. "path": "system.security.cryptography.cng/4.7.0",
  4973. "hashPath": "system.security.cryptography.cng.4.7.0.nupkg.sha512"
  4974. },
  4975. "System.Security.Cryptography.Pkcs/4.7.0": {
  4976. "type": "package",
  4977. "serviceable": true,
  4978. "sha512": "sha512-0Srzh6YlhjuMxaqMyeCCdZs22cucaUAG6SKDd3gNHBJmre0VZ71ekzWu9rvLD4YXPetyNdPvV6Qst+8C++9v3Q==",
  4979. "path": "system.security.cryptography.pkcs/4.7.0",
  4980. "hashPath": "system.security.cryptography.pkcs.4.7.0.nupkg.sha512"
  4981. },
  4982. "System.Security.Cryptography.Primitives/4.3.0": {
  4983. "type": "package",
  4984. "serviceable": true,
  4985. "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  4986. "path": "system.security.cryptography.primitives/4.3.0",
  4987. "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512"
  4988. },
  4989. "System.Security.Cryptography.ProtectedData/4.7.0": {
  4990. "type": "package",
  4991. "serviceable": true,
  4992. "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==",
  4993. "path": "system.security.cryptography.protecteddata/4.7.0",
  4994. "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512"
  4995. },
  4996. "System.Security.Permissions/4.7.0": {
  4997. "type": "package",
  4998. "serviceable": true,
  4999. "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  5000. "path": "system.security.permissions/4.7.0",
  5001. "hashPath": "system.security.permissions.4.7.0.nupkg.sha512"
  5002. },
  5003. "System.Security.Principal.Windows/4.7.0": {
  5004. "type": "package",
  5005. "serviceable": true,
  5006. "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  5007. "path": "system.security.principal.windows/4.7.0",
  5008. "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512"
  5009. },
  5010. "System.Security.SecureString/4.3.0": {
  5011. "type": "package",
  5012. "serviceable": true,
  5013. "sha512": "sha512-PnXp38O9q/2Oe4iZHMH60kinScv6QiiL2XH54Pj2t0Y6c2zKPEiAZsM/M3wBOHLNTBDFP0zfy13WN2M0qFz5jg==",
  5014. "path": "system.security.securestring/4.3.0",
  5015. "hashPath": "system.security.securestring.4.3.0.nupkg.sha512"
  5016. },
  5017. "System.Text.Encoding/4.3.0": {
  5018. "type": "package",
  5019. "serviceable": true,
  5020. "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  5021. "path": "system.text.encoding/4.3.0",
  5022. "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
  5023. },
  5024. "System.Text.Encoding.CodePages/4.7.0": {
  5025. "type": "package",
  5026. "serviceable": true,
  5027. "sha512": "sha512-aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==",
  5028. "path": "system.text.encoding.codepages/4.7.0",
  5029. "hashPath": "system.text.encoding.codepages.4.7.0.nupkg.sha512"
  5030. },
  5031. "System.Text.Encoding.Extensions/4.3.0": {
  5032. "type": "package",
  5033. "serviceable": true,
  5034. "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  5035. "path": "system.text.encoding.extensions/4.3.0",
  5036. "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
  5037. },
  5038. "System.Text.Encodings.Web/4.5.0": {
  5039. "type": "package",
  5040. "serviceable": true,
  5041. "sha512": "sha512-Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
  5042. "path": "system.text.encodings.web/4.5.0",
  5043. "hashPath": "system.text.encodings.web.4.5.0.nupkg.sha512"
  5044. },
  5045. "System.Text.RegularExpressions/4.3.0": {
  5046. "type": "package",
  5047. "serviceable": true,
  5048. "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  5049. "path": "system.text.regularexpressions/4.3.0",
  5050. "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512"
  5051. },
  5052. "System.Threading/4.3.0": {
  5053. "type": "package",
  5054. "serviceable": true,
  5055. "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  5056. "path": "system.threading/4.3.0",
  5057. "hashPath": "system.threading.4.3.0.nupkg.sha512"
  5058. },
  5059. "System.Threading.Tasks/4.3.0": {
  5060. "type": "package",
  5061. "serviceable": true,
  5062. "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  5063. "path": "system.threading.tasks/4.3.0",
  5064. "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
  5065. },
  5066. "System.Threading.Tasks.Extensions/4.5.4": {
  5067. "type": "package",
  5068. "serviceable": true,
  5069. "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
  5070. "path": "system.threading.tasks.extensions/4.5.4",
  5071. "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512"
  5072. },
  5073. "System.Threading.Timer/4.0.1": {
  5074. "type": "package",
  5075. "serviceable": true,
  5076. "sha512": "sha512-saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==",
  5077. "path": "system.threading.timer/4.0.1",
  5078. "hashPath": "system.threading.timer.4.0.1.nupkg.sha512"
  5079. },
  5080. "System.Windows.Extensions/4.7.0": {
  5081. "type": "package",
  5082. "serviceable": true,
  5083. "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  5084. "path": "system.windows.extensions/4.7.0",
  5085. "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512"
  5086. },
  5087. "System.Xml.ReaderWriter/4.3.0": {
  5088. "type": "package",
  5089. "serviceable": true,
  5090. "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  5091. "path": "system.xml.readerwriter/4.3.0",
  5092. "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512"
  5093. },
  5094. "System.Xml.XDocument/4.3.0": {
  5095. "type": "package",
  5096. "serviceable": true,
  5097. "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  5098. "path": "system.xml.xdocument/4.3.0",
  5099. "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512"
  5100. },
  5101. "System.Xml.XmlDocument/4.3.0": {
  5102. "type": "package",
  5103. "serviceable": true,
  5104. "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
  5105. "path": "system.xml.xmldocument/4.3.0",
  5106. "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512"
  5107. },
  5108. "System.Xml.XmlSerializer/4.3.0": {
  5109. "type": "package",
  5110. "serviceable": true,
  5111. "sha512": "sha512-MYoTCP7EZ98RrANESW05J5ZwskKDoN0AuZ06ZflnowE50LTpbR5yRg3tHckTVm5j/m47stuGgCrCHWePyHS70Q==",
  5112. "path": "system.xml.xmlserializer/4.3.0",
  5113. "hashPath": "system.xml.xmlserializer.4.3.0.nupkg.sha512"
  5114. },
  5115. "ScreeningTest.Business/1.0.0": {
  5116. "type": "project",
  5117. "serviceable": false,
  5118. "sha512": ""
  5119. },
  5120. "ScreeningTest.Data/1.0.0": {
  5121. "type": "project",
  5122. "serviceable": false,
  5123. "sha512": ""
  5124. },
  5125. "Microsoft.AspNetCore.Antiforgery/5.0.0.0": {
  5126. "type": "referenceassembly",
  5127. "serviceable": false,
  5128. "sha512": ""
  5129. },
  5130. "Microsoft.AspNetCore.Authentication.Abstractions/5.0.0.0": {
  5131. "type": "referenceassembly",
  5132. "serviceable": false,
  5133. "sha512": ""
  5134. },
  5135. "Microsoft.AspNetCore.Authentication.Cookies/5.0.0.0": {
  5136. "type": "referenceassembly",
  5137. "serviceable": false,
  5138. "sha512": ""
  5139. },
  5140. "Microsoft.AspNetCore.Authentication.Core/5.0.0.0": {
  5141. "type": "referenceassembly",
  5142. "serviceable": false,
  5143. "sha512": ""
  5144. },
  5145. "Microsoft.AspNetCore.Authentication/5.0.0.0": {
  5146. "type": "referenceassembly",
  5147. "serviceable": false,
  5148. "sha512": ""
  5149. },
  5150. "Microsoft.AspNetCore.Authentication.OAuth/5.0.0.0": {
  5151. "type": "referenceassembly",
  5152. "serviceable": false,
  5153. "sha512": ""
  5154. },
  5155. "Microsoft.AspNetCore.Authorization/5.0.0.0": {
  5156. "type": "referenceassembly",
  5157. "serviceable": false,
  5158. "sha512": ""
  5159. },
  5160. "Microsoft.AspNetCore.Authorization.Policy/5.0.0.0": {
  5161. "type": "referenceassembly",
  5162. "serviceable": false,
  5163. "sha512": ""
  5164. },
  5165. "Microsoft.AspNetCore.Components.Authorization/5.0.0.0": {
  5166. "type": "referenceassembly",
  5167. "serviceable": false,
  5168. "sha512": ""
  5169. },
  5170. "Microsoft.AspNetCore.Components/5.0.0.0": {
  5171. "type": "referenceassembly",
  5172. "serviceable": false,
  5173. "sha512": ""
  5174. },
  5175. "Microsoft.AspNetCore.Components.Forms/5.0.0.0": {
  5176. "type": "referenceassembly",
  5177. "serviceable": false,
  5178. "sha512": ""
  5179. },
  5180. "Microsoft.AspNetCore.Components.Server/5.0.0.0": {
  5181. "type": "referenceassembly",
  5182. "serviceable": false,
  5183. "sha512": ""
  5184. },
  5185. "Microsoft.AspNetCore.Components.Web/5.0.0.0": {
  5186. "type": "referenceassembly",
  5187. "serviceable": false,
  5188. "sha512": ""
  5189. },
  5190. "Microsoft.AspNetCore.Connections.Abstractions/5.0.0.0": {
  5191. "type": "referenceassembly",
  5192. "serviceable": false,
  5193. "sha512": ""
  5194. },
  5195. "Microsoft.AspNetCore.CookiePolicy/5.0.0.0": {
  5196. "type": "referenceassembly",
  5197. "serviceable": false,
  5198. "sha512": ""
  5199. },
  5200. "Microsoft.AspNetCore.Cors/5.0.0.0": {
  5201. "type": "referenceassembly",
  5202. "serviceable": false,
  5203. "sha512": ""
  5204. },
  5205. "Microsoft.AspNetCore.DataProtection.Abstractions/5.0.0.0": {
  5206. "type": "referenceassembly",
  5207. "serviceable": false,
  5208. "sha512": ""
  5209. },
  5210. "Microsoft.AspNetCore.DataProtection/5.0.0.0": {
  5211. "type": "referenceassembly",
  5212. "serviceable": false,
  5213. "sha512": ""
  5214. },
  5215. "Microsoft.AspNetCore.DataProtection.Extensions/5.0.0.0": {
  5216. "type": "referenceassembly",
  5217. "serviceable": false,
  5218. "sha512": ""
  5219. },
  5220. "Microsoft.AspNetCore.Diagnostics.Abstractions/5.0.0.0": {
  5221. "type": "referenceassembly",
  5222. "serviceable": false,
  5223. "sha512": ""
  5224. },
  5225. "Microsoft.AspNetCore.Diagnostics/5.0.0.0": {
  5226. "type": "referenceassembly",
  5227. "serviceable": false,
  5228. "sha512": ""
  5229. },
  5230. "Microsoft.AspNetCore.Diagnostics.HealthChecks/5.0.0.0": {
  5231. "type": "referenceassembly",
  5232. "serviceable": false,
  5233. "sha512": ""
  5234. },
  5235. "Microsoft.AspNetCore/5.0.0.0": {
  5236. "type": "referenceassembly",
  5237. "serviceable": false,
  5238. "sha512": ""
  5239. },
  5240. "Microsoft.AspNetCore.HostFiltering/5.0.0.0": {
  5241. "type": "referenceassembly",
  5242. "serviceable": false,
  5243. "sha512": ""
  5244. },
  5245. "Microsoft.AspNetCore.Hosting.Abstractions/5.0.0.0": {
  5246. "type": "referenceassembly",
  5247. "serviceable": false,
  5248. "sha512": ""
  5249. },
  5250. "Microsoft.AspNetCore.Hosting/5.0.0.0": {
  5251. "type": "referenceassembly",
  5252. "serviceable": false,
  5253. "sha512": ""
  5254. },
  5255. "Microsoft.AspNetCore.Hosting.Server.Abstractions/5.0.0.0": {
  5256. "type": "referenceassembly",
  5257. "serviceable": false,
  5258. "sha512": ""
  5259. },
  5260. "Microsoft.AspNetCore.Html.Abstractions.Reference/5.0.0.0": {
  5261. "type": "referenceassembly",
  5262. "serviceable": false,
  5263. "sha512": ""
  5264. },
  5265. "Microsoft.AspNetCore.Http.Abstractions/5.0.0.0": {
  5266. "type": "referenceassembly",
  5267. "serviceable": false,
  5268. "sha512": ""
  5269. },
  5270. "Microsoft.AspNetCore.Http.Connections.Common/5.0.0.0": {
  5271. "type": "referenceassembly",
  5272. "serviceable": false,
  5273. "sha512": ""
  5274. },
  5275. "Microsoft.AspNetCore.Http.Connections/5.0.0.0": {
  5276. "type": "referenceassembly",
  5277. "serviceable": false,
  5278. "sha512": ""
  5279. },
  5280. "Microsoft.AspNetCore.Http/5.0.0.0": {
  5281. "type": "referenceassembly",
  5282. "serviceable": false,
  5283. "sha512": ""
  5284. },
  5285. "Microsoft.AspNetCore.Http.Extensions/5.0.0.0": {
  5286. "type": "referenceassembly",
  5287. "serviceable": false,
  5288. "sha512": ""
  5289. },
  5290. "Microsoft.AspNetCore.Http.Features/5.0.0.0": {
  5291. "type": "referenceassembly",
  5292. "serviceable": false,
  5293. "sha512": ""
  5294. },
  5295. "Microsoft.AspNetCore.HttpOverrides/5.0.0.0": {
  5296. "type": "referenceassembly",
  5297. "serviceable": false,
  5298. "sha512": ""
  5299. },
  5300. "Microsoft.AspNetCore.HttpsPolicy/5.0.0.0": {
  5301. "type": "referenceassembly",
  5302. "serviceable": false,
  5303. "sha512": ""
  5304. },
  5305. "Microsoft.AspNetCore.Identity/5.0.0.0": {
  5306. "type": "referenceassembly",
  5307. "serviceable": false,
  5308. "sha512": ""
  5309. },
  5310. "Microsoft.AspNetCore.Localization/5.0.0.0": {
  5311. "type": "referenceassembly",
  5312. "serviceable": false,
  5313. "sha512": ""
  5314. },
  5315. "Microsoft.AspNetCore.Localization.Routing/5.0.0.0": {
  5316. "type": "referenceassembly",
  5317. "serviceable": false,
  5318. "sha512": ""
  5319. },
  5320. "Microsoft.AspNetCore.Metadata/5.0.0.0": {
  5321. "type": "referenceassembly",
  5322. "serviceable": false,
  5323. "sha512": ""
  5324. },
  5325. "Microsoft.AspNetCore.Mvc.Abstractions/5.0.0.0": {
  5326. "type": "referenceassembly",
  5327. "serviceable": false,
  5328. "sha512": ""
  5329. },
  5330. "Microsoft.AspNetCore.Mvc.ApiExplorer/5.0.0.0": {
  5331. "type": "referenceassembly",
  5332. "serviceable": false,
  5333. "sha512": ""
  5334. },
  5335. "Microsoft.AspNetCore.Mvc.Core/5.0.0.0": {
  5336. "type": "referenceassembly",
  5337. "serviceable": false,
  5338. "sha512": ""
  5339. },
  5340. "Microsoft.AspNetCore.Mvc.Cors/5.0.0.0": {
  5341. "type": "referenceassembly",
  5342. "serviceable": false,
  5343. "sha512": ""
  5344. },
  5345. "Microsoft.AspNetCore.Mvc.DataAnnotations/5.0.0.0": {
  5346. "type": "referenceassembly",
  5347. "serviceable": false,
  5348. "sha512": ""
  5349. },
  5350. "Microsoft.AspNetCore.Mvc/5.0.0.0": {
  5351. "type": "referenceassembly",
  5352. "serviceable": false,
  5353. "sha512": ""
  5354. },
  5355. "Microsoft.AspNetCore.Mvc.Formatters.Json/5.0.0.0": {
  5356. "type": "referenceassembly",
  5357. "serviceable": false,
  5358. "sha512": ""
  5359. },
  5360. "Microsoft.AspNetCore.Mvc.Formatters.Xml/5.0.0.0": {
  5361. "type": "referenceassembly",
  5362. "serviceable": false,
  5363. "sha512": ""
  5364. },
  5365. "Microsoft.AspNetCore.Mvc.Localization/5.0.0.0": {
  5366. "type": "referenceassembly",
  5367. "serviceable": false,
  5368. "sha512": ""
  5369. },
  5370. "Microsoft.AspNetCore.Mvc.Razor/5.0.0.0": {
  5371. "type": "referenceassembly",
  5372. "serviceable": false,
  5373. "sha512": ""
  5374. },
  5375. "Microsoft.AspNetCore.Mvc.RazorPages/5.0.0.0": {
  5376. "type": "referenceassembly",
  5377. "serviceable": false,
  5378. "sha512": ""
  5379. },
  5380. "Microsoft.AspNetCore.Mvc.TagHelpers/5.0.0.0": {
  5381. "type": "referenceassembly",
  5382. "serviceable": false,
  5383. "sha512": ""
  5384. },
  5385. "Microsoft.AspNetCore.Mvc.ViewFeatures/5.0.0.0": {
  5386. "type": "referenceassembly",
  5387. "serviceable": false,
  5388. "sha512": ""
  5389. },
  5390. "Microsoft.AspNetCore.Razor.Reference/5.0.0.0": {
  5391. "type": "referenceassembly",
  5392. "serviceable": false,
  5393. "sha512": ""
  5394. },
  5395. "Microsoft.AspNetCore.Razor.Runtime.Reference/5.0.0.0": {
  5396. "type": "referenceassembly",
  5397. "serviceable": false,
  5398. "sha512": ""
  5399. },
  5400. "Microsoft.AspNetCore.ResponseCaching.Abstractions/5.0.0.0": {
  5401. "type": "referenceassembly",
  5402. "serviceable": false,
  5403. "sha512": ""
  5404. },
  5405. "Microsoft.AspNetCore.ResponseCaching/5.0.0.0": {
  5406. "type": "referenceassembly",
  5407. "serviceable": false,
  5408. "sha512": ""
  5409. },
  5410. "Microsoft.AspNetCore.ResponseCompression/5.0.0.0": {
  5411. "type": "referenceassembly",
  5412. "serviceable": false,
  5413. "sha512": ""
  5414. },
  5415. "Microsoft.AspNetCore.Rewrite/5.0.0.0": {
  5416. "type": "referenceassembly",
  5417. "serviceable": false,
  5418. "sha512": ""
  5419. },
  5420. "Microsoft.AspNetCore.Routing.Abstractions/5.0.0.0": {
  5421. "type": "referenceassembly",
  5422. "serviceable": false,
  5423. "sha512": ""
  5424. },
  5425. "Microsoft.AspNetCore.Routing/5.0.0.0": {
  5426. "type": "referenceassembly",
  5427. "serviceable": false,
  5428. "sha512": ""
  5429. },
  5430. "Microsoft.AspNetCore.Server.HttpSys/5.0.0.0": {
  5431. "type": "referenceassembly",
  5432. "serviceable": false,
  5433. "sha512": ""
  5434. },
  5435. "Microsoft.AspNetCore.Server.IIS/5.0.0.0": {
  5436. "type": "referenceassembly",
  5437. "serviceable": false,
  5438. "sha512": ""
  5439. },
  5440. "Microsoft.AspNetCore.Server.IISIntegration/5.0.0.0": {
  5441. "type": "referenceassembly",
  5442. "serviceable": false,
  5443. "sha512": ""
  5444. },
  5445. "Microsoft.AspNetCore.Server.Kestrel.Core/5.0.0.0": {
  5446. "type": "referenceassembly",
  5447. "serviceable": false,
  5448. "sha512": ""
  5449. },
  5450. "Microsoft.AspNetCore.Server.Kestrel/5.0.0.0": {
  5451. "type": "referenceassembly",
  5452. "serviceable": false,
  5453. "sha512": ""
  5454. },
  5455. "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/5.0.0.0": {
  5456. "type": "referenceassembly",
  5457. "serviceable": false,
  5458. "sha512": ""
  5459. },
  5460. "Microsoft.AspNetCore.Session/5.0.0.0": {
  5461. "type": "referenceassembly",
  5462. "serviceable": false,
  5463. "sha512": ""
  5464. },
  5465. "Microsoft.AspNetCore.SignalR.Common/5.0.0.0": {
  5466. "type": "referenceassembly",
  5467. "serviceable": false,
  5468. "sha512": ""
  5469. },
  5470. "Microsoft.AspNetCore.SignalR.Core/5.0.0.0": {
  5471. "type": "referenceassembly",
  5472. "serviceable": false,
  5473. "sha512": ""
  5474. },
  5475. "Microsoft.AspNetCore.SignalR/5.0.0.0": {
  5476. "type": "referenceassembly",
  5477. "serviceable": false,
  5478. "sha512": ""
  5479. },
  5480. "Microsoft.AspNetCore.SignalR.Protocols.Json/5.0.0.0": {
  5481. "type": "referenceassembly",
  5482. "serviceable": false,
  5483. "sha512": ""
  5484. },
  5485. "Microsoft.AspNetCore.StaticFiles/5.0.0.0": {
  5486. "type": "referenceassembly",
  5487. "serviceable": false,
  5488. "sha512": ""
  5489. },
  5490. "Microsoft.AspNetCore.WebSockets/5.0.0.0": {
  5491. "type": "referenceassembly",
  5492. "serviceable": false,
  5493. "sha512": ""
  5494. },
  5495. "Microsoft.AspNetCore.WebUtilities/5.0.0.0": {
  5496. "type": "referenceassembly",
  5497. "serviceable": false,
  5498. "sha512": ""
  5499. },
  5500. "Microsoft.CSharp.Reference/5.0.0.0": {
  5501. "type": "referenceassembly",
  5502. "serviceable": false,
  5503. "sha512": ""
  5504. },
  5505. "Microsoft.Extensions.Caching.Abstractions.Reference/5.0.0.0": {
  5506. "type": "referenceassembly",
  5507. "serviceable": false,
  5508. "sha512": ""
  5509. },
  5510. "Microsoft.Extensions.Caching.Memory.Reference/5.0.0.0": {
  5511. "type": "referenceassembly",
  5512. "serviceable": false,
  5513. "sha512": ""
  5514. },
  5515. "Microsoft.Extensions.Configuration.Abstractions.Reference/5.0.0.0": {
  5516. "type": "referenceassembly",
  5517. "serviceable": false,
  5518. "sha512": ""
  5519. },
  5520. "Microsoft.Extensions.Configuration.Binder.Reference/5.0.0.0": {
  5521. "type": "referenceassembly",
  5522. "serviceable": false,
  5523. "sha512": ""
  5524. },
  5525. "Microsoft.Extensions.Configuration.CommandLine/5.0.0.0": {
  5526. "type": "referenceassembly",
  5527. "serviceable": false,
  5528. "sha512": ""
  5529. },
  5530. "Microsoft.Extensions.Configuration.Reference/5.0.0.0": {
  5531. "type": "referenceassembly",
  5532. "serviceable": false,
  5533. "sha512": ""
  5534. },
  5535. "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0.0": {
  5536. "type": "referenceassembly",
  5537. "serviceable": false,
  5538. "sha512": ""
  5539. },
  5540. "Microsoft.Extensions.Configuration.FileExtensions.Reference/5.0.0.0": {
  5541. "type": "referenceassembly",
  5542. "serviceable": false,
  5543. "sha512": ""
  5544. },
  5545. "Microsoft.Extensions.Configuration.Ini/5.0.0.0": {
  5546. "type": "referenceassembly",
  5547. "serviceable": false,
  5548. "sha512": ""
  5549. },
  5550. "Microsoft.Extensions.Configuration.Json.Reference/5.0.0.0": {
  5551. "type": "referenceassembly",
  5552. "serviceable": false,
  5553. "sha512": ""
  5554. },
  5555. "Microsoft.Extensions.Configuration.KeyPerFile/5.0.0.0": {
  5556. "type": "referenceassembly",
  5557. "serviceable": false,
  5558. "sha512": ""
  5559. },
  5560. "Microsoft.Extensions.Configuration.UserSecrets/5.0.0.0": {
  5561. "type": "referenceassembly",
  5562. "serviceable": false,
  5563. "sha512": ""
  5564. },
  5565. "Microsoft.Extensions.Configuration.Xml/5.0.0.0": {
  5566. "type": "referenceassembly",
  5567. "serviceable": false,
  5568. "sha512": ""
  5569. },
  5570. "Microsoft.Extensions.DependencyInjection.Abstractions.Reference/5.0.0.0": {
  5571. "type": "referenceassembly",
  5572. "serviceable": false,
  5573. "sha512": ""
  5574. },
  5575. "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/5.0.0.0": {
  5576. "type": "referenceassembly",
  5577. "serviceable": false,
  5578. "sha512": ""
  5579. },
  5580. "Microsoft.Extensions.Diagnostics.HealthChecks/5.0.0.0": {
  5581. "type": "referenceassembly",
  5582. "serviceable": false,
  5583. "sha512": ""
  5584. },
  5585. "Microsoft.Extensions.FileProviders.Abstractions.Reference/5.0.0.0": {
  5586. "type": "referenceassembly",
  5587. "serviceable": false,
  5588. "sha512": ""
  5589. },
  5590. "Microsoft.Extensions.FileProviders.Composite/5.0.0.0": {
  5591. "type": "referenceassembly",
  5592. "serviceable": false,
  5593. "sha512": ""
  5594. },
  5595. "Microsoft.Extensions.FileProviders.Physical.Reference/5.0.0.0": {
  5596. "type": "referenceassembly",
  5597. "serviceable": false,
  5598. "sha512": ""
  5599. },
  5600. "Microsoft.Extensions.FileSystemGlobbing.Reference/5.0.0.0": {
  5601. "type": "referenceassembly",
  5602. "serviceable": false,
  5603. "sha512": ""
  5604. },
  5605. "Microsoft.Extensions.Hosting.Abstractions.Reference/5.0.0.0": {
  5606. "type": "referenceassembly",
  5607. "serviceable": false,
  5608. "sha512": ""
  5609. },
  5610. "Microsoft.Extensions.Hosting/5.0.0.0": {
  5611. "type": "referenceassembly",
  5612. "serviceable": false,
  5613. "sha512": ""
  5614. },
  5615. "Microsoft.Extensions.Http/5.0.0.0": {
  5616. "type": "referenceassembly",
  5617. "serviceable": false,
  5618. "sha512": ""
  5619. },
  5620. "Microsoft.Extensions.Localization.Abstractions/5.0.0.0": {
  5621. "type": "referenceassembly",
  5622. "serviceable": false,
  5623. "sha512": ""
  5624. },
  5625. "Microsoft.Extensions.Localization/5.0.0.0": {
  5626. "type": "referenceassembly",
  5627. "serviceable": false,
  5628. "sha512": ""
  5629. },
  5630. "Microsoft.Extensions.Logging.Abstractions.Reference/5.0.0.0": {
  5631. "type": "referenceassembly",
  5632. "serviceable": false,
  5633. "sha512": ""
  5634. },
  5635. "Microsoft.Extensions.Logging.Configuration/5.0.0.0": {
  5636. "type": "referenceassembly",
  5637. "serviceable": false,
  5638. "sha512": ""
  5639. },
  5640. "Microsoft.Extensions.Logging.Console/5.0.0.0": {
  5641. "type": "referenceassembly",
  5642. "serviceable": false,
  5643. "sha512": ""
  5644. },
  5645. "Microsoft.Extensions.Logging.Debug/5.0.0.0": {
  5646. "type": "referenceassembly",
  5647. "serviceable": false,
  5648. "sha512": ""
  5649. },
  5650. "Microsoft.Extensions.Logging.Reference/5.0.0.0": {
  5651. "type": "referenceassembly",
  5652. "serviceable": false,
  5653. "sha512": ""
  5654. },
  5655. "Microsoft.Extensions.Logging.EventLog/5.0.0.0": {
  5656. "type": "referenceassembly",
  5657. "serviceable": false,
  5658. "sha512": ""
  5659. },
  5660. "Microsoft.Extensions.Logging.EventSource/5.0.0.0": {
  5661. "type": "referenceassembly",
  5662. "serviceable": false,
  5663. "sha512": ""
  5664. },
  5665. "Microsoft.Extensions.Logging.TraceSource/5.0.0.0": {
  5666. "type": "referenceassembly",
  5667. "serviceable": false,
  5668. "sha512": ""
  5669. },
  5670. "Microsoft.Extensions.ObjectPool/5.0.0.0": {
  5671. "type": "referenceassembly",
  5672. "serviceable": false,
  5673. "sha512": ""
  5674. },
  5675. "Microsoft.Extensions.Options.ConfigurationExtensions.Reference/5.0.0.0": {
  5676. "type": "referenceassembly",
  5677. "serviceable": false,
  5678. "sha512": ""
  5679. },
  5680. "Microsoft.Extensions.Options.DataAnnotations/5.0.0.0": {
  5681. "type": "referenceassembly",
  5682. "serviceable": false,
  5683. "sha512": ""
  5684. },
  5685. "Microsoft.Extensions.Options.Reference/5.0.0.0": {
  5686. "type": "referenceassembly",
  5687. "serviceable": false,
  5688. "sha512": ""
  5689. },
  5690. "Microsoft.Extensions.Primitives.Reference/5.0.0.0": {
  5691. "type": "referenceassembly",
  5692. "serviceable": false,
  5693. "sha512": ""
  5694. },
  5695. "Microsoft.Extensions.WebEncoders/5.0.0.0": {
  5696. "type": "referenceassembly",
  5697. "serviceable": false,
  5698. "sha512": ""
  5699. },
  5700. "Microsoft.JSInterop/5.0.0.0": {
  5701. "type": "referenceassembly",
  5702. "serviceable": false,
  5703. "sha512": ""
  5704. },
  5705. "Microsoft.Net.Http.Headers/5.0.0.0": {
  5706. "type": "referenceassembly",
  5707. "serviceable": false,
  5708. "sha512": ""
  5709. },
  5710. "Microsoft.VisualBasic.Core/10.0.6.0": {
  5711. "type": "referenceassembly",
  5712. "serviceable": false,
  5713. "sha512": ""
  5714. },
  5715. "Microsoft.VisualBasic/10.0.0.0": {
  5716. "type": "referenceassembly",
  5717. "serviceable": false,
  5718. "sha512": ""
  5719. },
  5720. "Microsoft.Win32.Primitives/5.0.0.0": {
  5721. "type": "referenceassembly",
  5722. "serviceable": false,
  5723. "sha512": ""
  5724. },
  5725. "Microsoft.Win32.Registry.Reference/5.0.0.0": {
  5726. "type": "referenceassembly",
  5727. "serviceable": false,
  5728. "sha512": ""
  5729. },
  5730. "mscorlib/4.0.0.0": {
  5731. "type": "referenceassembly",
  5732. "serviceable": false,
  5733. "sha512": ""
  5734. },
  5735. "netstandard/2.1.0.0": {
  5736. "type": "referenceassembly",
  5737. "serviceable": false,
  5738. "sha512": ""
  5739. },
  5740. "System.AppContext/5.0.0.0": {
  5741. "type": "referenceassembly",
  5742. "serviceable": false,
  5743. "sha512": ""
  5744. },
  5745. "System.Buffers.Reference/5.0.0.0": {
  5746. "type": "referenceassembly",
  5747. "serviceable": false,
  5748. "sha512": ""
  5749. },
  5750. "System.Collections.Concurrent.Reference/5.0.0.0": {
  5751. "type": "referenceassembly",
  5752. "serviceable": false,
  5753. "sha512": ""
  5754. },
  5755. "System.Collections.Reference/5.0.0.0": {
  5756. "type": "referenceassembly",
  5757. "serviceable": false,
  5758. "sha512": ""
  5759. },
  5760. "System.Collections.Immutable.Reference/5.0.0.0": {
  5761. "type": "referenceassembly",
  5762. "serviceable": false,
  5763. "sha512": ""
  5764. },
  5765. "System.Collections.NonGeneric.Reference/5.0.0.0": {
  5766. "type": "referenceassembly",
  5767. "serviceable": false,
  5768. "sha512": ""
  5769. },
  5770. "System.Collections.Specialized.Reference/5.0.0.0": {
  5771. "type": "referenceassembly",
  5772. "serviceable": false,
  5773. "sha512": ""
  5774. },
  5775. "System.ComponentModel.Annotations.Reference/5.0.0.0": {
  5776. "type": "referenceassembly",
  5777. "serviceable": false,
  5778. "sha512": ""
  5779. },
  5780. "System.ComponentModel.DataAnnotations/4.0.0.0": {
  5781. "type": "referenceassembly",
  5782. "serviceable": false,
  5783. "sha512": ""
  5784. },
  5785. "System.ComponentModel.Reference/5.0.0.0": {
  5786. "type": "referenceassembly",
  5787. "serviceable": false,
  5788. "sha512": ""
  5789. },
  5790. "System.ComponentModel.EventBasedAsync/5.0.0.0": {
  5791. "type": "referenceassembly",
  5792. "serviceable": false,
  5793. "sha512": ""
  5794. },
  5795. "System.ComponentModel.Primitives.Reference/5.0.0.0": {
  5796. "type": "referenceassembly",
  5797. "serviceable": false,
  5798. "sha512": ""
  5799. },
  5800. "System.ComponentModel.TypeConverter.Reference/5.0.0.0": {
  5801. "type": "referenceassembly",
  5802. "serviceable": false,
  5803. "sha512": ""
  5804. },
  5805. "System.Configuration/4.0.0.0": {
  5806. "type": "referenceassembly",
  5807. "serviceable": false,
  5808. "sha512": ""
  5809. },
  5810. "System.Console.Reference/5.0.0.0": {
  5811. "type": "referenceassembly",
  5812. "serviceable": false,
  5813. "sha512": ""
  5814. },
  5815. "System.Core/4.0.0.0": {
  5816. "type": "referenceassembly",
  5817. "serviceable": false,
  5818. "sha512": ""
  5819. },
  5820. "System.Data.Common/5.0.0.0": {
  5821. "type": "referenceassembly",
  5822. "serviceable": false,
  5823. "sha512": ""
  5824. },
  5825. "System.Data.DataSetExtensions/4.0.0.0": {
  5826. "type": "referenceassembly",
  5827. "serviceable": false,
  5828. "sha512": ""
  5829. },
  5830. "System.Data/4.0.0.0": {
  5831. "type": "referenceassembly",
  5832. "serviceable": false,
  5833. "sha512": ""
  5834. },
  5835. "System.Diagnostics.Contracts/5.0.0.0": {
  5836. "type": "referenceassembly",
  5837. "serviceable": false,
  5838. "sha512": ""
  5839. },
  5840. "System.Diagnostics.Debug.Reference/5.0.0.0": {
  5841. "type": "referenceassembly",
  5842. "serviceable": false,
  5843. "sha512": ""
  5844. },
  5845. "System.Diagnostics.EventLog/5.0.0.0": {
  5846. "type": "referenceassembly",
  5847. "serviceable": false,
  5848. "sha512": ""
  5849. },
  5850. "System.Diagnostics.FileVersionInfo/5.0.0.0": {
  5851. "type": "referenceassembly",
  5852. "serviceable": false,
  5853. "sha512": ""
  5854. },
  5855. "System.Diagnostics.Process/5.0.0.0": {
  5856. "type": "referenceassembly",
  5857. "serviceable": false,
  5858. "sha512": ""
  5859. },
  5860. "System.Diagnostics.StackTrace/5.0.0.0": {
  5861. "type": "referenceassembly",
  5862. "serviceable": false,
  5863. "sha512": ""
  5864. },
  5865. "System.Diagnostics.TextWriterTraceListener/5.0.0.0": {
  5866. "type": "referenceassembly",
  5867. "serviceable": false,
  5868. "sha512": ""
  5869. },
  5870. "System.Diagnostics.Tools.Reference/5.0.0.0": {
  5871. "type": "referenceassembly",
  5872. "serviceable": false,
  5873. "sha512": ""
  5874. },
  5875. "System.Diagnostics.TraceSource/5.0.0.0": {
  5876. "type": "referenceassembly",
  5877. "serviceable": false,
  5878. "sha512": ""
  5879. },
  5880. "System.Diagnostics.Tracing.Reference/5.0.0.0": {
  5881. "type": "referenceassembly",
  5882. "serviceable": false,
  5883. "sha512": ""
  5884. },
  5885. "System/4.0.0.0": {
  5886. "type": "referenceassembly",
  5887. "serviceable": false,
  5888. "sha512": ""
  5889. },
  5890. "System.Drawing/4.0.0.0": {
  5891. "type": "referenceassembly",
  5892. "serviceable": false,
  5893. "sha512": ""
  5894. },
  5895. "System.Drawing.Primitives/5.0.0.0": {
  5896. "type": "referenceassembly",
  5897. "serviceable": false,
  5898. "sha512": ""
  5899. },
  5900. "System.Dynamic.Runtime/5.0.0.0": {
  5901. "type": "referenceassembly",
  5902. "serviceable": false,
  5903. "sha512": ""
  5904. },
  5905. "System.Formats.Asn1/5.0.0.0": {
  5906. "type": "referenceassembly",
  5907. "serviceable": false,
  5908. "sha512": ""
  5909. },
  5910. "System.Globalization.Calendars/5.0.0.0": {
  5911. "type": "referenceassembly",
  5912. "serviceable": false,
  5913. "sha512": ""
  5914. },
  5915. "System.Globalization.Reference/5.0.0.0": {
  5916. "type": "referenceassembly",
  5917. "serviceable": false,
  5918. "sha512": ""
  5919. },
  5920. "System.Globalization.Extensions.Reference/5.0.0.0": {
  5921. "type": "referenceassembly",
  5922. "serviceable": false,
  5923. "sha512": ""
  5924. },
  5925. "System.IO.Compression.Brotli/5.0.0.0": {
  5926. "type": "referenceassembly",
  5927. "serviceable": false,
  5928. "sha512": ""
  5929. },
  5930. "System.IO.Compression/5.0.0.0": {
  5931. "type": "referenceassembly",
  5932. "serviceable": false,
  5933. "sha512": ""
  5934. },
  5935. "System.IO.Compression.FileSystem/4.0.0.0": {
  5936. "type": "referenceassembly",
  5937. "serviceable": false,
  5938. "sha512": ""
  5939. },
  5940. "System.IO.Compression.ZipFile/5.0.0.0": {
  5941. "type": "referenceassembly",
  5942. "serviceable": false,
  5943. "sha512": ""
  5944. },
  5945. "System.IO.Reference/5.0.0.0": {
  5946. "type": "referenceassembly",
  5947. "serviceable": false,
  5948. "sha512": ""
  5949. },
  5950. "System.IO.FileSystem.Reference/5.0.0.0": {
  5951. "type": "referenceassembly",
  5952. "serviceable": false,
  5953. "sha512": ""
  5954. },
  5955. "System.IO.FileSystem.DriveInfo/5.0.0.0": {
  5956. "type": "referenceassembly",
  5957. "serviceable": false,
  5958. "sha512": ""
  5959. },
  5960. "System.IO.FileSystem.Primitives.Reference/5.0.0.0": {
  5961. "type": "referenceassembly",
  5962. "serviceable": false,
  5963. "sha512": ""
  5964. },
  5965. "System.IO.FileSystem.Watcher/5.0.0.0": {
  5966. "type": "referenceassembly",
  5967. "serviceable": false,
  5968. "sha512": ""
  5969. },
  5970. "System.IO.IsolatedStorage/5.0.0.0": {
  5971. "type": "referenceassembly",
  5972. "serviceable": false,
  5973. "sha512": ""
  5974. },
  5975. "System.IO.MemoryMappedFiles/5.0.0.0": {
  5976. "type": "referenceassembly",
  5977. "serviceable": false,
  5978. "sha512": ""
  5979. },
  5980. "System.IO.Pipelines/5.0.0.0": {
  5981. "type": "referenceassembly",
  5982. "serviceable": false,
  5983. "sha512": ""
  5984. },
  5985. "System.IO.Pipes/5.0.0.0": {
  5986. "type": "referenceassembly",
  5987. "serviceable": false,
  5988. "sha512": ""
  5989. },
  5990. "System.IO.UnmanagedMemoryStream/5.0.0.0": {
  5991. "type": "referenceassembly",
  5992. "serviceable": false,
  5993. "sha512": ""
  5994. },
  5995. "System.Linq.Reference/5.0.0.0": {
  5996. "type": "referenceassembly",
  5997. "serviceable": false,
  5998. "sha512": ""
  5999. },
  6000. "System.Linq.Expressions.Reference/5.0.0.0": {
  6001. "type": "referenceassembly",
  6002. "serviceable": false,
  6003. "sha512": ""
  6004. },
  6005. "System.Linq.Parallel/5.0.0.0": {
  6006. "type": "referenceassembly",
  6007. "serviceable": false,
  6008. "sha512": ""
  6009. },
  6010. "System.Linq.Queryable/5.0.0.0": {
  6011. "type": "referenceassembly",
  6012. "serviceable": false,
  6013. "sha512": ""
  6014. },
  6015. "System.Memory.Reference/5.0.0.0": {
  6016. "type": "referenceassembly",
  6017. "serviceable": false,
  6018. "sha512": ""
  6019. },
  6020. "System.Net/4.0.0.0": {
  6021. "type": "referenceassembly",
  6022. "serviceable": false,
  6023. "sha512": ""
  6024. },
  6025. "System.Net.Http/5.0.0.0": {
  6026. "type": "referenceassembly",
  6027. "serviceable": false,
  6028. "sha512": ""
  6029. },
  6030. "System.Net.Http.Json/5.0.0.0": {
  6031. "type": "referenceassembly",
  6032. "serviceable": false,
  6033. "sha512": ""
  6034. },
  6035. "System.Net.HttpListener/5.0.0.0": {
  6036. "type": "referenceassembly",
  6037. "serviceable": false,
  6038. "sha512": ""
  6039. },
  6040. "System.Net.Mail/5.0.0.0": {
  6041. "type": "referenceassembly",
  6042. "serviceable": false,
  6043. "sha512": ""
  6044. },
  6045. "System.Net.NameResolution.Reference/5.0.0.0": {
  6046. "type": "referenceassembly",
  6047. "serviceable": false,
  6048. "sha512": ""
  6049. },
  6050. "System.Net.NetworkInformation/5.0.0.0": {
  6051. "type": "referenceassembly",
  6052. "serviceable": false,
  6053. "sha512": ""
  6054. },
  6055. "System.Net.Ping/5.0.0.0": {
  6056. "type": "referenceassembly",
  6057. "serviceable": false,
  6058. "sha512": ""
  6059. },
  6060. "System.Net.Primitives.Reference/5.0.0.0": {
  6061. "type": "referenceassembly",
  6062. "serviceable": false,
  6063. "sha512": ""
  6064. },
  6065. "System.Net.Requests/5.0.0.0": {
  6066. "type": "referenceassembly",
  6067. "serviceable": false,
  6068. "sha512": ""
  6069. },
  6070. "System.Net.Security/5.0.0.0": {
  6071. "type": "referenceassembly",
  6072. "serviceable": false,
  6073. "sha512": ""
  6074. },
  6075. "System.Net.ServicePoint/5.0.0.0": {
  6076. "type": "referenceassembly",
  6077. "serviceable": false,
  6078. "sha512": ""
  6079. },
  6080. "System.Net.Sockets/5.0.0.0": {
  6081. "type": "referenceassembly",
  6082. "serviceable": false,
  6083. "sha512": ""
  6084. },
  6085. "System.Net.WebClient/5.0.0.0": {
  6086. "type": "referenceassembly",
  6087. "serviceable": false,
  6088. "sha512": ""
  6089. },
  6090. "System.Net.WebHeaderCollection/5.0.0.0": {
  6091. "type": "referenceassembly",
  6092. "serviceable": false,
  6093. "sha512": ""
  6094. },
  6095. "System.Net.WebProxy/5.0.0.0": {
  6096. "type": "referenceassembly",
  6097. "serviceable": false,
  6098. "sha512": ""
  6099. },
  6100. "System.Net.WebSockets.Client/5.0.0.0": {
  6101. "type": "referenceassembly",
  6102. "serviceable": false,
  6103. "sha512": ""
  6104. },
  6105. "System.Net.WebSockets/5.0.0.0": {
  6106. "type": "referenceassembly",
  6107. "serviceable": false,
  6108. "sha512": ""
  6109. },
  6110. "System.Numerics/4.0.0.0": {
  6111. "type": "referenceassembly",
  6112. "serviceable": false,
  6113. "sha512": ""
  6114. },
  6115. "System.Numerics.Vectors/5.0.0.0": {
  6116. "type": "referenceassembly",
  6117. "serviceable": false,
  6118. "sha512": ""
  6119. },
  6120. "System.ObjectModel.Reference/5.0.0.0": {
  6121. "type": "referenceassembly",
  6122. "serviceable": false,
  6123. "sha512": ""
  6124. },
  6125. "System.Reflection.DispatchProxy/5.0.0.0": {
  6126. "type": "referenceassembly",
  6127. "serviceable": false,
  6128. "sha512": ""
  6129. },
  6130. "System.Reflection.Reference/5.0.0.0": {
  6131. "type": "referenceassembly",
  6132. "serviceable": false,
  6133. "sha512": ""
  6134. },
  6135. "System.Reflection.Emit.Reference/5.0.0.0": {
  6136. "type": "referenceassembly",
  6137. "serviceable": false,
  6138. "sha512": ""
  6139. },
  6140. "System.Reflection.Emit.ILGeneration.Reference/5.0.0.0": {
  6141. "type": "referenceassembly",
  6142. "serviceable": false,
  6143. "sha512": ""
  6144. },
  6145. "System.Reflection.Emit.Lightweight.Reference/5.0.0.0": {
  6146. "type": "referenceassembly",
  6147. "serviceable": false,
  6148. "sha512": ""
  6149. },
  6150. "System.Reflection.Extensions.Reference/5.0.0.0": {
  6151. "type": "referenceassembly",
  6152. "serviceable": false,
  6153. "sha512": ""
  6154. },
  6155. "System.Reflection.Metadata.Reference/5.0.0.0": {
  6156. "type": "referenceassembly",
  6157. "serviceable": false,
  6158. "sha512": ""
  6159. },
  6160. "System.Reflection.Primitives.Reference/5.0.0.0": {
  6161. "type": "referenceassembly",
  6162. "serviceable": false,
  6163. "sha512": ""
  6164. },
  6165. "System.Reflection.TypeExtensions.Reference/5.0.0.0": {
  6166. "type": "referenceassembly",
  6167. "serviceable": false,
  6168. "sha512": ""
  6169. },
  6170. "System.Resources.Reader/5.0.0.0": {
  6171. "type": "referenceassembly",
  6172. "serviceable": false,
  6173. "sha512": ""
  6174. },
  6175. "System.Resources.ResourceManager.Reference/5.0.0.0": {
  6176. "type": "referenceassembly",
  6177. "serviceable": false,
  6178. "sha512": ""
  6179. },
  6180. "System.Resources.Writer/5.0.0.0": {
  6181. "type": "referenceassembly",
  6182. "serviceable": false,
  6183. "sha512": ""
  6184. },
  6185. "System.Runtime.CompilerServices.Unsafe.Reference/5.0.0.0": {
  6186. "type": "referenceassembly",
  6187. "serviceable": false,
  6188. "sha512": ""
  6189. },
  6190. "System.Runtime.CompilerServices.VisualC/5.0.0.0": {
  6191. "type": "referenceassembly",
  6192. "serviceable": false,
  6193. "sha512": ""
  6194. },
  6195. "System.Runtime.Reference/5.0.0.0": {
  6196. "type": "referenceassembly",
  6197. "serviceable": false,
  6198. "sha512": ""
  6199. },
  6200. "System.Runtime.Extensions.Reference/5.0.0.0": {
  6201. "type": "referenceassembly",
  6202. "serviceable": false,
  6203. "sha512": ""
  6204. },
  6205. "System.Runtime.Handles.Reference/5.0.0.0": {
  6206. "type": "referenceassembly",
  6207. "serviceable": false,
  6208. "sha512": ""
  6209. },
  6210. "System.Runtime.InteropServices.Reference/5.0.0.0": {
  6211. "type": "referenceassembly",
  6212. "serviceable": false,
  6213. "sha512": ""
  6214. },
  6215. "System.Runtime.InteropServices.RuntimeInformation.Reference/5.0.0.0": {
  6216. "type": "referenceassembly",
  6217. "serviceable": false,
  6218. "sha512": ""
  6219. },
  6220. "System.Runtime.Intrinsics/5.0.0.0": {
  6221. "type": "referenceassembly",
  6222. "serviceable": false,
  6223. "sha512": ""
  6224. },
  6225. "System.Runtime.Loader/5.0.0.0": {
  6226. "type": "referenceassembly",
  6227. "serviceable": false,
  6228. "sha512": ""
  6229. },
  6230. "System.Runtime.Numerics/5.0.0.0": {
  6231. "type": "referenceassembly",
  6232. "serviceable": false,
  6233. "sha512": ""
  6234. },
  6235. "System.Runtime.Serialization/4.0.0.0": {
  6236. "type": "referenceassembly",
  6237. "serviceable": false,
  6238. "sha512": ""
  6239. },
  6240. "System.Runtime.Serialization.Formatters.Reference/5.0.0.0": {
  6241. "type": "referenceassembly",
  6242. "serviceable": false,
  6243. "sha512": ""
  6244. },
  6245. "System.Runtime.Serialization.Json.Reference/5.0.0.0": {
  6246. "type": "referenceassembly",
  6247. "serviceable": false,
  6248. "sha512": ""
  6249. },
  6250. "System.Runtime.Serialization.Primitives.Reference/5.0.0.0": {
  6251. "type": "referenceassembly",
  6252. "serviceable": false,
  6253. "sha512": ""
  6254. },
  6255. "System.Runtime.Serialization.Xml/5.0.0.0": {
  6256. "type": "referenceassembly",
  6257. "serviceable": false,
  6258. "sha512": ""
  6259. },
  6260. "System.Security.AccessControl.Reference/5.0.0.0": {
  6261. "type": "referenceassembly",
  6262. "serviceable": false,
  6263. "sha512": ""
  6264. },
  6265. "System.Security.Claims/5.0.0.0": {
  6266. "type": "referenceassembly",
  6267. "serviceable": false,
  6268. "sha512": ""
  6269. },
  6270. "System.Security.Cryptography.Algorithms/5.0.0.0": {
  6271. "type": "referenceassembly",
  6272. "serviceable": false,
  6273. "sha512": ""
  6274. },
  6275. "System.Security.Cryptography.Cng.Reference/5.0.0.0": {
  6276. "type": "referenceassembly",
  6277. "serviceable": false,
  6278. "sha512": ""
  6279. },
  6280. "System.Security.Cryptography.Csp/5.0.0.0": {
  6281. "type": "referenceassembly",
  6282. "serviceable": false,
  6283. "sha512": ""
  6284. },
  6285. "System.Security.Cryptography.Encoding/5.0.0.0": {
  6286. "type": "referenceassembly",
  6287. "serviceable": false,
  6288. "sha512": ""
  6289. },
  6290. "System.Security.Cryptography.Primitives.Reference/5.0.0.0": {
  6291. "type": "referenceassembly",
  6292. "serviceable": false,
  6293. "sha512": ""
  6294. },
  6295. "System.Security.Cryptography.X509Certificates/5.0.0.0": {
  6296. "type": "referenceassembly",
  6297. "serviceable": false,
  6298. "sha512": ""
  6299. },
  6300. "System.Security.Cryptography.Xml/5.0.0.0": {
  6301. "type": "referenceassembly",
  6302. "serviceable": false,
  6303. "sha512": ""
  6304. },
  6305. "System.Security/4.0.0.0": {
  6306. "type": "referenceassembly",
  6307. "serviceable": false,
  6308. "sha512": ""
  6309. },
  6310. "System.Security.Permissions.Reference/5.0.0.0": {
  6311. "type": "referenceassembly",
  6312. "serviceable": false,
  6313. "sha512": ""
  6314. },
  6315. "System.Security.Principal/5.0.0.0": {
  6316. "type": "referenceassembly",
  6317. "serviceable": false,
  6318. "sha512": ""
  6319. },
  6320. "System.Security.Principal.Windows.Reference/5.0.0.0": {
  6321. "type": "referenceassembly",
  6322. "serviceable": false,
  6323. "sha512": ""
  6324. },
  6325. "System.Security.SecureString.Reference/5.0.0.0": {
  6326. "type": "referenceassembly",
  6327. "serviceable": false,
  6328. "sha512": ""
  6329. },
  6330. "System.ServiceModel.Web/4.0.0.0": {
  6331. "type": "referenceassembly",
  6332. "serviceable": false,
  6333. "sha512": ""
  6334. },
  6335. "System.ServiceProcess/4.0.0.0": {
  6336. "type": "referenceassembly",
  6337. "serviceable": false,
  6338. "sha512": ""
  6339. },
  6340. "System.Text.Encoding.CodePages.Reference/5.0.0.0": {
  6341. "type": "referenceassembly",
  6342. "serviceable": false,
  6343. "sha512": ""
  6344. },
  6345. "System.Text.Encoding.Reference/5.0.0.0": {
  6346. "type": "referenceassembly",
  6347. "serviceable": false,
  6348. "sha512": ""
  6349. },
  6350. "System.Text.Encoding.Extensions.Reference/5.0.0.0": {
  6351. "type": "referenceassembly",
  6352. "serviceable": false,
  6353. "sha512": ""
  6354. },
  6355. "System.Text.Encodings.Web.Reference/5.0.0.0": {
  6356. "type": "referenceassembly",
  6357. "serviceable": false,
  6358. "sha512": ""
  6359. },
  6360. "System.Text.Json/5.0.0.0": {
  6361. "type": "referenceassembly",
  6362. "serviceable": false,
  6363. "sha512": ""
  6364. },
  6365. "System.Text.RegularExpressions.Reference/5.0.0.0": {
  6366. "type": "referenceassembly",
  6367. "serviceable": false,
  6368. "sha512": ""
  6369. },
  6370. "System.Threading.Channels/5.0.0.0": {
  6371. "type": "referenceassembly",
  6372. "serviceable": false,
  6373. "sha512": ""
  6374. },
  6375. "System.Threading.Reference/5.0.0.0": {
  6376. "type": "referenceassembly",
  6377. "serviceable": false,
  6378. "sha512": ""
  6379. },
  6380. "System.Threading.Overlapped/5.0.0.0": {
  6381. "type": "referenceassembly",
  6382. "serviceable": false,
  6383. "sha512": ""
  6384. },
  6385. "System.Threading.Tasks.Dataflow/5.0.0.0": {
  6386. "type": "referenceassembly",
  6387. "serviceable": false,
  6388. "sha512": ""
  6389. },
  6390. "System.Threading.Tasks.Reference/5.0.0.0": {
  6391. "type": "referenceassembly",
  6392. "serviceable": false,
  6393. "sha512": ""
  6394. },
  6395. "System.Threading.Tasks.Extensions.Reference/5.0.0.0": {
  6396. "type": "referenceassembly",
  6397. "serviceable": false,
  6398. "sha512": ""
  6399. },
  6400. "System.Threading.Tasks.Parallel/5.0.0.0": {
  6401. "type": "referenceassembly",
  6402. "serviceable": false,
  6403. "sha512": ""
  6404. },
  6405. "System.Threading.Thread/5.0.0.0": {
  6406. "type": "referenceassembly",
  6407. "serviceable": false,
  6408. "sha512": ""
  6409. },
  6410. "System.Threading.ThreadPool/5.0.0.0": {
  6411. "type": "referenceassembly",
  6412. "serviceable": false,
  6413. "sha512": ""
  6414. },
  6415. "System.Threading.Timer.Reference/5.0.0.0": {
  6416. "type": "referenceassembly",
  6417. "serviceable": false,
  6418. "sha512": ""
  6419. },
  6420. "System.Transactions/4.0.0.0": {
  6421. "type": "referenceassembly",
  6422. "serviceable": false,
  6423. "sha512": ""
  6424. },
  6425. "System.Transactions.Local/5.0.0.0": {
  6426. "type": "referenceassembly",
  6427. "serviceable": false,
  6428. "sha512": ""
  6429. },
  6430. "System.ValueTuple/4.0.3.0": {
  6431. "type": "referenceassembly",
  6432. "serviceable": false,
  6433. "sha512": ""
  6434. },
  6435. "System.Web/4.0.0.0": {
  6436. "type": "referenceassembly",
  6437. "serviceable": false,
  6438. "sha512": ""
  6439. },
  6440. "System.Web.HttpUtility/5.0.0.0": {
  6441. "type": "referenceassembly",
  6442. "serviceable": false,
  6443. "sha512": ""
  6444. },
  6445. "System.Windows/4.0.0.0": {
  6446. "type": "referenceassembly",
  6447. "serviceable": false,
  6448. "sha512": ""
  6449. },
  6450. "System.Windows.Extensions.Reference/5.0.0.0": {
  6451. "type": "referenceassembly",
  6452. "serviceable": false,
  6453. "sha512": ""
  6454. },
  6455. "System.Xml/4.0.0.0": {
  6456. "type": "referenceassembly",
  6457. "serviceable": false,
  6458. "sha512": ""
  6459. },
  6460. "System.Xml.Linq/4.0.0.0": {
  6461. "type": "referenceassembly",
  6462. "serviceable": false,
  6463. "sha512": ""
  6464. },
  6465. "System.Xml.ReaderWriter.Reference/5.0.0.0": {
  6466. "type": "referenceassembly",
  6467. "serviceable": false,
  6468. "sha512": ""
  6469. },
  6470. "System.Xml.Serialization/4.0.0.0": {
  6471. "type": "referenceassembly",
  6472. "serviceable": false,
  6473. "sha512": ""
  6474. },
  6475. "System.Xml.XDocument.Reference/5.0.0.0": {
  6476. "type": "referenceassembly",
  6477. "serviceable": false,
  6478. "sha512": ""
  6479. },
  6480. "System.Xml.XmlDocument.Reference/5.0.0.0": {
  6481. "type": "referenceassembly",
  6482. "serviceable": false,
  6483. "sha512": ""
  6484. },
  6485. "System.Xml.XmlSerializer.Reference/5.0.0.0": {
  6486. "type": "referenceassembly",
  6487. "serviceable": false,
  6488. "sha512": ""
  6489. },
  6490. "System.Xml.XPath/5.0.0.0": {
  6491. "type": "referenceassembly",
  6492. "serviceable": false,
  6493. "sha512": ""
  6494. },
  6495. "System.Xml.XPath.XDocument/5.0.0.0": {
  6496. "type": "referenceassembly",
  6497. "serviceable": false,
  6498. "sha512": ""
  6499. },
  6500. "WindowsBase/4.0.0.0": {
  6501. "type": "referenceassembly",
  6502. "serviceable": false,
  6503. "sha512": ""
  6504. }
  6505. }
  6506. }