123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184 |
- {
- "version": 3,
- "targets": {
- ".NETFramework,Version=v4.8": {
- "Microsoft.Identity.Client/4.60.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.IdentityModel.Abstractions": "6.35.0",
- "System.Diagnostics.DiagnosticSource": "6.0.1"
- },
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "System",
- "System.Core",
- "System.Data",
- "System.Data.DataSetExtensions",
- "System.Drawing",
- "System.IdentityModel",
- "System.Net.Http",
- "System.Windows.Forms",
- "System.Xml",
- "System.Xml.Linq"
- ],
- "compile": {
- "lib/net462/Microsoft.Identity.Client.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net462/Microsoft.Identity.Client.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Identity.Client.Extensions.Msal/4.60.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.Identity.Client": "4.60.3",
- "System.IO.FileSystem.AccessControl": "5.0.0",
- "System.Security.Cryptography.ProtectedData": "4.5.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.IdentityModel.Abstractions/6.35.0": {
- "type": "package",
- "compile": {
- "lib/net472/Microsoft.IdentityModel.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net472/Microsoft.IdentityModel.Abstractions.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.InformationProtection.File/1.14.128": {
- "type": "package",
- "compile": {
- "lib/net40/Microsoft.InformationProtection.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net40/Microsoft.InformationProtection.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "build/net40/_._": {}
- }
- },
- "System.Buffers/4.5.1": {
- "type": "package",
- "frameworkAssemblies": [
- "mscorlib"
- ],
- "compile": {
- "ref/net45/System.Buffers.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net461/System.Buffers.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Configuration.ConfigurationManager/8.0.0": {
- "type": "package",
- "frameworkAssemblies": [
- "System.Configuration"
- ],
- "compile": {
- "lib/net462/System.Configuration.ConfigurationManager.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net462/System.Configuration.ConfigurationManager.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net462/_._": {}
- }
- },
- "System.Diagnostics.DiagnosticSource/6.0.1": {
- "type": "package",
- "dependencies": {
- "System.Memory": "4.5.4",
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- },
- "compile": {
- "lib/net461/System.Diagnostics.DiagnosticSource.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net461/System.Diagnostics.DiagnosticSource.dll": {
- "related": ".xml"
- }
- }
- },
- "System.IO.FileSystem.AccessControl/5.0.0": {
- "type": "package",
- "dependencies": {
- "System.Security.AccessControl": "5.0.0",
- "System.Security.Principal.Windows": "5.0.0"
- },
- "frameworkAssemblies": [
- "mscorlib"
- ],
- "compile": {
- "ref/net461/System.IO.FileSystem.AccessControl.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net461/System.IO.FileSystem.AccessControl.dll": {
- "related": ".xml"
- }
- },
- "runtimeTargets": {
- "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Memory/4.5.4": {
- "type": "package",
- "dependencies": {
- "System.Buffers": "4.5.1",
- "System.Numerics.Vectors": "4.5.0",
- "System.Runtime.CompilerServices.Unsafe": "4.5.3"
- },
- "frameworkAssemblies": [
- "System",
- "mscorlib"
- ],
- "compile": {
- "lib/net461/System.Memory.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net461/System.Memory.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Numerics.Vectors/4.5.0": {
- "type": "package",
- "frameworkAssemblies": [
- "System.Numerics",
- "mscorlib"
- ],
- "compile": {
- "ref/net46/System.Numerics.Vectors.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net46/System.Numerics.Vectors.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Runtime.CompilerServices.Unsafe/6.0.0": {
- "type": "package",
- "frameworkAssemblies": [
- "mscorlib"
- ],
- "compile": {
- "lib/net461/System.Runtime.CompilerServices.Unsafe.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net461/System.Runtime.CompilerServices.Unsafe.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Security.AccessControl/5.0.0": {
- "type": "package",
- "dependencies": {
- "System.Security.Principal.Windows": "5.0.0"
- },
- "frameworkAssemblies": [
- "mscorlib"
- ],
- "compile": {
- "ref/net461/System.Security.AccessControl.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net461/System.Security.AccessControl.dll": {
- "related": ".xml"
- }
- },
- "runtimeTargets": {
- "runtimes/win/lib/net461/System.Security.AccessControl.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Security.Cryptography.ProtectedData/4.5.0": {
- "type": "package",
- "frameworkAssemblies": [
- "System.Security",
- "mscorlib"
- ],
- "compile": {
- "ref/net461/System.Security.Cryptography.ProtectedData.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net461/System.Security.Cryptography.ProtectedData.dll": {}
- },
- "runtimeTargets": {
- "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Security.Principal.Windows/5.0.0": {
- "type": "package",
- "frameworkAssemblies": [
- "System",
- "mscorlib"
- ],
- "compile": {
- "ref/net461/System.Security.Principal.Windows.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net461/System.Security.Principal.Windows.dll": {
- "related": ".xml"
- }
- },
- "runtimeTargets": {
- "runtimes/win/lib/net461/System.Security.Principal.Windows.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "AipGateway.AIP/1.0.0": {
- "type": "project",
- "framework": ".NETFramework,Version=v4.8",
- "dependencies": {
- "Microsoft.Identity.Client": "4.60.3",
- "Microsoft.Identity.Client.Extensions.Msal": "4.60.3",
- "Microsoft.InformationProtection.File": "1.14.128"
- },
- "compile": {
- "bin/placeholder/AipGateway.AIP.dll": {}
- },
- "runtime": {
- "bin/placeholder/AipGateway.AIP.dll": {}
- }
- }
- },
- ".NETFramework,Version=v4.8/win": {
- "Microsoft.Identity.Client/4.60.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.IdentityModel.Abstractions": "6.35.0",
- "System.Diagnostics.DiagnosticSource": "6.0.1"
- },
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "System",
- "System.Core",
- "System.Data",
- "System.Data.DataSetExtensions",
- "System.Drawing",
- "System.IdentityModel",
- "System.Net.Http",
- "System.Windows.Forms",
- "System.Xml",
- "System.Xml.Linq"
- ],
- "compile": {
- "lib/net462/Microsoft.Identity.Client.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net462/Microsoft.Identity.Client.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Identity.Client.Extensions.Msal/4.60.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.Identity.Client": "4.60.3",
- "System.IO.FileSystem.AccessControl": "5.0.0",
- "System.Security.Cryptography.ProtectedData": "4.5.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.IdentityModel.Abstractions/6.35.0": {
- "type": "package",
- "compile": {
- "lib/net472/Microsoft.IdentityModel.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net472/Microsoft.IdentityModel.Abstractions.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.InformationProtection.File/1.14.128": {
- "type": "package",
- "compile": {
- "lib/net40/Microsoft.InformationProtection.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net40/Microsoft.InformationProtection.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "build/net40/_._": {}
- }
- },
- "System.Buffers/4.5.1": {
- "type": "package",
- "frameworkAssemblies": [
- "mscorlib"
- ],
- "compile": {
- "ref/net45/System.Buffers.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net461/System.Buffers.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Configuration.ConfigurationManager/8.0.0": {
- "type": "package",
- "frameworkAssemblies": [
- "System.Configuration"
- ],
- "compile": {
- "lib/net462/System.Configuration.ConfigurationManager.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net462/System.Configuration.ConfigurationManager.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net462/_._": {}
- }
- },
- "System.Diagnostics.DiagnosticSource/6.0.1": {
- "type": "package",
- "dependencies": {
- "System.Memory": "4.5.4",
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- },
- "compile": {
- "lib/net461/System.Diagnostics.DiagnosticSource.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net461/System.Diagnostics.DiagnosticSource.dll": {
- "related": ".xml"
- }
- }
- },
- "System.IO.FileSystem.AccessControl/5.0.0": {
- "type": "package",
- "dependencies": {
- "System.Security.AccessControl": "5.0.0",
- "System.Security.Principal.Windows": "5.0.0"
- },
- "frameworkAssemblies": [
- "mscorlib"
- ],
- "compile": {
- "ref/net461/System.IO.FileSystem.AccessControl.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Memory/4.5.4": {
- "type": "package",
- "dependencies": {
- "System.Buffers": "4.5.1",
- "System.Numerics.Vectors": "4.5.0",
- "System.Runtime.CompilerServices.Unsafe": "4.5.3"
- },
- "frameworkAssemblies": [
- "System",
- "mscorlib"
- ],
- "compile": {
- "lib/net461/System.Memory.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net461/System.Memory.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Numerics.Vectors/4.5.0": {
- "type": "package",
- "frameworkAssemblies": [
- "System.Numerics",
- "mscorlib"
- ],
- "compile": {
- "ref/net46/System.Numerics.Vectors.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net46/System.Numerics.Vectors.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Runtime.CompilerServices.Unsafe/6.0.0": {
- "type": "package",
- "frameworkAssemblies": [
- "mscorlib"
- ],
- "compile": {
- "lib/net461/System.Runtime.CompilerServices.Unsafe.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net461/System.Runtime.CompilerServices.Unsafe.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Security.AccessControl/5.0.0": {
- "type": "package",
- "dependencies": {
- "System.Security.Principal.Windows": "5.0.0"
- },
- "frameworkAssemblies": [
- "mscorlib"
- ],
- "compile": {
- "ref/net461/System.Security.AccessControl.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "runtimes/win/lib/net461/System.Security.AccessControl.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Security.Cryptography.ProtectedData/4.5.0": {
- "type": "package",
- "frameworkAssemblies": [
- "System.Security",
- "mscorlib"
- ],
- "compile": {
- "ref/net461/System.Security.Cryptography.ProtectedData.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll": {}
- }
- },
- "System.Security.Principal.Windows/5.0.0": {
- "type": "package",
- "frameworkAssemblies": [
- "System",
- "mscorlib"
- ],
- "compile": {
- "ref/net461/System.Security.Principal.Windows.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "runtimes/win/lib/net461/System.Security.Principal.Windows.dll": {
- "related": ".xml"
- }
- }
- },
- "AipGateway.AIP/1.0.0": {
- "type": "project",
- "framework": ".NETFramework,Version=v4.8",
- "dependencies": {
- "Microsoft.Identity.Client": "4.60.3",
- "Microsoft.Identity.Client.Extensions.Msal": "4.60.3",
- "Microsoft.InformationProtection.File": "1.14.128"
- },
- "compile": {
- "bin/placeholder/AipGateway.AIP.dll": {}
- },
- "runtime": {
- "bin/placeholder/AipGateway.AIP.dll": {}
- }
- }
- },
- ".NETFramework,Version=v4.8/win-arm64": {
- "Microsoft.Identity.Client/4.60.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.IdentityModel.Abstractions": "6.35.0",
- "System.Diagnostics.DiagnosticSource": "6.0.1"
- },
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "System",
- "System.Core",
- "System.Data",
- "System.Data.DataSetExtensions",
- "System.Drawing",
- "System.IdentityModel",
- "System.Net.Http",
- "System.Windows.Forms",
- "System.Xml",
- "System.Xml.Linq"
- ],
- "compile": {
- "lib/net462/Microsoft.Identity.Client.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net462/Microsoft.Identity.Client.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Identity.Client.Extensions.Msal/4.60.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.Identity.Client": "4.60.3",
- "System.IO.FileSystem.AccessControl": "5.0.0",
- "System.Security.Cryptography.ProtectedData": "4.5.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.IdentityModel.Abstractions/6.35.0": {
- "type": "package",
- "compile": {
- "lib/net472/Microsoft.IdentityModel.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net472/Microsoft.IdentityModel.Abstractions.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.InformationProtection.File/1.14.128": {
- "type": "package",
- "compile": {
- "lib/net40/Microsoft.InformationProtection.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net40/Microsoft.InformationProtection.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "build/net40/_._": {}
- }
- },
- "System.Buffers/4.5.1": {
- "type": "package",
- "frameworkAssemblies": [
- "mscorlib"
- ],
- "compile": {
- "ref/net45/System.Buffers.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net461/System.Buffers.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Configuration.ConfigurationManager/8.0.0": {
- "type": "package",
- "frameworkAssemblies": [
- "System.Configuration"
- ],
- "compile": {
- "lib/net462/System.Configuration.ConfigurationManager.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net462/System.Configuration.ConfigurationManager.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net462/_._": {}
- }
- },
- "System.Diagnostics.DiagnosticSource/6.0.1": {
- "type": "package",
- "dependencies": {
- "System.Memory": "4.5.4",
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- },
- "compile": {
- "lib/net461/System.Diagnostics.DiagnosticSource.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net461/System.Diagnostics.DiagnosticSource.dll": {
- "related": ".xml"
- }
- }
- },
- "System.IO.FileSystem.AccessControl/5.0.0": {
- "type": "package",
- "dependencies": {
- "System.Security.AccessControl": "5.0.0",
- "System.Security.Principal.Windows": "5.0.0"
- },
- "frameworkAssemblies": [
- "mscorlib"
- ],
- "compile": {
- "ref/net461/System.IO.FileSystem.AccessControl.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net461/System.IO.FileSystem.AccessControl.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Memory/4.5.4": {
- "type": "package",
- "dependencies": {
- "System.Buffers": "4.5.1",
- "System.Numerics.Vectors": "4.5.0",
- "System.Runtime.CompilerServices.Unsafe": "4.5.3"
- },
- "frameworkAssemblies": [
- "System",
- "mscorlib"
- ],
- "compile": {
- "lib/net461/System.Memory.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net461/System.Memory.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Numerics.Vectors/4.5.0": {
- "type": "package",
- "frameworkAssemblies": [
- "System.Numerics",
- "mscorlib"
- ],
- "compile": {
- "ref/net46/System.Numerics.Vectors.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net46/System.Numerics.Vectors.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Runtime.CompilerServices.Unsafe/6.0.0": {
- "type": "package",
- "frameworkAssemblies": [
- "mscorlib"
- ],
- "compile": {
- "lib/net461/System.Runtime.CompilerServices.Unsafe.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net461/System.Runtime.CompilerServices.Unsafe.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Security.AccessControl/5.0.0": {
- "type": "package",
- "dependencies": {
- "System.Security.Principal.Windows": "5.0.0"
- },
- "frameworkAssemblies": [
- "mscorlib"
- ],
- "compile": {
- "ref/net461/System.Security.AccessControl.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net461/System.Security.AccessControl.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Security.Cryptography.ProtectedData/4.5.0": {
- "type": "package",
- "frameworkAssemblies": [
- "System.Security",
- "mscorlib"
- ],
- "compile": {
- "ref/net461/System.Security.Cryptography.ProtectedData.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net461/System.Security.Cryptography.ProtectedData.dll": {}
- }
- },
- "System.Security.Principal.Windows/5.0.0": {
- "type": "package",
- "frameworkAssemblies": [
- "System",
- "mscorlib"
- ],
- "compile": {
- "ref/net461/System.Security.Principal.Windows.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net461/System.Security.Principal.Windows.dll": {
- "related": ".xml"
- }
- }
- },
- "AipGateway.AIP/1.0.0": {
- "type": "project",
- "framework": ".NETFramework,Version=v4.8",
- "dependencies": {
- "Microsoft.Identity.Client": "4.60.3",
- "Microsoft.Identity.Client.Extensions.Msal": "4.60.3",
- "Microsoft.InformationProtection.File": "1.14.128"
- },
- "compile": {
- "bin/placeholder/AipGateway.AIP.dll": {}
- },
- "runtime": {
- "bin/placeholder/AipGateway.AIP.dll": {}
- }
- }
- },
- ".NETFramework,Version=v4.8/win-x64": {
- "Microsoft.Identity.Client/4.60.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.IdentityModel.Abstractions": "6.35.0",
- "System.Diagnostics.DiagnosticSource": "6.0.1"
- },
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "System",
- "System.Core",
- "System.Data",
- "System.Data.DataSetExtensions",
- "System.Drawing",
- "System.IdentityModel",
- "System.Net.Http",
- "System.Windows.Forms",
- "System.Xml",
- "System.Xml.Linq"
- ],
- "compile": {
- "lib/net462/Microsoft.Identity.Client.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net462/Microsoft.Identity.Client.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Identity.Client.Extensions.Msal/4.60.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.Identity.Client": "4.60.3",
- "System.IO.FileSystem.AccessControl": "5.0.0",
- "System.Security.Cryptography.ProtectedData": "4.5.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.IdentityModel.Abstractions/6.35.0": {
- "type": "package",
- "compile": {
- "lib/net472/Microsoft.IdentityModel.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net472/Microsoft.IdentityModel.Abstractions.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.InformationProtection.File/1.14.128": {
- "type": "package",
- "compile": {
- "lib/net40/Microsoft.InformationProtection.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net40/Microsoft.InformationProtection.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "build/net40/_._": {}
- }
- },
- "System.Buffers/4.5.1": {
- "type": "package",
- "frameworkAssemblies": [
- "mscorlib"
- ],
- "compile": {
- "ref/net45/System.Buffers.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net461/System.Buffers.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Configuration.ConfigurationManager/8.0.0": {
- "type": "package",
- "frameworkAssemblies": [
- "System.Configuration"
- ],
- "compile": {
- "lib/net462/System.Configuration.ConfigurationManager.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net462/System.Configuration.ConfigurationManager.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net462/_._": {}
- }
- },
- "System.Diagnostics.DiagnosticSource/6.0.1": {
- "type": "package",
- "dependencies": {
- "System.Memory": "4.5.4",
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- },
- "compile": {
- "lib/net461/System.Diagnostics.DiagnosticSource.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net461/System.Diagnostics.DiagnosticSource.dll": {
- "related": ".xml"
- }
- }
- },
- "System.IO.FileSystem.AccessControl/5.0.0": {
- "type": "package",
- "dependencies": {
- "System.Security.AccessControl": "5.0.0",
- "System.Security.Principal.Windows": "5.0.0"
- },
- "frameworkAssemblies": [
- "mscorlib"
- ],
- "compile": {
- "ref/net461/System.IO.FileSystem.AccessControl.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net461/System.IO.FileSystem.AccessControl.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Memory/4.5.4": {
- "type": "package",
- "dependencies": {
- "System.Buffers": "4.5.1",
- "System.Numerics.Vectors": "4.5.0",
- "System.Runtime.CompilerServices.Unsafe": "4.5.3"
- },
- "frameworkAssemblies": [
- "System",
- "mscorlib"
- ],
- "compile": {
- "lib/net461/System.Memory.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net461/System.Memory.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Numerics.Vectors/4.5.0": {
- "type": "package",
- "frameworkAssemblies": [
- "System.Numerics",
- "mscorlib"
- ],
- "compile": {
- "ref/net46/System.Numerics.Vectors.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net46/System.Numerics.Vectors.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Runtime.CompilerServices.Unsafe/6.0.0": {
- "type": "package",
- "frameworkAssemblies": [
- "mscorlib"
- ],
- "compile": {
- "lib/net461/System.Runtime.CompilerServices.Unsafe.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net461/System.Runtime.CompilerServices.Unsafe.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Security.AccessControl/5.0.0": {
- "type": "package",
- "dependencies": {
- "System.Security.Principal.Windows": "5.0.0"
- },
- "frameworkAssemblies": [
- "mscorlib"
- ],
- "compile": {
- "ref/net461/System.Security.AccessControl.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net461/System.Security.AccessControl.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Security.Cryptography.ProtectedData/4.5.0": {
- "type": "package",
- "frameworkAssemblies": [
- "System.Security",
- "mscorlib"
- ],
- "compile": {
- "ref/net461/System.Security.Cryptography.ProtectedData.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net461/System.Security.Cryptography.ProtectedData.dll": {}
- }
- },
- "System.Security.Principal.Windows/5.0.0": {
- "type": "package",
- "frameworkAssemblies": [
- "System",
- "mscorlib"
- ],
- "compile": {
- "ref/net461/System.Security.Principal.Windows.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net461/System.Security.Principal.Windows.dll": {
- "related": ".xml"
- }
- }
- },
- "AipGateway.AIP/1.0.0": {
- "type": "project",
- "framework": ".NETFramework,Version=v4.8",
- "dependencies": {
- "Microsoft.Identity.Client": "4.60.3",
- "Microsoft.Identity.Client.Extensions.Msal": "4.60.3",
- "Microsoft.InformationProtection.File": "1.14.128"
- },
- "compile": {
- "bin/placeholder/AipGateway.AIP.dll": {}
- },
- "runtime": {
- "bin/placeholder/AipGateway.AIP.dll": {}
- }
- }
- },
- ".NETFramework,Version=v4.8/win-x86": {
- "Microsoft.Identity.Client/4.60.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.IdentityModel.Abstractions": "6.35.0",
- "System.Diagnostics.DiagnosticSource": "6.0.1"
- },
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "System",
- "System.Core",
- "System.Data",
- "System.Data.DataSetExtensions",
- "System.Drawing",
- "System.IdentityModel",
- "System.Net.Http",
- "System.Windows.Forms",
- "System.Xml",
- "System.Xml.Linq"
- ],
- "compile": {
- "lib/net462/Microsoft.Identity.Client.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net462/Microsoft.Identity.Client.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Identity.Client.Extensions.Msal/4.60.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.Identity.Client": "4.60.3",
- "System.IO.FileSystem.AccessControl": "5.0.0",
- "System.Security.Cryptography.ProtectedData": "4.5.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.IdentityModel.Abstractions/6.35.0": {
- "type": "package",
- "compile": {
- "lib/net472/Microsoft.IdentityModel.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net472/Microsoft.IdentityModel.Abstractions.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.InformationProtection.File/1.14.128": {
- "type": "package",
- "compile": {
- "lib/net40/Microsoft.InformationProtection.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net40/Microsoft.InformationProtection.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "build/net40/_._": {}
- }
- },
- "System.Buffers/4.5.1": {
- "type": "package",
- "frameworkAssemblies": [
- "mscorlib"
- ],
- "compile": {
- "ref/net45/System.Buffers.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net461/System.Buffers.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Configuration.ConfigurationManager/8.0.0": {
- "type": "package",
- "frameworkAssemblies": [
- "System.Configuration"
- ],
- "compile": {
- "lib/net462/System.Configuration.ConfigurationManager.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net462/System.Configuration.ConfigurationManager.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net462/_._": {}
- }
- },
- "System.Diagnostics.DiagnosticSource/6.0.1": {
- "type": "package",
- "dependencies": {
- "System.Memory": "4.5.4",
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- },
- "compile": {
- "lib/net461/System.Diagnostics.DiagnosticSource.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net461/System.Diagnostics.DiagnosticSource.dll": {
- "related": ".xml"
- }
- }
- },
- "System.IO.FileSystem.AccessControl/5.0.0": {
- "type": "package",
- "dependencies": {
- "System.Security.AccessControl": "5.0.0",
- "System.Security.Principal.Windows": "5.0.0"
- },
- "frameworkAssemblies": [
- "mscorlib"
- ],
- "compile": {
- "ref/net461/System.IO.FileSystem.AccessControl.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net461/System.IO.FileSystem.AccessControl.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Memory/4.5.4": {
- "type": "package",
- "dependencies": {
- "System.Buffers": "4.5.1",
- "System.Numerics.Vectors": "4.5.0",
- "System.Runtime.CompilerServices.Unsafe": "4.5.3"
- },
- "frameworkAssemblies": [
- "System",
- "mscorlib"
- ],
- "compile": {
- "lib/net461/System.Memory.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net461/System.Memory.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Numerics.Vectors/4.5.0": {
- "type": "package",
- "frameworkAssemblies": [
- "System.Numerics",
- "mscorlib"
- ],
- "compile": {
- "ref/net46/System.Numerics.Vectors.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net46/System.Numerics.Vectors.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Runtime.CompilerServices.Unsafe/6.0.0": {
- "type": "package",
- "frameworkAssemblies": [
- "mscorlib"
- ],
- "compile": {
- "lib/net461/System.Runtime.CompilerServices.Unsafe.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net461/System.Runtime.CompilerServices.Unsafe.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Security.AccessControl/5.0.0": {
- "type": "package",
- "dependencies": {
- "System.Security.Principal.Windows": "5.0.0"
- },
- "frameworkAssemblies": [
- "mscorlib"
- ],
- "compile": {
- "ref/net461/System.Security.AccessControl.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net461/System.Security.AccessControl.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Security.Cryptography.ProtectedData/4.5.0": {
- "type": "package",
- "frameworkAssemblies": [
- "System.Security",
- "mscorlib"
- ],
- "compile": {
- "ref/net461/System.Security.Cryptography.ProtectedData.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net461/System.Security.Cryptography.ProtectedData.dll": {}
- }
- },
- "System.Security.Principal.Windows/5.0.0": {
- "type": "package",
- "frameworkAssemblies": [
- "System",
- "mscorlib"
- ],
- "compile": {
- "ref/net461/System.Security.Principal.Windows.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net461/System.Security.Principal.Windows.dll": {
- "related": ".xml"
- }
- }
- },
- "AipGateway.AIP/1.0.0": {
- "type": "project",
- "framework": ".NETFramework,Version=v4.8",
- "dependencies": {
- "Microsoft.Identity.Client": "4.60.3",
- "Microsoft.Identity.Client.Extensions.Msal": "4.60.3",
- "Microsoft.InformationProtection.File": "1.14.128"
- },
- "compile": {
- "bin/placeholder/AipGateway.AIP.dll": {}
- },
- "runtime": {
- "bin/placeholder/AipGateway.AIP.dll": {}
- }
- }
- }
- },
- "libraries": {
- "Microsoft.Identity.Client/4.60.3": {
- "sha512": "jve1RzmSpBhGlqMzPva6VfRbLMLZZc1Q8WRVZf8+iEruQkBgDTJPq8OeTehcY4GGYG1j6UB1xVofVE+n4BLDdw==",
- "type": "package",
- "path": "microsoft.identity.client/4.60.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "lib/monoandroid12.0/Microsoft.Identity.Client.dll",
- "lib/monoandroid12.0/Microsoft.Identity.Client.xml",
- "lib/net462/Microsoft.Identity.Client.dll",
- "lib/net462/Microsoft.Identity.Client.xml",
- "lib/net6.0-android31.0/Microsoft.Identity.Client.dll",
- "lib/net6.0-android31.0/Microsoft.Identity.Client.xml",
- "lib/net6.0-ios15.4/Microsoft.Identity.Client.dll",
- "lib/net6.0-ios15.4/Microsoft.Identity.Client.xml",
- "lib/net6.0-windows7.0/Microsoft.Identity.Client.dll",
- "lib/net6.0-windows7.0/Microsoft.Identity.Client.xml",
- "lib/net6.0/Microsoft.Identity.Client.dll",
- "lib/net6.0/Microsoft.Identity.Client.xml",
- "lib/netstandard2.0/Microsoft.Identity.Client.dll",
- "lib/netstandard2.0/Microsoft.Identity.Client.xml",
- "lib/uap10.0.17763/Microsoft.Identity.Client.dll",
- "lib/uap10.0.17763/Microsoft.Identity.Client.pri",
- "lib/uap10.0.17763/Microsoft.Identity.Client.xml",
- "lib/xamarinios10/Microsoft.Identity.Client.dll",
- "lib/xamarinios10/Microsoft.Identity.Client.xml",
- "microsoft.identity.client.4.60.3.nupkg.sha512",
- "microsoft.identity.client.nuspec"
- ]
- },
- "Microsoft.Identity.Client.Extensions.Msal/4.60.3": {
- "sha512": "X1Cz14/RbmlLshusE5u2zfG+5ul6ttgou19BZe5Mdw1qm6fgOI9/imBB2TIsx2UD7nkgd2+MCSzhbukZf7udeg==",
- "type": "package",
- "path": "microsoft.identity.client.extensions.msal/4.60.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll",
- "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.xml",
- "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll",
- "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.xml",
- "microsoft.identity.client.extensions.msal.4.60.3.nupkg.sha512",
- "microsoft.identity.client.extensions.msal.nuspec"
- ]
- },
- "Microsoft.IdentityModel.Abstractions/6.35.0": {
- "sha512": "xuR8E4Rd96M41CnUSCiOJ2DBh+z+zQSmyrYHdYhD6K4fXBcQGVnRCFQ0efROUYpP+p0zC1BLKr0JRpVuujTZSg==",
- "type": "package",
- "path": "microsoft.identitymodel.abstractions/6.35.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net45/Microsoft.IdentityModel.Abstractions.dll",
- "lib/net45/Microsoft.IdentityModel.Abstractions.xml",
- "lib/net461/Microsoft.IdentityModel.Abstractions.dll",
- "lib/net461/Microsoft.IdentityModel.Abstractions.xml",
- "lib/net462/Microsoft.IdentityModel.Abstractions.dll",
- "lib/net462/Microsoft.IdentityModel.Abstractions.xml",
- "lib/net472/Microsoft.IdentityModel.Abstractions.dll",
- "lib/net472/Microsoft.IdentityModel.Abstractions.xml",
- "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll",
- "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml",
- "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml",
- "microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512",
- "microsoft.identitymodel.abstractions.nuspec"
- ]
- },
- "Microsoft.InformationProtection.File/1.14.128": {
- "sha512": "ZetXGuHtHUra2nOKILuZUTyvFzLmRbWSAfReZCp1ZC7OvkUcHeA8DX+tBlpQL1YZfWj3f5tRdo1xl4f05l6e0Q==",
- "type": "package",
- "path": "microsoft.informationprotection.file/1.14.128",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "build/native/Microsoft.InformationProtection.File.targets",
- "build/native/bins/debug/amd64/libbz2-1.dll",
- "build/native/bins/debug/amd64/libffi-8.dll",
- "build/native/bins/debug/amd64/libgio-2.0-0.dll",
- "build/native/bins/debug/amd64/libglib-2.0-0.dll",
- "build/native/bins/debug/amd64/libgmodule-2.0-0.dll",
- "build/native/bins/debug/amd64/libgobject-2.0-0.dll",
- "build/native/bins/debug/amd64/libgsf-1-114.dll",
- "build/native/bins/debug/amd64/libiconv-2.dll",
- "build/native/bins/debug/amd64/libintl-8.dll",
- "build/native/bins/debug/amd64/liblzma-5.dll",
- "build/native/bins/debug/amd64/libpcre2-8-0.dll",
- "build/native/bins/debug/amd64/libwinpthread-1.dll",
- "build/native/bins/debug/amd64/libxml2-2.dll",
- "build/native/bins/debug/amd64/mip_ClientTelemetry.dll",
- "build/native/bins/debug/amd64/mip_core.dll",
- "build/native/bins/debug/amd64/mip_file_sdk.dll",
- "build/native/bins/debug/amd64/mip_protection_sdk.dll",
- "build/native/bins/debug/amd64/mip_upe_sdk.dll",
- "build/native/bins/debug/amd64/zlib1.dll",
- "build/native/bins/debug/x86/libbz2-1.dll",
- "build/native/bins/debug/x86/libffi-8.dll",
- "build/native/bins/debug/x86/libgcc_s_dw2-1.dll",
- "build/native/bins/debug/x86/libgio-2.0-0.dll",
- "build/native/bins/debug/x86/libglib-2.0-0.dll",
- "build/native/bins/debug/x86/libgmodule-2.0-0.dll",
- "build/native/bins/debug/x86/libgobject-2.0-0.dll",
- "build/native/bins/debug/x86/libgsf-1-114.dll",
- "build/native/bins/debug/x86/libiconv-2.dll",
- "build/native/bins/debug/x86/libintl-8.dll",
- "build/native/bins/debug/x86/liblzma-5.dll",
- "build/native/bins/debug/x86/libpcre2-8-0.dll",
- "build/native/bins/debug/x86/libwinpthread-1.dll",
- "build/native/bins/debug/x86/libxml2-2.dll",
- "build/native/bins/debug/x86/mip_ClientTelemetry.dll",
- "build/native/bins/debug/x86/mip_core.dll",
- "build/native/bins/debug/x86/mip_file_sdk.dll",
- "build/native/bins/debug/x86/mip_protection_sdk.dll",
- "build/native/bins/debug/x86/mip_upe_sdk.dll",
- "build/native/bins/debug/x86/zlib1.dll",
- "build/native/bins/release/amd64/libbz2-1.dll",
- "build/native/bins/release/amd64/libffi-8.dll",
- "build/native/bins/release/amd64/libgio-2.0-0.dll",
- "build/native/bins/release/amd64/libglib-2.0-0.dll",
- "build/native/bins/release/amd64/libgmodule-2.0-0.dll",
- "build/native/bins/release/amd64/libgobject-2.0-0.dll",
- "build/native/bins/release/amd64/libgsf-1-114.dll",
- "build/native/bins/release/amd64/libiconv-2.dll",
- "build/native/bins/release/amd64/libintl-8.dll",
- "build/native/bins/release/amd64/liblzma-5.dll",
- "build/native/bins/release/amd64/libpcre2-8-0.dll",
- "build/native/bins/release/amd64/libwinpthread-1.dll",
- "build/native/bins/release/amd64/libxml2-2.dll",
- "build/native/bins/release/amd64/mip_ClientTelemetry.dll",
- "build/native/bins/release/amd64/mip_core.dll",
- "build/native/bins/release/amd64/mip_file_sdk.dll",
- "build/native/bins/release/amd64/mip_protection_sdk.dll",
- "build/native/bins/release/amd64/mip_upe_sdk.dll",
- "build/native/bins/release/amd64/zlib1.dll",
- "build/native/bins/release/x86/libbz2-1.dll",
- "build/native/bins/release/x86/libffi-8.dll",
- "build/native/bins/release/x86/libgcc_s_dw2-1.dll",
- "build/native/bins/release/x86/libgio-2.0-0.dll",
- "build/native/bins/release/x86/libglib-2.0-0.dll",
- "build/native/bins/release/x86/libgmodule-2.0-0.dll",
- "build/native/bins/release/x86/libgobject-2.0-0.dll",
- "build/native/bins/release/x86/libgsf-1-114.dll",
- "build/native/bins/release/x86/libiconv-2.dll",
- "build/native/bins/release/x86/libintl-8.dll",
- "build/native/bins/release/x86/liblzma-5.dll",
- "build/native/bins/release/x86/libpcre2-8-0.dll",
- "build/native/bins/release/x86/libwinpthread-1.dll",
- "build/native/bins/release/x86/libxml2-2.dll",
- "build/native/bins/release/x86/mip_ClientTelemetry.dll",
- "build/native/bins/release/x86/mip_core.dll",
- "build/native/bins/release/x86/mip_file_sdk.dll",
- "build/native/bins/release/x86/mip_protection_sdk.dll",
- "build/native/bins/release/x86/mip_upe_sdk.dll",
- "build/native/bins/release/x86/zlib1.dll",
- "build/native/include/mip/audit_delegate.h",
- "build/native/include/mip/audit_event.h",
- "build/native/include/mip/common_types.h",
- "build/native/include/mip/delegate_response.h",
- "build/native/include/mip/diagnostic_configuration.h",
- "build/native/include/mip/diagnostic_delegate.h",
- "build/native/include/mip/diagnostic_types.h",
- "build/native/include/mip/dns_redirection.h",
- "build/native/include/mip/error.h",
- "build/native/include/mip/event.h",
- "build/native/include/mip/event_context.h",
- "build/native/include/mip/event_property.h",
- "build/native/include/mip/file/file_engine.h",
- "build/native/include/mip/file/file_error.h",
- "build/native/include/mip/file/file_execution_state.h",
- "build/native/include/mip/file/file_export.h",
- "build/native/include/mip/file/file_handler.h",
- "build/native/include/mip/file/file_inspector.h",
- "build/native/include/mip/file/file_profile.h",
- "build/native/include/mip/file/file_status.h",
- "build/native/include/mip/file/labeling_options.h",
- "build/native/include/mip/file/msg_inspector.h",
- "build/native/include/mip/file/protection_settings.h",
- "build/native/include/mip/flighting_feature.h",
- "build/native/include/mip/http_delegate.h",
- "build/native/include/mip/http_operation.h",
- "build/native/include/mip/http_request.h",
- "build/native/include/mip/http_response.h",
- "build/native/include/mip/json_delegate.h",
- "build/native/include/mip/json_document.h",
- "build/native/include/mip/json_value.h",
- "build/native/include/mip/log_message_data.h",
- "build/native/include/mip/logger_delegate.h",
- "build/native/include/mip/mip_configuration.h",
- "build/native/include/mip/mip_context.h",
- "build/native/include/mip/mip_export.h",
- "build/native/include/mip/mip_namespace.h",
- "build/native/include/mip/protection/delegation_license.h",
- "build/native/include/mip/protection/delegation_license_settings.h",
- "build/native/include/mip/protection/get_template_settings.h",
- "build/native/include/mip/protection/license_application_data.h",
- "build/native/include/mip/protection/license_connection_info.h",
- "build/native/include/mip/protection/license_descriptor.h",
- "build/native/include/mip/protection/license_rights_data.h",
- "build/native/include/mip/protection/parsed_publishing_license.h",
- "build/native/include/mip/protection/parsed_publishing_license_builder.h",
- "build/native/include/mip/protection/protection_common_settings.h",
- "build/native/include/mip/protection/protection_common_types.h",
- "build/native/include/mip/protection/protection_descriptor_builder.h",
- "build/native/include/mip/protection/protection_engine.h",
- "build/native/include/mip/protection/protection_handler.h",
- "build/native/include/mip/protection/protection_profile.h",
- "build/native/include/mip/protection/publishing_use_license_request.h",
- "build/native/include/mip/protection/rights.h",
- "build/native/include/mip/protection/roles.h",
- "build/native/include/mip/protection/template_descriptor.h",
- "build/native/include/mip/protection/tenant_information.h",
- "build/native/include/mip/protection_descriptor.h",
- "build/native/include/mip/storage_delegate.h",
- "build/native/include/mip/storage_table.h",
- "build/native/include/mip/stream.h",
- "build/native/include/mip/stream_utils.h",
- "build/native/include/mip/task_dispatcher_delegate.h",
- "build/native/include/mip/telemetry_delegate.h",
- "build/native/include/mip/telemetry_event.h",
- "build/native/include/mip/upe/action.h",
- "build/native/include/mip/upe/add_content_footer_action.h",
- "build/native/include/mip/upe/add_content_header_action.h",
- "build/native/include/mip/upe/add_watermark_action.h",
- "build/native/include/mip/upe/apply_label_action.h",
- "build/native/include/mip/upe/classification_request.h",
- "build/native/include/mip/upe/classification_result.h",
- "build/native/include/mip/upe/content_label.h",
- "build/native/include/mip/upe/custom_action.h",
- "build/native/include/mip/upe/detailed_classification_result.h",
- "build/native/include/mip/upe/execution_state.h",
- "build/native/include/mip/upe/justify_action.h",
- "build/native/include/mip/upe/label.h",
- "build/native/include/mip/upe/metadata_action.h",
- "build/native/include/mip/upe/metadata_entry.h",
- "build/native/include/mip/upe/metadata_version.h",
- "build/native/include/mip/upe/policy_engine.h",
- "build/native/include/mip/upe/policy_handler.h",
- "build/native/include/mip/upe/policy_profile.h",
- "build/native/include/mip/upe/protect_adhoc_action.h",
- "build/native/include/mip/upe/protect_adhoc_dk_action.h",
- "build/native/include/mip/upe/protect_by_encrypt_only_action.h",
- "build/native/include/mip/upe/protect_by_template_action.h",
- "build/native/include/mip/upe/protect_do_not_forward_action.h",
- "build/native/include/mip/upe/protect_do_not_forward_dk_action.h",
- "build/native/include/mip/upe/recommend_label_action.h",
- "build/native/include/mip/upe/remove_content_footer_action.h",
- "build/native/include/mip/upe/remove_content_header_action.h",
- "build/native/include/mip/upe/remove_protection_action.h",
- "build/native/include/mip/upe/remove_watermark_action.h",
- "build/native/include/mip/upe/sensitivity_types_rule_package.h",
- "build/native/include/mip/user_rights.h",
- "build/native/include/mip/user_roles.h",
- "build/native/include/mip/version.h",
- "build/native/include/mip/version.inc",
- "build/native/include/mip/xml_delegate.h",
- "build/native/include/mip/xml_document.h",
- "build/native/include/mip/xml_node.h",
- "build/native/include/mip/xml_reader.h",
- "build/native/include/mip_cc/application_info_cc.h",
- "build/native/include/mip_cc/auth_callback_cc.h",
- "build/native/include/mip_cc/common_types_cc.h",
- "build/native/include/mip_cc/consent_callback_cc.h",
- "build/native/include/mip_cc/dictionary_cc.h",
- "build/native/include/mip_cc/error_cc.h",
- "build/native/include/mip_cc/flighting_feature_cc.h",
- "build/native/include/mip_cc/http_delegate_cc.h",
- "build/native/include/mip_cc/identity_cc.h",
- "build/native/include/mip_cc/logger_delegate_cc.h",
- "build/native/include/mip_cc/mip_context_cc.h",
- "build/native/include/mip_cc/mip_macros_cc.h",
- "build/native/include/mip_cc/protection/delegation_license_cc.h",
- "build/native/include/mip_cc/protection/protection_crypto_types_cc.h",
- "build/native/include/mip_cc/protection/protection_engine_cc.h",
- "build/native/include/mip_cc/protection/protection_handler_cc.h",
- "build/native/include/mip_cc/protection/protection_profile_cc.h",
- "build/native/include/mip_cc/protection/template_descriptor_cc.h",
- "build/native/include/mip_cc/protection_descriptor_cc.h",
- "build/native/include/mip_cc/result_cc.h",
- "build/native/include/mip_cc/stream_cc.h",
- "build/native/include/mip_cc/string_list_cc.h",
- "build/native/include/mip_cc/task_dispatcher_delegate_cc.h",
- "build/native/include/mip_cc/telemetry_configuration_cc.h",
- "build/native/include/mip_cc/upe/action_cc.h",
- "build/native/include/mip_cc/upe/action_result_cc.h",
- "build/native/include/mip_cc/upe/add_content_footer_action_cc.h",
- "build/native/include/mip_cc/upe/add_content_header_action_cc.h",
- "build/native/include/mip_cc/upe/add_watermark_action_cc.h",
- "build/native/include/mip_cc/upe/application_action_state_cc.h",
- "build/native/include/mip_cc/upe/content_label_cc.h",
- "build/native/include/mip_cc/upe/custom_action_cc.h",
- "build/native/include/mip_cc/upe/document_state_cc.h",
- "build/native/include/mip_cc/upe/justify_action_cc.h",
- "build/native/include/mip_cc/upe/label_cc.h",
- "build/native/include/mip_cc/upe/metadata_action_cc.h",
- "build/native/include/mip_cc/upe/metadata_dictionary_cc.h",
- "build/native/include/mip_cc/upe/policy_engine_cc.h",
- "build/native/include/mip_cc/upe/policy_handler_cc.h",
- "build/native/include/mip_cc/upe/policy_profile_cc.h",
- "build/native/include/mip_cc/upe/protect_adhoc_action_cc.h",
- "build/native/include/mip_cc/upe/protect_adhoc_dk_action_cc.h",
- "build/native/include/mip_cc/upe/protect_by_encrypt_only_action_cc.h",
- "build/native/include/mip_cc/upe/protect_by_template_action_cc.h",
- "build/native/include/mip_cc/upe/protect_do_not_forward_action_cc.h",
- "build/native/include/mip_cc/upe/protect_do_not_forward_dk_action_cc.h",
- "build/native/include/mip_cc/upe/remove_content_footer_action_cc.h",
- "build/native/include/mip_cc/upe/remove_content_header_action_cc.h",
- "build/native/include/mip_cc/upe/remove_protection_action_cc.h",
- "build/native/include/mip_cc/upe/remove_watermark_action_cc.h",
- "build/native/include/mip_cc/upe/sensitivity_type_cc.h",
- "build/native/lib/debug/amd64/mip_file_sdk.lib",
- "build/native/lib/debug/amd64/mip_protection_sdk.lib",
- "build/native/lib/debug/amd64/mip_upe_sdk.lib",
- "build/native/lib/debug/x86/mip_file_sdk.lib",
- "build/native/lib/debug/x86/mip_protection_sdk.lib",
- "build/native/lib/debug/x86/mip_upe_sdk.lib",
- "build/native/lib/release/amd64/mip_file_sdk.lib",
- "build/native/lib/release/amd64/mip_protection_sdk.lib",
- "build/native/lib/release/amd64/mip_upe_sdk.lib",
- "build/native/lib/release/x86/mip_file_sdk.lib",
- "build/native/lib/release/x86/mip_protection_sdk.lib",
- "build/native/lib/release/x86/mip_upe_sdk.lib",
- "build/net40/Microsoft.InformationProtection.File.targets",
- "build/netstandard2.0/Microsoft.InformationProtection.File.targets",
- "dotnet/win7-x64/native/debug/mip_dotnet.dll",
- "dotnet/win7-x64/native/release/mip_dotnet.dll",
- "dotnet/win7-x86/native/debug/mip_dotnet.dll",
- "dotnet/win7-x86/native/release/mip_dotnet.dll",
- "icon.png",
- "lib/LICENSE.txt",
- "lib/LicenseTerms.rtf",
- "lib/ThirdPartyDependencyVersions-x64.txt",
- "lib/ThirdPartyDependencyVersions-x86.txt",
- "lib/ThirdPartyNotice.txt",
- "lib/net40/Microsoft.InformationProtection.dll",
- "lib/net40/Microsoft.InformationProtection.xml",
- "lib/netstandard2.0/Microsoft.InformationProtection.dll",
- "lib/netstandard2.0/Microsoft.InformationProtection.xml",
- "lib/readme.md",
- "lib/redist.txt",
- "lib/version.txt",
- "microsoft.informationprotection.file.1.14.128.nupkg.sha512",
- "microsoft.informationprotection.file.nuspec"
- ]
- },
- "System.Buffers/4.5.1": {
- "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
- "type": "package",
- "path": "system.buffers/4.5.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/System.Buffers.dll",
- "lib/net461/System.Buffers.xml",
- "lib/netcoreapp2.0/_._",
- "lib/netstandard1.1/System.Buffers.dll",
- "lib/netstandard1.1/System.Buffers.xml",
- "lib/netstandard2.0/System.Buffers.dll",
- "lib/netstandard2.0/System.Buffers.xml",
- "lib/uap10.0.16299/_._",
- "ref/net45/System.Buffers.dll",
- "ref/net45/System.Buffers.xml",
- "ref/netcoreapp2.0/_._",
- "ref/netstandard1.1/System.Buffers.dll",
- "ref/netstandard1.1/System.Buffers.xml",
- "ref/netstandard2.0/System.Buffers.dll",
- "ref/netstandard2.0/System.Buffers.xml",
- "ref/uap10.0.16299/_._",
- "system.buffers.4.5.1.nupkg.sha512",
- "system.buffers.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Configuration.ConfigurationManager/8.0.0": {
- "sha512": "JlYi9XVvIREURRUlGMr1F6vOFLk7YSY4p1vHo4kX3tQ0AGrjqlRWHDi66ImHhy6qwXBG3BJ6Y1QlYQ+Qz6Xgww==",
- "type": "package",
- "path": "system.configuration.configurationmanager/8.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.Configuration.ConfigurationManager.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets",
- "lib/net462/System.Configuration.ConfigurationManager.dll",
- "lib/net462/System.Configuration.ConfigurationManager.xml",
- "lib/net6.0/System.Configuration.ConfigurationManager.dll",
- "lib/net6.0/System.Configuration.ConfigurationManager.xml",
- "lib/net7.0/System.Configuration.ConfigurationManager.dll",
- "lib/net7.0/System.Configuration.ConfigurationManager.xml",
- "lib/net8.0/System.Configuration.ConfigurationManager.dll",
- "lib/net8.0/System.Configuration.ConfigurationManager.xml",
- "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
- "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
- "system.configuration.configurationmanager.8.0.0.nupkg.sha512",
- "system.configuration.configurationmanager.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Diagnostics.DiagnosticSource/6.0.1": {
- "sha512": "KiLYDu2k2J82Q9BJpWiuQqCkFjRBWVq4jDzKKWawVi9KWzyD0XG3cmfX0vqTQlL14Wi9EufJrbL0+KCLTbqWiQ==",
- "type": "package",
- "path": "system.diagnostics.diagnosticsource/6.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Diagnostics.DiagnosticSource.dll",
- "lib/net461/System.Diagnostics.DiagnosticSource.xml",
- "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
- "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
- "lib/net6.0/System.Diagnostics.DiagnosticSource.dll",
- "lib/net6.0/System.Diagnostics.DiagnosticSource.xml",
- "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll",
- "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml",
- "system.diagnostics.diagnosticsource.6.0.1.nupkg.sha512",
- "system.diagnostics.diagnosticsource.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.IO.FileSystem.AccessControl/5.0.0": {
- "sha512": "SxHB3nuNrpptVk+vZ/F+7OHEpoHUIKKMl02bUmYHQr1r+glbZQxs7pRtsf4ENO29TVm2TH3AEeep2fJcy92oYw==",
- "type": "package",
- "path": "system.io.filesystem.accesscontrol/5.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net46/System.IO.FileSystem.AccessControl.dll",
- "lib/net461/System.IO.FileSystem.AccessControl.dll",
- "lib/net461/System.IO.FileSystem.AccessControl.xml",
- "lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll",
- "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll",
- "lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml",
- "ref/net46/System.IO.FileSystem.AccessControl.dll",
- "ref/net461/System.IO.FileSystem.AccessControl.dll",
- "ref/net461/System.IO.FileSystem.AccessControl.xml",
- "ref/netstandard1.3/System.IO.FileSystem.AccessControl.dll",
- "ref/netstandard1.3/System.IO.FileSystem.AccessControl.xml",
- "ref/netstandard1.3/de/System.IO.FileSystem.AccessControl.xml",
- "ref/netstandard1.3/es/System.IO.FileSystem.AccessControl.xml",
- "ref/netstandard1.3/fr/System.IO.FileSystem.AccessControl.xml",
- "ref/netstandard1.3/it/System.IO.FileSystem.AccessControl.xml",
- "ref/netstandard1.3/ja/System.IO.FileSystem.AccessControl.xml",
- "ref/netstandard1.3/ko/System.IO.FileSystem.AccessControl.xml",
- "ref/netstandard1.3/ru/System.IO.FileSystem.AccessControl.xml",
- "ref/netstandard1.3/zh-hans/System.IO.FileSystem.AccessControl.xml",
- "ref/netstandard1.3/zh-hant/System.IO.FileSystem.AccessControl.xml",
- "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll",
- "ref/netstandard2.0/System.IO.FileSystem.AccessControl.xml",
- "runtimes/win/lib/net46/System.IO.FileSystem.AccessControl.dll",
- "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.dll",
- "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.xml",
- "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll",
- "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll",
- "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml",
- "system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512",
- "system.io.filesystem.accesscontrol.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Memory/4.5.4": {
- "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
- "type": "package",
- "path": "system.memory/4.5.4",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/System.Memory.dll",
- "lib/net461/System.Memory.xml",
- "lib/netcoreapp2.1/_._",
- "lib/netstandard1.1/System.Memory.dll",
- "lib/netstandard1.1/System.Memory.xml",
- "lib/netstandard2.0/System.Memory.dll",
- "lib/netstandard2.0/System.Memory.xml",
- "ref/netcoreapp2.1/_._",
- "system.memory.4.5.4.nupkg.sha512",
- "system.memory.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Numerics.Vectors/4.5.0": {
- "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
- "type": "package",
- "path": "system.numerics.vectors/4.5.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Numerics.Vectors.dll",
- "lib/net46/System.Numerics.Vectors.xml",
- "lib/netcoreapp2.0/_._",
- "lib/netstandard1.0/System.Numerics.Vectors.dll",
- "lib/netstandard1.0/System.Numerics.Vectors.xml",
- "lib/netstandard2.0/System.Numerics.Vectors.dll",
- "lib/netstandard2.0/System.Numerics.Vectors.xml",
- "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll",
- "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml",
- "lib/uap10.0.16299/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/System.Numerics.Vectors.dll",
- "ref/net45/System.Numerics.Vectors.xml",
- "ref/net46/System.Numerics.Vectors.dll",
- "ref/net46/System.Numerics.Vectors.xml",
- "ref/netcoreapp2.0/_._",
- "ref/netstandard1.0/System.Numerics.Vectors.dll",
- "ref/netstandard1.0/System.Numerics.Vectors.xml",
- "ref/netstandard2.0/System.Numerics.Vectors.dll",
- "ref/netstandard2.0/System.Numerics.Vectors.xml",
- "ref/uap10.0.16299/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.numerics.vectors.4.5.0.nupkg.sha512",
- "system.numerics.vectors.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Runtime.CompilerServices.Unsafe/6.0.0": {
- "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
- "type": "package",
- "path": "system.runtime.compilerservices.unsafe/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
- "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
- "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
- "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
- "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
- "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
- "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
- "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
- "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
- "system.runtime.compilerservices.unsafe.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Security.AccessControl/5.0.0": {
- "sha512": "dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==",
- "type": "package",
- "path": "system.security.accesscontrol/5.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net46/System.Security.AccessControl.dll",
- "lib/net461/System.Security.AccessControl.dll",
- "lib/net461/System.Security.AccessControl.xml",
- "lib/netstandard1.3/System.Security.AccessControl.dll",
- "lib/netstandard2.0/System.Security.AccessControl.dll",
- "lib/netstandard2.0/System.Security.AccessControl.xml",
- "lib/uap10.0.16299/_._",
- "ref/net46/System.Security.AccessControl.dll",
- "ref/net461/System.Security.AccessControl.dll",
- "ref/net461/System.Security.AccessControl.xml",
- "ref/netstandard1.3/System.Security.AccessControl.dll",
- "ref/netstandard1.3/System.Security.AccessControl.xml",
- "ref/netstandard1.3/de/System.Security.AccessControl.xml",
- "ref/netstandard1.3/es/System.Security.AccessControl.xml",
- "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
- "ref/netstandard1.3/it/System.Security.AccessControl.xml",
- "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
- "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
- "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
- "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
- "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
- "ref/netstandard2.0/System.Security.AccessControl.dll",
- "ref/netstandard2.0/System.Security.AccessControl.xml",
- "ref/uap10.0.16299/_._",
- "runtimes/win/lib/net46/System.Security.AccessControl.dll",
- "runtimes/win/lib/net461/System.Security.AccessControl.dll",
- "runtimes/win/lib/net461/System.Security.AccessControl.xml",
- "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
- "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
- "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
- "runtimes/win/lib/uap10.0.16299/_._",
- "system.security.accesscontrol.5.0.0.nupkg.sha512",
- "system.security.accesscontrol.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Security.Cryptography.ProtectedData/4.5.0": {
- "sha512": "wLBKzFnDCxP12VL9ANydSYhk59fC4cvOr9ypYQLPnAj48NQIhqnjdD2yhP8yEKyBJEjERWS9DisKL7rX5eU25Q==",
- "type": "package",
- "path": "system.security.cryptography.protecteddata/4.5.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Security.Cryptography.ProtectedData.dll",
- "lib/net461/System.Security.Cryptography.ProtectedData.dll",
- "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
- "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Security.Cryptography.ProtectedData.dll",
- "ref/net461/System.Security.Cryptography.ProtectedData.dll",
- "ref/net461/System.Security.Cryptography.ProtectedData.xml",
- "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
- "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
- "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
- "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
- "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
- "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
- "system.security.cryptography.protecteddata.4.5.0.nupkg.sha512",
- "system.security.cryptography.protecteddata.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Security.Principal.Windows/5.0.0": {
- "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
- "type": "package",
- "path": "system.security.principal.windows/5.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net46/System.Security.Principal.Windows.dll",
- "lib/net461/System.Security.Principal.Windows.dll",
- "lib/net461/System.Security.Principal.Windows.xml",
- "lib/netstandard1.3/System.Security.Principal.Windows.dll",
- "lib/netstandard2.0/System.Security.Principal.Windows.dll",
- "lib/netstandard2.0/System.Security.Principal.Windows.xml",
- "lib/uap10.0.16299/_._",
- "ref/net46/System.Security.Principal.Windows.dll",
- "ref/net461/System.Security.Principal.Windows.dll",
- "ref/net461/System.Security.Principal.Windows.xml",
- "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
- "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
- "ref/netstandard1.3/System.Security.Principal.Windows.dll",
- "ref/netstandard1.3/System.Security.Principal.Windows.xml",
- "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
- "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
- "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
- "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
- "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
- "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
- "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
- "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
- "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
- "ref/netstandard2.0/System.Security.Principal.Windows.dll",
- "ref/netstandard2.0/System.Security.Principal.Windows.xml",
- "ref/uap10.0.16299/_._",
- "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
- "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
- "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
- "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
- "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
- "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
- "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
- "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
- "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
- "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
- "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
- "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
- "runtimes/win/lib/uap10.0.16299/_._",
- "system.security.principal.windows.5.0.0.nupkg.sha512",
- "system.security.principal.windows.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "AipGateway.AIP/1.0.0": {
- "type": "project",
- "path": "../AipGateway.AIP/AipGateway.AIP.csproj",
- "msbuildProject": "../AipGateway.AIP/AipGateway.AIP.csproj"
- }
- },
- "projectFileDependencyGroups": {
- ".NETFramework,Version=v4.8": [
- "AipGateway.AIP >= 1.0.0",
- "System.Configuration.ConfigurationManager >= 8.0.0"
- ]
- },
- "packageFolders": {
- "C:\\Users\\OpenValue\\.nuget\\packages\\": {},
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
- },
- "project": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.Viewer\\AipGateway.Viewer.csproj",
- "projectName": "AipGateway.Viewer",
- "projectPath": "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.Viewer\\AipGateway.Viewer.csproj",
- "packagesPath": "C:\\Users\\OpenValue\\.nuget\\packages\\",
- "outputPath": "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.Viewer\\obj\\",
- "projectStyle": "PackageReference",
- "skipContentFileWrite": true,
- "fallbackFolders": [
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
- ],
- "configFilePaths": [
- "C:\\Users\\OpenValue\\AppData\\Roaming\\NuGet\\NuGet.Config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
- ],
- "originalTargetFrameworks": [
- "net48"
- ],
- "sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
- "https://api.nuget.org/v3/index.json": {}
- },
- "frameworks": {
- "net48": {
- "projectReferences": {
- "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.AIP\\AipGateway.AIP.csproj": {
- "projectPath": "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.AIP\\AipGateway.AIP.csproj"
- }
- }
- }
- },
- "restoreAuditProperties": {
- "enableAudit": "true",
- "auditLevel": "low",
- "auditMode": "direct"
- }
- },
- "frameworks": {
- "net48": {
- "dependencies": {
- "System.Configuration.ConfigurationManager": {
- "target": "Package",
- "version": "[8.0.0, )"
- }
- }
- }
- },
- "runtimes": {
- "win": {
- "#import": []
- },
- "win-arm64": {
- "#import": []
- },
- "win-x64": {
- "#import": []
- },
- "win-x86": {
- "#import": []
- }
- }
- }
- }
|