order.xml 446 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <root>
  3. <project dir="mcs" library="basic-basic">
  4. <boot></boot>
  5. <flags>/codepage:65001 -r:System.dll -r:System.Core.dll -r:System.Xml.dll -debug -d:STATIC,NO_SYMBOL_WRITER,NO_AUTHENTICODE -d:MONO_FEATURE_THREAD_ABORT -d:MONO_FEATURE_PROCESS_START -d:NET_4_0 -d:NET_4_5 -d:MONO -d:BOOTSTRAP_BASIC -nowarn:1699 -d:DISABLE_CAS_USE -lib:./../class/lib/basic -optimize /noconfig</flags>
  6. <output>basic.exe</output>
  7. <built_sources>cs-parser.cs</built_sources>
  8. <library_output>./../class/lib/basic/basic.exe</library_output>
  9. <fx_version>4.0</fx_version>
  10. <profile>basic</profile>
  11. <resources></resources>
  12. <response>mcs.exe.sources</response>
  13. </project>
  14. <project dir="class/corlib" library="corlib-basic">
  15. <boot>true</boot>
  16. <flags>/codepage:65001 -unsafe -nostdlib -nowarn:612,618,1635 -d:INSIDE_CORLIB,MONO_CULTURE_DATA -d:LIBC -d:FEATURE_PAL,GENERICS_WORK,FEATURE_LIST_PREDICATES,FEATURE_SERIALIZATION,FEATURE_ASCII,FEATURE_LATIN1,FEATURE_UTF7,FEATURE_UTF32,MONO_HYBRID_ENCODING_SUPPORT,FEATURE_ASYNC_IO,NEW_EXPERIMENTAL_ASYNC_IO,FEATURE_UTF32,FEATURE_EXCEPTIONDISPATCHINFO,FEATURE_CORRUPTING_EXCEPTIONS,FEATURE_EXCEPTION_NOTIFICATIONS,FEATURE_STRONGNAME_MIGRATION,FEATURE_USE_LCID,FEATURE_FUSION,FEATURE_CRYPTO,FEATURE_X509_SECURESTRINGS,FEATURE_SYNCHRONIZATIONCONTEXT,FEATURE_SYNCHRONIZATIONCONTEXT_WAIT -d:FEATURE_MACL -d:FEATURE_REMOTING,MONO_COM,FEATURE_COMINTEROP,FEATURE_ROLE_BASED_SECURITY -d:MONO_FEATURE_THREAD_ABORT -d:MONO_FEATURE_THREAD_SUSPEND_RESUME -d:MONO_FEATURE_MULTIPLE_APPDOMAINS -d:NET_4_0 -d:NET_4_5 -d:MONO -d:BOOTSTRAP_BASIC -nowarn:1699 -d:DISABLE_CAS_USE -lib:./../../class/lib/basic -optimize /noconfig -d:FEATURE_PAL,GENERICS_WORK,FEATURE_LIST_PREDICATES,FEATURE_SERIALIZATION,FEATURE_ASCII,FEATURE_LATIN1,FEATURE_UTF7,FEATURE_UTF32,MONO_HYBRID_ENCODING_SUPPORT,FEATURE_ASYNC_IO,NEW_EXPERIMENTAL_ASYNC_IO,FEATURE_UTF32,FEATURE_EXCEPTIONDISPATCHINFO,FEATURE_CORRUPTING_EXCEPTIONS,FEATURE_EXCEPTION_NOTIFICATIONS,FEATURE_STRONGNAME_MIGRATION,FEATURE_USE_LCID,FEATURE_FUSION,FEATURE_CRYPTO,FEATURE_X509_SECURESTRINGS,FEATURE_SYNCHRONIZATIONCONTEXT,FEATURE_SYNCHRONIZATIONCONTEXT_WAIT -d:FEATURE_MACL -d:FEATURE_REMOTING,MONO_COM,FEATURE_COMINTEROP,FEATURE_ROLE_BASED_SECURITY -d:MONO_FEATURE_THREAD_ABORT -d:MONO_FEATURE_THREAD_SUSPEND_RESUME -d:MONO_FEATURE_MULTIPLE_APPDOMAINS -resource:resources/charinfo.nlp -resource:resources/collation.core.bin -resource:resources/collation.tailoring.bin -resource:resources/collation.cjkCHS.bin -resource:resources/collation.cjkCHT.bin -resource:resources/collation.cjkJA.bin -resource:resources/collation.cjkKO.bin -resource:resources/collation.cjkKOlv2.bin --runtime:v4</flags>
  17. <output>mscorlib.dll</output>
  18. <built_sources></built_sources>
  19. <library_output>./../../class/lib/basic/mscorlib.dll</library_output>
  20. <fx_version>4.0</fx_version>
  21. <profile>basic</profile>
  22. <resources></resources>
  23. <response>corlib.dll.sources</response>
  24. </project>
  25. <project dir="class/Mono.Security" library="Mono.Security-basic">
  26. <boot>true</boot>
  27. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:MONO -d:BOOTSTRAP_BASIC -nowarn:1699 -d:DISABLE_CAS_USE -lib:./../../class/lib/basic -optimize /noconfig -unsafe -nowarn:1030,3009 -r:./../../class/lib/basic/bare/System.dll</flags>
  28. <output>Mono.Security.dll</output>
  29. <built_sources></built_sources>
  30. <library_output>./../../class/lib/basic/Mono.Security.dll</library_output>
  31. <fx_version>4.0</fx_version>
  32. <profile>basic</profile>
  33. <resources></resources>
  34. <response>Mono.Security.dll.sources</response>
  35. </project>
  36. <project dir="class/System" library="System-basic">
  37. <boot>true</boot>
  38. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:MONO -d:BOOTSTRAP_BASIC -nowarn:1699 -d:DISABLE_CAS_USE -lib:./../../class/lib/basic -optimize /noconfig -nowarn:618 -d:CONFIGURATION_2_0 -d:FEATURE_PAL,SYSTEM_NAMESPACE,MONO,PLATFORM_UNIX -d:MONO_FEATURE_PROCESS_START -d:MONO_FEATURE_THREAD_ABORT -d:MONO_FEATURE_THREAD_SUSPEND_RESUME -d:MONO_FEATURE_MULTIPLE_APPDOMAINS -unsafe -resource:resources/Asterisk.wav -resource:resources/Beep.wav -resource:resources/Exclamation.wav -resource:resources/Hand.wav -resource:resources/Question.wav -d:SECURITY_DEP -d:XML_DEP -d:MONO_SECURITY_ALIAS -d:CONFIGURATION_DEP -r:./../../class/lib/basic/System.Xml.dll -r:./../../class/lib/basic/System.Configuration.dll -r:MonoSecurity=./../../class/lib/basic/Mono.Security.dll</flags>
  39. <output>System.dll</output>
  40. <built_sources></built_sources>
  41. <library_output>./../../class/lib/basic/System.dll</library_output>
  42. <fx_version>4.0</fx_version>
  43. <profile>basic</profile>
  44. <resources></resources>
  45. <response>./../../build/deps/basic_System.dll.sources</response>
  46. </project>
  47. <project dir="class/System.XML" library="System.Xml-basic">
  48. <boot>true</boot>
  49. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:MONO -d:BOOTSTRAP_BASIC -nowarn:1699 -d:DISABLE_CAS_USE -lib:./../../class/lib/basic -optimize /noconfig -nowarn:219,414,649,1717 -unsafe -d:ASYNC -d:CONFIGURATION_DEP -r:./../../class/lib/basic/secxml/System.dll -r:./../../class/lib/basic/System.Configuration.dll</flags>
  50. <output>System.Xml.dll</output>
  51. <built_sources></built_sources>
  52. <library_output>./../../class/lib/basic/System.Xml.dll</library_output>
  53. <fx_version>4.0</fx_version>
  54. <profile>basic</profile>
  55. <resources></resources>
  56. <response>System.Xml.dll.sources</response>
  57. </project>
  58. <project dir="class/System.Core" library="System.Core-basic">
  59. <boot>true</boot>
  60. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:MONO -d:BOOTSTRAP_BASIC -nowarn:1699 -d:DISABLE_CAS_USE -lib:./../../class/lib/basic -optimize /noconfig -d:FEATURE_PAL,PFX_LEGACY_3_5,FEATURE_NETCORE -d:INSIDE_SYSCORE -d:LIBC -unsafe -d:NET_3_5 -nowarn:1720 -d:FEATURE_CORE_DLR,FEATURE_REFEMIT,FEATURE_PDBEMIT -r:./../../class/lib/basic/System.dll</flags>
  61. <output>System.Core.dll</output>
  62. <built_sources></built_sources>
  63. <library_output>./../../class/lib/basic/System.Core.dll</library_output>
  64. <fx_version>4.0</fx_version>
  65. <profile>basic</profile>
  66. <resources></resources>
  67. <response>./../../build/deps/basic_System.Core.dll.sources</response>
  68. </project>
  69. <project dir="class/corlib" library="corlib-build">
  70. <boot>true</boot>
  71. <flags>/codepage:65001 -unsafe -nostdlib -nowarn:612,618,1635 -d:INSIDE_CORLIB,MONO_CULTURE_DATA -d:LIBC -d:FEATURE_PAL,GENERICS_WORK,FEATURE_LIST_PREDICATES,FEATURE_SERIALIZATION,FEATURE_ASCII,FEATURE_LATIN1,FEATURE_UTF7,FEATURE_UTF32,MONO_HYBRID_ENCODING_SUPPORT,FEATURE_ASYNC_IO,NEW_EXPERIMENTAL_ASYNC_IO,FEATURE_UTF32,FEATURE_EXCEPTIONDISPATCHINFO,FEATURE_CORRUPTING_EXCEPTIONS,FEATURE_EXCEPTION_NOTIFICATIONS,FEATURE_STRONGNAME_MIGRATION,FEATURE_USE_LCID,FEATURE_FUSION,FEATURE_CRYPTO,FEATURE_X509_SECURESTRINGS,FEATURE_SYNCHRONIZATIONCONTEXT,FEATURE_SYNCHRONIZATIONCONTEXT_WAIT -d:FEATURE_MACL -d:FEATURE_REMOTING,MONO_COM,FEATURE_COMINTEROP,FEATURE_ROLE_BASED_SECURITY -d:MONO_FEATURE_THREAD_ABORT -d:MONO_FEATURE_THREAD_SUSPEND_RESUME -d:MONO_FEATURE_MULTIPLE_APPDOMAINS -d:NET_4_0 -d:NET_4_5 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -optimize /noconfig -d:FEATURE_PAL,GENERICS_WORK,FEATURE_LIST_PREDICATES,FEATURE_SERIALIZATION,FEATURE_ASCII,FEATURE_LATIN1,FEATURE_UTF7,FEATURE_UTF32,MONO_HYBRID_ENCODING_SUPPORT,FEATURE_ASYNC_IO,NEW_EXPERIMENTAL_ASYNC_IO,FEATURE_UTF32,FEATURE_EXCEPTIONDISPATCHINFO,FEATURE_CORRUPTING_EXCEPTIONS,FEATURE_EXCEPTION_NOTIFICATIONS,FEATURE_STRONGNAME_MIGRATION,FEATURE_USE_LCID,FEATURE_FUSION,FEATURE_CRYPTO,FEATURE_X509_SECURESTRINGS,FEATURE_SYNCHRONIZATIONCONTEXT,FEATURE_SYNCHRONIZATIONCONTEXT_WAIT -d:FEATURE_MACL -d:FEATURE_REMOTING,MONO_COM,FEATURE_COMINTEROP,FEATURE_ROLE_BASED_SECURITY -d:MONO_FEATURE_THREAD_ABORT -d:MONO_FEATURE_THREAD_SUSPEND_RESUME -d:MONO_FEATURE_MULTIPLE_APPDOMAINS -resource:resources/charinfo.nlp -resource:resources/collation.core.bin -resource:resources/collation.tailoring.bin -resource:resources/collation.cjkCHS.bin -resource:resources/collation.cjkCHT.bin -resource:resources/collation.cjkJA.bin -resource:resources/collation.cjkKO.bin -resource:resources/collation.cjkKOlv2.bin --runtime:v4</flags>
  72. <output>mscorlib.dll</output>
  73. <built_sources></built_sources>
  74. <library_output>./../../class/lib/build/mscorlib.dll</library_output>
  75. <fx_version>4.5</fx_version>
  76. <profile>build</profile>
  77. <resources></resources>
  78. <response>corlib.dll.sources</response>
  79. </project>
  80. <project dir="class/Mono.Security" library="Mono.Security-build">
  81. <boot>false</boot>
  82. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/build/mscorlib.dll -optimize /noconfig -unsafe -nowarn:1030,3009 -r:./../../class/lib/build/bare/System.dll</flags>
  83. <output>Mono.Security.dll</output>
  84. <built_sources></built_sources>
  85. <library_output>./../../class/lib/build/Mono.Security.dll</library_output>
  86. <fx_version>4.5</fx_version>
  87. <profile>build</profile>
  88. <resources></resources>
  89. <response>Mono.Security.dll.sources</response>
  90. </project>
  91. <project dir="class/System" library="System-build">
  92. <boot>false</boot>
  93. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/build/mscorlib.dll -optimize /noconfig -nowarn:618 -d:CONFIGURATION_2_0 -d:FEATURE_PAL,SYSTEM_NAMESPACE,MONO,PLATFORM_UNIX -d:MONO_FEATURE_PROCESS_START -d:MONO_FEATURE_THREAD_ABORT -d:MONO_FEATURE_THREAD_SUSPEND_RESUME -d:MONO_FEATURE_MULTIPLE_APPDOMAINS -unsafe -resource:resources/Asterisk.wav -resource:resources/Beep.wav -resource:resources/Exclamation.wav -resource:resources/Hand.wav -resource:resources/Question.wav -d:SECURITY_DEP -d:XML_DEP -d:MONO_SECURITY_ALIAS -d:CONFIGURATION_DEP -r:./../../class/lib/build/System.Xml.dll -r:./../../class/lib/build/System.Configuration.dll -r:MonoSecurity=./../../class/lib/build/Mono.Security.dll</flags>
  94. <output>System.dll</output>
  95. <built_sources></built_sources>
  96. <library_output>./../../class/lib/build/System.dll</library_output>
  97. <fx_version>4.5</fx_version>
  98. <profile>build</profile>
  99. <resources></resources>
  100. <response>System.dll.sources</response>
  101. </project>
  102. <project dir="class/System" library="System-bare-build">
  103. <boot>false</boot>
  104. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/build/mscorlib.dll -optimize /noconfig -nowarn:618 -d:CONFIGURATION_2_0 -d:FEATURE_PAL,SYSTEM_NAMESPACE,MONO,PLATFORM_UNIX -d:MONO_FEATURE_PROCESS_START -d:MONO_FEATURE_THREAD_ABORT -d:MONO_FEATURE_THREAD_SUSPEND_RESUME -d:MONO_FEATURE_MULTIPLE_APPDOMAINS -unsafe -resource:resources/Asterisk.wav -resource:resources/Beep.wav -resource:resources/Exclamation.wav -resource:resources/Hand.wav -resource:resources/Question.wav</flags>
  105. <output>System.dll</output>
  106. <built_sources></built_sources>
  107. <library_output>./../../class/lib/build/bare/System.dll</library_output>
  108. <fx_version>4.5</fx_version>
  109. <profile>build</profile>
  110. <resources></resources>
  111. <response>System.dll.sources</response>
  112. </project>
  113. <project dir="class/System" library="System-secxml-build">
  114. <boot>false</boot>
  115. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/build/mscorlib.dll -optimize /noconfig -nowarn:618 -d:CONFIGURATION_2_0 -d:FEATURE_PAL,SYSTEM_NAMESPACE,MONO,PLATFORM_UNIX -d:MONO_FEATURE_PROCESS_START -d:MONO_FEATURE_THREAD_ABORT -d:MONO_FEATURE_THREAD_SUSPEND_RESUME -d:MONO_FEATURE_MULTIPLE_APPDOMAINS -unsafe -resource:resources/Asterisk.wav -resource:resources/Beep.wav -resource:resources/Exclamation.wav -resource:resources/Hand.wav -resource:resources/Question.wav -d:SECURITY_DEP -d:XML_DEP -d:MONO_SECURITY_ALIAS -r:./../../class/lib/build/bare/System.Xml.dll -r:MonoSecurity=./../../class/lib/build/Mono.Security.dll</flags>
  116. <output>System.dll</output>
  117. <built_sources></built_sources>
  118. <library_output>./../../class/lib/build/secxml/System.dll</library_output>
  119. <fx_version>4.5</fx_version>
  120. <profile>build</profile>
  121. <resources></resources>
  122. <response>System.dll.sources</response>
  123. </project>
  124. <project dir="class/System.XML" library="System.Xml-build">
  125. <boot>false</boot>
  126. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/build/mscorlib.dll -optimize /noconfig -nowarn:219,414,649,1717 -unsafe -d:ASYNC -d:CONFIGURATION_DEP -r:./../../class/lib/build/secxml/System.dll -r:./../../class/lib/build/System.Configuration.dll</flags>
  127. <output>System.Xml.dll</output>
  128. <built_sources></built_sources>
  129. <library_output>./../../class/lib/build/System.Xml.dll</library_output>
  130. <fx_version>4.5</fx_version>
  131. <profile>build</profile>
  132. <resources></resources>
  133. <response>System.Xml.dll.sources</response>
  134. </project>
  135. <project dir="class/System.XML" library="System.Xml-bare-build">
  136. <boot>false</boot>
  137. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/build/mscorlib.dll -optimize /noconfig -nowarn:219,414,649,1717 -unsafe -d:ASYNC -r:./../../class/lib/build/bare/System.dll</flags>
  138. <output>System.Xml.dll</output>
  139. <built_sources></built_sources>
  140. <library_output>./../../class/lib/build/bare/System.Xml.dll</library_output>
  141. <fx_version>4.5</fx_version>
  142. <profile>build</profile>
  143. <resources></resources>
  144. <response>System.Xml.dll.sources</response>
  145. </project>
  146. <project dir="class/Mono.Posix" library="Mono.Posix-build">
  147. <boot>true</boot>
  148. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/build/mscorlib.dll -optimize /noconfig /unsafe /nowarn:0618,612 -r:./../../class/lib/build/System.dll</flags>
  149. <output>Mono.Posix.dll</output>
  150. <built_sources></built_sources>
  151. <library_output>./../../class/lib/build/Mono.Posix.dll</library_output>
  152. <fx_version>4.5</fx_version>
  153. <profile>build</profile>
  154. <resources></resources>
  155. <response>Mono.Posix.dll.sources</response>
  156. </project>
  157. <project dir="class/System.Core" library="System.Core-build">
  158. <boot>false</boot>
  159. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/build/mscorlib.dll -optimize /noconfig -d:FEATURE_PAL,PFX_LEGACY_3_5,FEATURE_NETCORE -d:INSIDE_SYSCORE -d:LIBC -unsafe -d:NET_3_5 -nowarn:1720 -d:FEATURE_CORE_DLR,FEATURE_REFEMIT,FEATURE_PDBEMIT -r:./../../class/lib/build/System.dll -r:./../../class/lib/build/Mono.Posix.dll</flags>
  160. <output>System.Core.dll</output>
  161. <built_sources></built_sources>
  162. <library_output>./../../class/lib/build/System.Core.dll</library_output>
  163. <fx_version>4.5</fx_version>
  164. <profile>build</profile>
  165. <resources></resources>
  166. <response>./../../build/deps/build_System.Core.dll.sources</response>
  167. </project>
  168. <project dir="class/System.Core" library="System.Core-plaincore-build">
  169. <boot>false</boot>
  170. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/build/mscorlib.dll -optimize /noconfig -d:FEATURE_PAL,PFX_LEGACY_3_5,FEATURE_NETCORE -d:INSIDE_SYSCORE -d:LIBC -unsafe -d:NET_3_5 -nowarn:1720 -d:FEATURE_CORE_DLR,FEATURE_REFEMIT,FEATURE_PDBEMIT -r:./../../class/lib/build/System.dll -r:./../../class/lib/build/Mono.Posix.dll</flags>
  171. <output>System.Core.dll</output>
  172. <built_sources></built_sources>
  173. <library_output>./../../class/lib/build/plaincore/System.Core.dll</library_output>
  174. <fx_version>4.5</fx_version>
  175. <profile>build</profile>
  176. <resources></resources>
  177. <response>./../../build/deps/build_System.Core.dll.sources</response>
  178. </project>
  179. <project dir="class/Mono.Cecil" library="Mono.Cecil-build">
  180. <boot>false</boot>
  181. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/build/mscorlib.dll -optimize /noconfig -keyfile:../mono.snk -d:NET_3_5 /publicsign -r:./../../class/lib/build/System.Core.dll</flags>
  182. <output>Mono.Cecil.dll</output>
  183. <built_sources></built_sources>
  184. <library_output>./../../class/lib/build/Mono.Cecil.dll</library_output>
  185. <fx_version>4.5</fx_version>
  186. <profile>build</profile>
  187. <resources></resources>
  188. <response>Mono.Cecil.dll.sources</response>
  189. </project>
  190. <project dir="class/Mono.Cecil.Mdb" library="Mono.Cecil.Mdb-build">
  191. <boot>false</boot>
  192. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/build/mscorlib.dll -optimize /noconfig /d:CECIL -keyfile:../mono.snk -publicsign -r:./../../class/lib/build/System.dll -r:./../../class/lib/build/Mono.Cecil.dll</flags>
  193. <output>Mono.Cecil.Mdb.dll</output>
  194. <built_sources></built_sources>
  195. <library_output>./../../class/lib/build/Mono.Cecil.Mdb.dll</library_output>
  196. <fx_version>4.5</fx_version>
  197. <profile>build</profile>
  198. <resources></resources>
  199. <response>Mono.Cecil.Mdb.dll.sources</response>
  200. </project>
  201. <project dir="mcs" library="mcs-build">
  202. <boot></boot>
  203. <flags>/codepage:65001 -debug -d:STATIC,NO_SYMBOL_WRITER,NO_AUTHENTICODE -d:MONO_FEATURE_THREAD_ABORT -d:MONO_FEATURE_PROCESS_START -d:NET_4_0 -d:NET_4_5 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../class/lib/build/mscorlib.dll -optimize /noconfig -r:System -r:System.Core -r:System.Xml</flags>
  204. <output>mcs.exe</output>
  205. <built_sources>cs-parser.cs</built_sources>
  206. <library_output>mcs.exe</library_output>
  207. <fx_version>4.5</fx_version>
  208. <profile>build</profile>
  209. <resources></resources>
  210. <response>mcs.exe.sources</response>
  211. </project>
  212. <project dir="tools/gacutil" library="gacutil-build">
  213. <boot></boot>
  214. <flags>/codepage:65001 -unsafe -d:NET_4_0 -d:NET_4_5 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/build/mscorlib.dll -optimize /noconfig -r:Mono.Security</flags>
  215. <output>gacutil.exe</output>
  216. <built_sources></built_sources>
  217. <library_output>./../../class/lib/build/gacutil.exe</library_output>
  218. <fx_version>4.5</fx_version>
  219. <profile>build</profile>
  220. <resources></resources>
  221. <response>gacutil.exe.sources</response>
  222. </project>
  223. <project dir="tools/culevel" library="culevel-build">
  224. <boot></boot>
  225. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/build/mscorlib.dll -optimize /noconfig -r:System -r:System.Xml</flags>
  226. <output>culevel.exe</output>
  227. <built_sources></built_sources>
  228. <library_output>./../../class/lib/build/culevel.exe</library_output>
  229. <fx_version>4.5</fx_version>
  230. <profile>build</profile>
  231. <resources></resources>
  232. <response>culevel.exe.sources</response>
  233. </project>
  234. <project dir="tools/cil-stringreplacer" library="cil-stringreplacer-build">
  235. <boot></boot>
  236. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/build/mscorlib.dll -optimize /noconfig -r:System -r:Mono.Cecil</flags>
  237. <output>cil-stringreplacer.exe</output>
  238. <built_sources></built_sources>
  239. <library_output>./../../class/lib/build/cil-stringreplacer.exe</library_output>
  240. <fx_version>4.5</fx_version>
  241. <profile>build</profile>
  242. <resources></resources>
  243. <response>cil-stringreplacer.exe.sources</response>
  244. </project>
  245. <project dir="tools/commoncryptogenerator" library="commoncryptogenerator-build">
  246. <boot></boot>
  247. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/build/mscorlib.dll -optimize /noconfig</flags>
  248. <output>commoncryptogenerator.exe</output>
  249. <built_sources></built_sources>
  250. <library_output>./../../class/lib/build/commoncryptogenerator.exe</library_output>
  251. <fx_version>4.5</fx_version>
  252. <profile>build</profile>
  253. <resources></resources>
  254. <response>commoncryptogenerator.exe.sources</response>
  255. </project>
  256. <project dir="mcs" library="mcs-net_4_x">
  257. <boot></boot>
  258. <flags>/codepage:65001 -debug -d:STATIC,NO_SYMBOL_WRITER,NO_AUTHENTICODE -d:MONO_FEATURE_THREAD_ABORT -d:MONO_FEATURE_PROCESS_START -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:System -r:System.Core -r:System.Xml</flags>
  259. <output>mcs.exe</output>
  260. <built_sources>cs-parser.cs</built_sources>
  261. <library_output>mcs.exe</library_output>
  262. <fx_version>4.5</fx_version>
  263. <profile>net_4_x</profile>
  264. <resources></resources>
  265. <response>mcs.exe.sources</response>
  266. </project>
  267. <project dir="class/corlib" library="corlib-net_4_x">
  268. <boot>true</boot>
  269. <flags>/codepage:65001 -unsafe -nostdlib -nowarn:612,618,1635 -d:INSIDE_CORLIB,MONO_CULTURE_DATA -d:LIBC -d:FEATURE_PAL,GENERICS_WORK,FEATURE_LIST_PREDICATES,FEATURE_SERIALIZATION,FEATURE_ASCII,FEATURE_LATIN1,FEATURE_UTF7,FEATURE_UTF32,MONO_HYBRID_ENCODING_SUPPORT,FEATURE_ASYNC_IO,NEW_EXPERIMENTAL_ASYNC_IO,FEATURE_UTF32,FEATURE_EXCEPTIONDISPATCHINFO,FEATURE_CORRUPTING_EXCEPTIONS,FEATURE_EXCEPTION_NOTIFICATIONS,FEATURE_STRONGNAME_MIGRATION,FEATURE_USE_LCID,FEATURE_FUSION,FEATURE_CRYPTO,FEATURE_X509_SECURESTRINGS,FEATURE_SYNCHRONIZATIONCONTEXT,FEATURE_SYNCHRONIZATIONCONTEXT_WAIT -d:FEATURE_MACL -d:FEATURE_REMOTING,MONO_COM,FEATURE_COMINTEROP,FEATURE_ROLE_BASED_SECURITY -d:MONO_FEATURE_THREAD_ABORT -d:MONO_FEATURE_THREAD_SUSPEND_RESUME -d:MONO_FEATURE_MULTIPLE_APPDOMAINS -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -debug -optimize /noconfig -d:FEATURE_PAL,GENERICS_WORK,FEATURE_LIST_PREDICATES,FEATURE_SERIALIZATION,FEATURE_ASCII,FEATURE_LATIN1,FEATURE_UTF7,FEATURE_UTF32,MONO_HYBRID_ENCODING_SUPPORT,FEATURE_ASYNC_IO,NEW_EXPERIMENTAL_ASYNC_IO,FEATURE_UTF32,FEATURE_EXCEPTIONDISPATCHINFO,FEATURE_CORRUPTING_EXCEPTIONS,FEATURE_EXCEPTION_NOTIFICATIONS,FEATURE_STRONGNAME_MIGRATION,FEATURE_USE_LCID,FEATURE_FUSION,FEATURE_CRYPTO,FEATURE_X509_SECURESTRINGS,FEATURE_SYNCHRONIZATIONCONTEXT,FEATURE_SYNCHRONIZATIONCONTEXT_WAIT -d:FEATURE_MACL -d:FEATURE_REMOTING,MONO_COM,FEATURE_COMINTEROP,FEATURE_ROLE_BASED_SECURITY -d:MONO_FEATURE_THREAD_ABORT -d:MONO_FEATURE_THREAD_SUSPEND_RESUME -d:MONO_FEATURE_MULTIPLE_APPDOMAINS -resource:resources/charinfo.nlp -resource:resources/collation.core.bin -resource:resources/collation.tailoring.bin -resource:resources/collation.cjkCHS.bin -resource:resources/collation.cjkCHT.bin -resource:resources/collation.cjkJA.bin -resource:resources/collation.cjkKO.bin -resource:resources/collation.cjkKOlv2.bin --runtime:v4</flags>
  270. <output>mscorlib.dll</output>
  271. <built_sources></built_sources>
  272. <library_output>./../../class/lib/net_4_x/mscorlib.dll</library_output>
  273. <fx_version>4.5</fx_version>
  274. <profile>net_4_x</profile>
  275. <resources></resources>
  276. <response>./../../build/deps/net_4_x_corlib.dll.sources</response>
  277. </project>
  278. <project dir="class/corlib" library="corlib-tests-net_4_x">
  279. <boot>false</boot>
  280. <flags>/codepage:65001 -unsafe -nostdlib -nowarn:612,618,1635 -d:INSIDE_CORLIB,MONO_CULTURE_DATA -d:LIBC -d:FEATURE_PAL,GENERICS_WORK,FEATURE_LIST_PREDICATES,FEATURE_SERIALIZATION,FEATURE_ASCII,FEATURE_LATIN1,FEATURE_UTF7,FEATURE_UTF32,MONO_HYBRID_ENCODING_SUPPORT,FEATURE_ASYNC_IO,NEW_EXPERIMENTAL_ASYNC_IO,FEATURE_UTF32,FEATURE_EXCEPTIONDISPATCHINFO,FEATURE_CORRUPTING_EXCEPTIONS,FEATURE_EXCEPTION_NOTIFICATIONS,FEATURE_STRONGNAME_MIGRATION,FEATURE_USE_LCID,FEATURE_FUSION,FEATURE_CRYPTO,FEATURE_X509_SECURESTRINGS,FEATURE_SYNCHRONIZATIONCONTEXT,FEATURE_SYNCHRONIZATIONCONTEXT_WAIT -d:FEATURE_MACL -d:FEATURE_REMOTING,MONO_COM,FEATURE_COMINTEROP,FEATURE_ROLE_BASED_SECURITY -d:MONO_FEATURE_THREAD_ABORT -d:MONO_FEATURE_THREAD_SUSPEND_RESUME -d:MONO_FEATURE_MULTIPLE_APPDOMAINS -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -debug -optimize -r:./../../class/lib/net_4_x/mscorlib.dll -d:MONO_FEATURE_THREAD_ABORT -d:MONO_FEATURE_THREAD_SUSPEND_RESUME -d:MONO_FEATURE_MULTIPLE_APPDOMAINS -debug -nowarn:168,219,618,672 -unsafe -define:MONO_DATACONVERTER_STATIC_METHODS -resource:Test/resources/Resources.resources</flags>
  281. <output>net_4_x_corlib_test.dll</output>
  282. <built_sources></built_sources>
  283. <library_output>net_4_x_corlib_test.dll</library_output>
  284. <fx_version>4.5</fx_version>
  285. <profile>net_4_x</profile>
  286. <resources></resources>
  287. <response>./../../build/deps/net_4_x_corlib_test.dll.response</response>
  288. </project>
  289. <project dir="class/Mono.Security" library="Mono.Security-net_4_x">
  290. <boot>false</boot>
  291. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -unsafe -nowarn:1030,3009 -r:./../../class/lib/net_4_x/bare/System.dll</flags>
  292. <output>Mono.Security.dll</output>
  293. <built_sources></built_sources>
  294. <library_output>./../../class/lib/net_4_x/Mono.Security.dll</library_output>
  295. <fx_version>4.5</fx_version>
  296. <profile>net_4_x</profile>
  297. <resources></resources>
  298. <response>Mono.Security.dll.sources</response>
  299. </project>
  300. <project dir="class/Mono.Security" library="Mono.Security-tests-net_4_x">
  301. <boot>false</boot>
  302. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/Mono.Security.dll -unsafe -nowarn:1030,3009 -r:./../../class/lib/net_4_x/bare/System.dll -nowarn:169,219,618,672</flags>
  303. <output>net_4_x_Mono.Security_test.dll</output>
  304. <built_sources></built_sources>
  305. <library_output>net_4_x_Mono.Security_test.dll</library_output>
  306. <fx_version>4.5</fx_version>
  307. <profile>net_4_x</profile>
  308. <resources></resources>
  309. <response>./../../build/deps/net_4_x_Mono.Security_test.dll.response</response>
  310. </project>
  311. <project dir="class/System" library="System-net_4_x">
  312. <boot>false</boot>
  313. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -nowarn:618 -d:CONFIGURATION_2_0 -d:FEATURE_PAL,SYSTEM_NAMESPACE,MONO,PLATFORM_UNIX -d:MONO_FEATURE_PROCESS_START -d:MONO_FEATURE_THREAD_ABORT -d:MONO_FEATURE_THREAD_SUSPEND_RESUME -d:MONO_FEATURE_MULTIPLE_APPDOMAINS -unsafe -resource:resources/Asterisk.wav -resource:resources/Beep.wav -resource:resources/Exclamation.wav -resource:resources/Hand.wav -resource:resources/Question.wav -d:SECURITY_DEP -d:XML_DEP -d:MONO_SECURITY_ALIAS -d:CONFIGURATION_DEP -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Configuration.dll -r:MonoSecurity=./../../class/lib/net_4_x/Mono.Security.dll</flags>
  314. <output>System.dll</output>
  315. <built_sources></built_sources>
  316. <library_output>./../../class/lib/net_4_x/System.dll</library_output>
  317. <fx_version>4.5</fx_version>
  318. <profile>net_4_x</profile>
  319. <resources></resources>
  320. <response>System.dll.sources</response>
  321. </project>
  322. <project dir="class/System" library="System-tests-net_4_x">
  323. <boot>false</boot>
  324. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/secxml/System.dll -nowarn:618,672,219,67,169,612 -resource:Test/System/test-uri-props.txt,test-uri-props.txt -resource:Test/System/test-uri-props-manual.txt,test-uri-props-manual.txt -resource:Test/System/test-uri-relative-props.txt,test-uri-relative-props.txt -d:MONO_FEATURE_PROCESS_START -d:MONO_FEATURE_THREAD_ABORT -d:MONO_FEATURE_THREAD_SUSPEND_RESUME -d:MONO_FEATURE_MULTIPLE_APPDOMAINS</flags>
  325. <output>net_4_x_System_test.dll</output>
  326. <built_sources></built_sources>
  327. <library_output>net_4_x_System_test.dll</library_output>
  328. <fx_version>4.5</fx_version>
  329. <profile>net_4_x</profile>
  330. <resources></resources>
  331. <response>./../../build/deps/net_4_x_System_test.dll.response</response>
  332. </project>
  333. <project dir="class/System" library="System-bare-net_4_x">
  334. <boot>false</boot>
  335. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -nowarn:618 -d:CONFIGURATION_2_0 -d:FEATURE_PAL,SYSTEM_NAMESPACE,MONO,PLATFORM_UNIX -d:MONO_FEATURE_PROCESS_START -d:MONO_FEATURE_THREAD_ABORT -d:MONO_FEATURE_THREAD_SUSPEND_RESUME -d:MONO_FEATURE_MULTIPLE_APPDOMAINS -unsafe -resource:resources/Asterisk.wav -resource:resources/Beep.wav -resource:resources/Exclamation.wav -resource:resources/Hand.wav -resource:resources/Question.wav</flags>
  336. <output>System.dll</output>
  337. <built_sources></built_sources>
  338. <library_output>./../../class/lib/net_4_x/bare/System.dll</library_output>
  339. <fx_version>4.5</fx_version>
  340. <profile>net_4_x</profile>
  341. <resources></resources>
  342. <response>System.dll.sources</response>
  343. </project>
  344. <project dir="class/System" library="System-tests-net_4_x">
  345. <boot>false</boot>
  346. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/secxml/System.dll -nowarn:618,672,219,67,169,612 -resource:Test/System/test-uri-props.txt,test-uri-props.txt -resource:Test/System/test-uri-props-manual.txt,test-uri-props-manual.txt -resource:Test/System/test-uri-relative-props.txt,test-uri-relative-props.txt -d:MONO_FEATURE_PROCESS_START -d:MONO_FEATURE_THREAD_ABORT -d:MONO_FEATURE_THREAD_SUSPEND_RESUME -d:MONO_FEATURE_MULTIPLE_APPDOMAINS</flags>
  347. <output>net_4_x_System_test.dll</output>
  348. <built_sources></built_sources>
  349. <library_output>net_4_x_System_test.dll</library_output>
  350. <fx_version>4.5</fx_version>
  351. <profile>net_4_x</profile>
  352. <resources></resources>
  353. <response>./../../build/deps/net_4_x_System_test.dll.response</response>
  354. </project>
  355. <project dir="class/System" library="System-secxml-net_4_x">
  356. <boot>false</boot>
  357. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -nowarn:618 -d:CONFIGURATION_2_0 -d:FEATURE_PAL,SYSTEM_NAMESPACE,MONO,PLATFORM_UNIX -d:MONO_FEATURE_PROCESS_START -d:MONO_FEATURE_THREAD_ABORT -d:MONO_FEATURE_THREAD_SUSPEND_RESUME -d:MONO_FEATURE_MULTIPLE_APPDOMAINS -unsafe -resource:resources/Asterisk.wav -resource:resources/Beep.wav -resource:resources/Exclamation.wav -resource:resources/Hand.wav -resource:resources/Question.wav -d:SECURITY_DEP -d:XML_DEP -d:MONO_SECURITY_ALIAS -r:./../../class/lib/net_4_x/bare/System.Xml.dll -r:MonoSecurity=./../../class/lib/net_4_x/Mono.Security.dll</flags>
  358. <output>System.dll</output>
  359. <built_sources></built_sources>
  360. <library_output>./../../class/lib/net_4_x/secxml/System.dll</library_output>
  361. <fx_version>4.5</fx_version>
  362. <profile>net_4_x</profile>
  363. <resources></resources>
  364. <response>System.dll.sources</response>
  365. </project>
  366. <project dir="class/System" library="System-tests-net_4_x">
  367. <boot>false</boot>
  368. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/secxml/System.dll -nowarn:618,672,219,67,169,612 -resource:Test/System/test-uri-props.txt,test-uri-props.txt -resource:Test/System/test-uri-props-manual.txt,test-uri-props-manual.txt -resource:Test/System/test-uri-relative-props.txt,test-uri-relative-props.txt -d:MONO_FEATURE_PROCESS_START -d:MONO_FEATURE_THREAD_ABORT -d:MONO_FEATURE_THREAD_SUSPEND_RESUME -d:MONO_FEATURE_MULTIPLE_APPDOMAINS</flags>
  369. <output>net_4_x_System_test.dll</output>
  370. <built_sources></built_sources>
  371. <library_output>net_4_x_System_test.dll</library_output>
  372. <fx_version>4.5</fx_version>
  373. <profile>net_4_x</profile>
  374. <resources></resources>
  375. <response>./../../build/deps/net_4_x_System_test.dll.response</response>
  376. </project>
  377. <project dir="class/System.XML" library="System.Xml-net_4_x">
  378. <boot>false</boot>
  379. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -nowarn:219,414,649,1717 -unsafe -d:ASYNC -d:CONFIGURATION_DEP -r:./../../class/lib/net_4_x/secxml/System.dll -r:./../../class/lib/net_4_x/System.Configuration.dll</flags>
  380. <output>System.Xml.dll</output>
  381. <built_sources></built_sources>
  382. <library_output>./../../class/lib/net_4_x/System.Xml.dll</library_output>
  383. <fx_version>4.5</fx_version>
  384. <profile>net_4_x</profile>
  385. <resources></resources>
  386. <response>System.Xml.dll.sources</response>
  387. </project>
  388. <project dir="class/System.XML" library="System.Xml-tests-net_4_x">
  389. <boot>false</boot>
  390. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/bare/System.Xml.dll -nowarn:219,414,649,1717 -unsafe -d:ASYNC -r:./../../class/lib/net_4_x/bare/System.dll -nowarn:0618 -nowarn:219 -nowarn:169</flags>
  391. <output>net_4_x_System.Xml_test.dll</output>
  392. <built_sources></built_sources>
  393. <library_output>net_4_x_System.Xml_test.dll</library_output>
  394. <fx_version>4.5</fx_version>
  395. <profile>net_4_x</profile>
  396. <resources></resources>
  397. <response>./../../build/deps/net_4_x_System.Xml_test.dll.response</response>
  398. </project>
  399. <project dir="class/System.XML" library="System.Xml-bare-net_4_x">
  400. <boot>false</boot>
  401. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -nowarn:219,414,649,1717 -unsafe -d:ASYNC -r:./../../class/lib/net_4_x/bare/System.dll</flags>
  402. <output>System.Xml.dll</output>
  403. <built_sources></built_sources>
  404. <library_output>./../../class/lib/net_4_x/bare/System.Xml.dll</library_output>
  405. <fx_version>4.5</fx_version>
  406. <profile>net_4_x</profile>
  407. <resources></resources>
  408. <response>System.Xml.dll.sources</response>
  409. </project>
  410. <project dir="class/System.XML" library="System.Xml-tests-net_4_x">
  411. <boot>false</boot>
  412. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/bare/System.Xml.dll -nowarn:219,414,649,1717 -unsafe -d:ASYNC -r:./../../class/lib/net_4_x/bare/System.dll -nowarn:0618 -nowarn:219 -nowarn:169</flags>
  413. <output>net_4_x_System.Xml_test.dll</output>
  414. <built_sources></built_sources>
  415. <library_output>net_4_x_System.Xml_test.dll</library_output>
  416. <fx_version>4.5</fx_version>
  417. <profile>net_4_x</profile>
  418. <resources></resources>
  419. <response>./../../build/deps/net_4_x_System.Xml_test.dll.response</response>
  420. </project>
  421. <project dir="class/Mono.CompilerServices.SymbolWriter" library="Mono.CompilerServices.SymbolWriter-net_4_x">
  422. <boot>true</boot>
  423. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.dll</flags>
  424. <output>Mono.CompilerServices.SymbolWriter.dll</output>
  425. <built_sources></built_sources>
  426. <library_output>./../../class/lib/net_4_x/Mono.CompilerServices.SymbolWriter.dll</library_output>
  427. <fx_version>4.5</fx_version>
  428. <profile>net_4_x</profile>
  429. <resources></resources>
  430. <response>Mono.CompilerServices.SymbolWriter.dll.sources</response>
  431. </project>
  432. <project dir="class/Mono.Posix" library="Mono.Posix-net_4_x">
  433. <boot>true</boot>
  434. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig /unsafe /nowarn:0618,612 -r:./../../class/lib/net_4_x/System.dll</flags>
  435. <output>Mono.Posix.dll</output>
  436. <built_sources></built_sources>
  437. <library_output>./../../class/lib/net_4_x/Mono.Posix.dll</library_output>
  438. <fx_version>4.5</fx_version>
  439. <profile>net_4_x</profile>
  440. <resources></resources>
  441. <response>Mono.Posix.dll.sources</response>
  442. </project>
  443. <project dir="class/Mono.Posix" library="Mono.Posix-tests-net_4_x">
  444. <boot>false</boot>
  445. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/Mono.Posix.dll /unsafe /nowarn:0219,0618</flags>
  446. <output>net_4_x_Mono.Posix_test.dll</output>
  447. <built_sources></built_sources>
  448. <library_output>net_4_x_Mono.Posix_test.dll</library_output>
  449. <fx_version>4.5</fx_version>
  450. <profile>net_4_x</profile>
  451. <resources></resources>
  452. <response>./../../build/deps/net_4_x_Mono.Posix_test.dll.response</response>
  453. </project>
  454. <project dir="class/System.Core" library="System.Core-net_4_x">
  455. <boot>false</boot>
  456. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -d:FEATURE_PAL,PFX_LEGACY_3_5,FEATURE_NETCORE -d:INSIDE_SYSCORE -d:LIBC -unsafe -d:NET_3_5 -nowarn:1720 -d:FEATURE_CORE_DLR,FEATURE_REFEMIT,FEATURE_PDBEMIT -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/Mono.Posix.dll</flags>
  457. <output>System.Core.dll</output>
  458. <built_sources></built_sources>
  459. <library_output>./../../class/lib/net_4_x/System.Core.dll</library_output>
  460. <fx_version>4.5</fx_version>
  461. <profile>net_4_x</profile>
  462. <resources></resources>
  463. <response>./../../build/deps/net_4_x_System.Core.dll.sources</response>
  464. </project>
  465. <project dir="class/System.Core" library="System.Core-tests-net_4_x">
  466. <boot>false</boot>
  467. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/plaincore/System.Core.dll -d:FEATURE_PAL,PFX_LEGACY_3_5,FEATURE_NETCORE -d:INSIDE_SYSCORE -d:LIBC -unsafe -d:NET_3_5 -nowarn:1720 -d:FEATURE_CORE_DLR,FEATURE_REFEMIT,FEATURE_PDBEMIT -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/Mono.Posix.dll</flags>
  468. <output>net_4_x_System.Core_test.dll</output>
  469. <built_sources></built_sources>
  470. <library_output>net_4_x_System.Core_test.dll</library_output>
  471. <fx_version>4.5</fx_version>
  472. <profile>net_4_x</profile>
  473. <resources></resources>
  474. <response>./../../build/deps/net_4_x_System.Core_test.dll.response</response>
  475. </project>
  476. <project dir="class/System.Core" library="System.Core-plaincore-net_4_x">
  477. <boot>false</boot>
  478. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -d:FEATURE_PAL,PFX_LEGACY_3_5,FEATURE_NETCORE -d:INSIDE_SYSCORE -d:LIBC -unsafe -d:NET_3_5 -nowarn:1720 -d:FEATURE_CORE_DLR,FEATURE_REFEMIT,FEATURE_PDBEMIT -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/Mono.Posix.dll</flags>
  479. <output>System.Core.dll</output>
  480. <built_sources></built_sources>
  481. <library_output>./../../class/lib/net_4_x/plaincore/System.Core.dll</library_output>
  482. <fx_version>4.5</fx_version>
  483. <profile>net_4_x</profile>
  484. <resources></resources>
  485. <response>./../../build/deps/net_4_x_System.Core.dll.sources</response>
  486. </project>
  487. <project dir="class/System.Core" library="System.Core-tests-net_4_x">
  488. <boot>false</boot>
  489. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/plaincore/System.Core.dll -d:FEATURE_PAL,PFX_LEGACY_3_5,FEATURE_NETCORE -d:INSIDE_SYSCORE -d:LIBC -unsafe -d:NET_3_5 -nowarn:1720 -d:FEATURE_CORE_DLR,FEATURE_REFEMIT,FEATURE_PDBEMIT -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/Mono.Posix.dll</flags>
  490. <output>net_4_x_System.Core_test.dll</output>
  491. <built_sources></built_sources>
  492. <library_output>net_4_x_System.Core_test.dll</library_output>
  493. <fx_version>4.5</fx_version>
  494. <profile>net_4_x</profile>
  495. <resources></resources>
  496. <response>./../../build/deps/net_4_x_System.Core_test.dll.response</response>
  497. </project>
  498. <project dir="class/System.Security" library="System.Security-net_4_x">
  499. <boot>false</boot>
  500. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -nowarn:618 -d:SECURITY_DEP -nowarn:414 -r:./../../class/lib/net_4_x/secxml/System.dll -r:./../../class/lib/net_4_x/bare/System.Xml.dll -r:./../../class/lib/net_4_x/Mono.Security.dll</flags>
  501. <output>System.Security.dll</output>
  502. <built_sources></built_sources>
  503. <library_output>./../../class/lib/net_4_x/System.Security.dll</library_output>
  504. <fx_version>4.5</fx_version>
  505. <profile>net_4_x</profile>
  506. <resources></resources>
  507. <response>System.Security.dll.sources</response>
  508. </project>
  509. <project dir="class/System.Security" library="System.Security-tests-net_4_x">
  510. <boot>false</boot>
  511. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Security.dll -nowarn:618 -d:SECURITY_DEP -nowarn:414 -r:./../../class/lib/net_4_x/secxml/System.dll -r:./../../class/lib/net_4_x/bare/System.Xml.dll -r:./../../class/lib/net_4_x/Mono.Security.dll -nowarn:168,169,183,219,414</flags>
  512. <output>net_4_x_System.Security_test.dll</output>
  513. <built_sources></built_sources>
  514. <library_output>net_4_x_System.Security_test.dll</library_output>
  515. <fx_version>4.5</fx_version>
  516. <profile>net_4_x</profile>
  517. <resources></resources>
  518. <response>./../../build/deps/net_4_x_System.Security_test.dll.response</response>
  519. </project>
  520. <project dir="class/System.Configuration" library="System.Configuration-net_4_x">
  521. <boot>false</boot>
  522. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -nowarn:618 -r:./../../class/lib/net_4_x/secxml/System.dll -r:./../../class/lib/net_4_x/bare/System.Xml.dll -r:./../../class/lib/net_4_x/System.Security.dll</flags>
  523. <output>System.Configuration.dll</output>
  524. <built_sources></built_sources>
  525. <library_output>./../../class/lib/net_4_x/System.Configuration.dll</library_output>
  526. <fx_version>4.5</fx_version>
  527. <profile>net_4_x</profile>
  528. <resources></resources>
  529. <response>System.Configuration.dll.sources</response>
  530. </project>
  531. <project dir="class/System.Configuration" library="System.Configuration-tests-net_4_x">
  532. <boot>false</boot>
  533. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Configuration.dll</flags>
  534. <output>net_4_x_System.Configuration_test.dll</output>
  535. <built_sources></built_sources>
  536. <library_output>net_4_x_System.Configuration_test.dll</library_output>
  537. <fx_version>4.5</fx_version>
  538. <profile>net_4_x</profile>
  539. <resources></resources>
  540. <response>./../../build/deps/net_4_x_System.Configuration_test.dll.response</response>
  541. </project>
  542. <project dir="tools/resgen" library="resgen-net_4_x">
  543. <boot></boot>
  544. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:System -r:System.Xml -r:System.Core</flags>
  545. <output>resgen.exe</output>
  546. <built_sources></built_sources>
  547. <library_output>./../../class/lib/net_4_x/resgen.exe</library_output>
  548. <fx_version>4.5</fx_version>
  549. <profile>net_4_x</profile>
  550. <resources></resources>
  551. <response>resgen.exe.sources</response>
  552. </project>
  553. <project dir="class/System.IO.Compression" library="System.IO.Compression-net_4_x">
  554. <boot>false</boot>
  555. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig /unsafe -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll</flags>
  556. <output>System.IO.Compression.dll</output>
  557. <built_sources></built_sources>
  558. <library_output>./../../class/lib/net_4_x/System.IO.Compression.dll</library_output>
  559. <fx_version>4.5</fx_version>
  560. <profile>net_4_x</profile>
  561. <resources></resources>
  562. <response>System.IO.Compression.dll.sources</response>
  563. </project>
  564. <project dir="class/System.IO.Compression" library="System.IO.Compression-tests-net_4_x">
  565. <boot>false</boot>
  566. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.IO.Compression.dll</flags>
  567. <output>net_4_x_System.IO.Compression_test.dll</output>
  568. <built_sources></built_sources>
  569. <library_output>net_4_x_System.IO.Compression_test.dll</library_output>
  570. <fx_version>4.5</fx_version>
  571. <profile>net_4_x</profile>
  572. <resources></resources>
  573. <response>./../../build/deps/net_4_x_System.IO.Compression_test.dll.response</response>
  574. </project>
  575. <project dir="class/System.IO.Compression.FileSystem" library="System.IO.Compression.FileSystem-net_4_x">
  576. <boot>false</boot>
  577. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.IO.Compression.dll</flags>
  578. <output>System.IO.Compression.FileSystem.dll</output>
  579. <built_sources></built_sources>
  580. <library_output>./../../class/lib/net_4_x/System.IO.Compression.FileSystem.dll</library_output>
  581. <fx_version>4.5</fx_version>
  582. <profile>net_4_x</profile>
  583. <resources></resources>
  584. <response>System.IO.Compression.FileSystem.dll.sources</response>
  585. </project>
  586. <project dir="class/System.IO.Compression.FileSystem" library="System.IO.Compression.FileSystem-tests-net_4_x">
  587. <boot>false</boot>
  588. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.IO.Compression.FileSystem.dll</flags>
  589. <output>net_4_x_System.IO.Compression.FileSystem_test.dll</output>
  590. <built_sources></built_sources>
  591. <library_output>net_4_x_System.IO.Compression.FileSystem_test.dll</library_output>
  592. <fx_version>4.5</fx_version>
  593. <profile>net_4_x</profile>
  594. <resources></resources>
  595. <response>./../../build/deps/net_4_x_System.IO.Compression.FileSystem_test.dll.response</response>
  596. </project>
  597. <project dir="class/System.Drawing" library="System.Drawing-net_4_x">
  598. <boot>false</boot>
  599. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig /unsafe -resource:Assembly/Mono.ico,Mono.ico -resource:Assembly/Information.ico,Information.ico -resource:Assembly/Error.ico,Error.ico -resource:Assembly/Warning.ico,Warning.ico -resource:Assembly/Question.ico,Question.ico -resource:Assembly/Shield.ico,Shield.ico -r:./../../class/lib/net_4_x/System.dll</flags>
  600. <output>System.Drawing.dll</output>
  601. <built_sources></built_sources>
  602. <library_output>./../../class/lib/net_4_x/System.Drawing.dll</library_output>
  603. <fx_version>4.5</fx_version>
  604. <profile>net_4_x</profile>
  605. <resources></resources>
  606. <response>System.Drawing.dll.sources</response>
  607. </project>
  608. <project dir="class/System.Drawing" library="System.Drawing-tests-net_4_x">
  609. <boot>false</boot>
  610. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Drawing.dll /unsafe -resource:Assembly/Mono.ico,Mono.ico -resource:Assembly/Information.ico,Information.ico -resource:Assembly/Error.ico,Error.ico -resource:Assembly/Warning.ico,Warning.ico -resource:Assembly/Question.ico,Question.ico -resource:Assembly/Shield.ico,Shield.ico -r:./../../class/lib/net_4_x/System.dll -define:TEST -resource:Test/resources/indexed.png,indexed.png -nowarn:0618 -nowarn:219 -nowarn:169</flags>
  611. <output>net_4_x_System.Drawing_test.dll</output>
  612. <built_sources></built_sources>
  613. <library_output>net_4_x_System.Drawing_test.dll</library_output>
  614. <fx_version>4.5</fx_version>
  615. <profile>net_4_x</profile>
  616. <resources></resources>
  617. <response>./../../build/deps/net_4_x_System.Drawing_test.dll.response</response>
  618. </project>
  619. <project dir="class/System.Transactions" library="System.Transactions-net_4_x">
  620. <boot>false</boot>
  621. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Configuration.dll</flags>
  622. <output>System.Transactions.dll</output>
  623. <built_sources></built_sources>
  624. <library_output>./../../class/lib/net_4_x/System.Transactions.dll</library_output>
  625. <fx_version>4.5</fx_version>
  626. <profile>net_4_x</profile>
  627. <resources></resources>
  628. <response>System.Transactions.dll.sources</response>
  629. </project>
  630. <project dir="class/System.Transactions" library="System.Transactions-tests-net_4_x">
  631. <boot>false</boot>
  632. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Transactions.dll -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Configuration.dll</flags>
  633. <output>net_4_x_System.Transactions_test.dll</output>
  634. <built_sources></built_sources>
  635. <library_output>net_4_x_System.Transactions_test.dll</library_output>
  636. <fx_version>4.5</fx_version>
  637. <profile>net_4_x</profile>
  638. <resources></resources>
  639. <response>./../../build/deps/net_4_x_System.Transactions_test.dll.response</response>
  640. </project>
  641. <project dir="class/System.EnterpriseServices" library="System.EnterpriseServices-net_4_x">
  642. <boot>false</boot>
  643. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig /nowarn:0168 /nowarn:0162 -r:./../../class/lib/net_4_x/System.Transactions.dll</flags>
  644. <output>System.EnterpriseServices.dll</output>
  645. <built_sources></built_sources>
  646. <library_output>./../../class/lib/net_4_x/System.EnterpriseServices.dll</library_output>
  647. <fx_version>4.5</fx_version>
  648. <profile>net_4_x</profile>
  649. <resources></resources>
  650. <response>System.EnterpriseServices.dll.sources</response>
  651. </project>
  652. <project dir="class/Mono.Data.Tds" library="Mono.Data.Tds-net_4_x">
  653. <boot>false</boot>
  654. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/Mono.Security.dll</flags>
  655. <output>Mono.Data.Tds.dll</output>
  656. <built_sources></built_sources>
  657. <library_output>./../../class/lib/net_4_x/Mono.Data.Tds.dll</library_output>
  658. <fx_version>4.5</fx_version>
  659. <profile>net_4_x</profile>
  660. <resources></resources>
  661. <response>Mono.Data.Tds.dll.sources</response>
  662. </project>
  663. <project dir="class/Mono.Data.Tds" library="Mono.Data.Tds-tests-net_4_x">
  664. <boot>false</boot>
  665. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/Mono.Data.Tds.dll</flags>
  666. <output>net_4_x_Mono.Data.Tds_test.dll</output>
  667. <built_sources></built_sources>
  668. <library_output>net_4_x_Mono.Data.Tds_test.dll</library_output>
  669. <fx_version>4.5</fx_version>
  670. <profile>net_4_x</profile>
  671. <resources></resources>
  672. <response>./../../build/deps/net_4_x_Mono.Data.Tds_test.dll.response</response>
  673. </project>
  674. <project dir="class/System.Numerics" library="System.Numerics-net_4_x">
  675. <boot>false</boot>
  676. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig /unsafe -d:MONO -r:./../../class/lib/net_4_x/System.dll</flags>
  677. <output>System.Numerics.dll</output>
  678. <built_sources></built_sources>
  679. <library_output>./../../class/lib/net_4_x/System.Numerics.dll</library_output>
  680. <fx_version>4.5</fx_version>
  681. <profile>net_4_x</profile>
  682. <resources></resources>
  683. <response>System.Numerics.dll.sources</response>
  684. </project>
  685. <project dir="class/System.Numerics" library="System.Numerics-tests-net_4_x">
  686. <boot>false</boot>
  687. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Numerics.dll /unsafe -d:MONO -r:./../../class/lib/net_4_x/System.dll</flags>
  688. <output>net_4_x_System.Numerics_test.dll</output>
  689. <built_sources></built_sources>
  690. <library_output>net_4_x_System.Numerics_test.dll</library_output>
  691. <fx_version>4.5</fx_version>
  692. <profile>net_4_x</profile>
  693. <resources></resources>
  694. <response>./../../build/deps/net_4_x_System.Numerics_test.dll.response</response>
  695. </project>
  696. <project dir="class/System.Numerics.Vectors" library="System.Numerics.Vectors-net_4_x">
  697. <boot>false</boot>
  698. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.dll</flags>
  699. <output>System.Numerics.Vectors.dll</output>
  700. <built_sources></built_sources>
  701. <library_output>./../../class/lib/net_4_x/System.Numerics.Vectors.dll</library_output>
  702. <fx_version>4.5</fx_version>
  703. <profile>net_4_x</profile>
  704. <resources></resources>
  705. <response>System.Numerics.Vectors.dll.sources</response>
  706. </project>
  707. <project dir="class/System.Data" library="System.Data-net_4_x">
  708. <boot>false</boot>
  709. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -nowarn:169,219,414,649 -d:PLATFORM_UNIX -d:USEOFFSET -d:MONO_PARTIAL_DATA_IMPORT -unsafe -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Numerics.dll -r:./../../class/lib/net_4_x/System.EnterpriseServices.dll -r:./../../class/lib/net_4_x/Mono.Data.Tds.dll -r:./../../class/lib/net_4_x/System.Configuration.dll -r:./../../class/lib/net_4_x/System.Transactions.dll</flags>
  710. <output>System.Data.dll</output>
  711. <built_sources>gen_OdbcConnection.cs gen_OleDbConnection.cs gen_OdbcParameter.cs gen_OleDbParameter.cs gen_OdbcParameterCollection.cs gen_OleDbParameterCollection.cs</built_sources>
  712. <library_output>./../../class/lib/net_4_x/System.Data.dll</library_output>
  713. <fx_version>4.5</fx_version>
  714. <profile>net_4_x</profile>
  715. <resources></resources>
  716. <response>./../../build/deps/net_4_x_System.Data.dll.sources</response>
  717. </project>
  718. <project dir="class/System.Data" library="System.Data-tests-net_4_x">
  719. <boot>false</boot>
  720. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Data.dll -nowarn:169,219,414,649 -d:PLATFORM_UNIX -d:USEOFFSET -d:MONO_PARTIAL_DATA_IMPORT -unsafe -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Numerics.dll -r:./../../class/lib/net_4_x/System.EnterpriseServices.dll -r:./../../class/lib/net_4_x/Mono.Data.Tds.dll -r:./../../class/lib/net_4_x/System.Configuration.dll -r:./../../class/lib/net_4_x/System.Transactions.dll -nowarn:618,169,612,219,168</flags>
  721. <output>net_4_x_System.Data_test.dll</output>
  722. <built_sources>gen_OdbcConnection.cs gen_OleDbConnection.cs gen_OdbcParameter.cs gen_OleDbParameter.cs gen_OdbcParameterCollection.cs gen_OleDbParameterCollection.cs</built_sources>
  723. <library_output>net_4_x_System.Data_test.dll</library_output>
  724. <fx_version>4.5</fx_version>
  725. <profile>net_4_x</profile>
  726. <resources></resources>
  727. <response>./../../build/deps/net_4_x_System.Data_test.dll.response</response>
  728. </project>
  729. <project dir="class/System.ComponentModel.DataAnnotations" library="System.ComponentModel.DataAnnotations-net_4_x">
  730. <boot>false</boot>
  731. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -nowarn:414 -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Data.dll -r:./../../class/lib/net_4_x/System.Xml.dll</flags>
  732. <output>System.ComponentModel.DataAnnotations.dll</output>
  733. <built_sources></built_sources>
  734. <library_output>./../../class/lib/net_4_x/System.ComponentModel.DataAnnotations.dll</library_output>
  735. <fx_version>4.5</fx_version>
  736. <profile>net_4_x</profile>
  737. <resources></resources>
  738. <response>System.ComponentModel.DataAnnotations.dll.sources</response>
  739. </project>
  740. <project dir="class/System.ComponentModel.DataAnnotations" library="System.ComponentModel.DataAnnotations-tests-net_4_x">
  741. <boot>false</boot>
  742. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.ComponentModel.DataAnnotations.dll -nowarn:414 -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Data.dll -r:./../../class/lib/net_4_x/System.Xml.dll</flags>
  743. <output>net_4_x_System.ComponentModel.DataAnnotations_test.dll</output>
  744. <built_sources></built_sources>
  745. <library_output>net_4_x_System.ComponentModel.DataAnnotations_test.dll</library_output>
  746. <fx_version>4.5</fx_version>
  747. <profile>net_4_x</profile>
  748. <resources></resources>
  749. <response>./../../build/deps/net_4_x_System.ComponentModel.DataAnnotations_test.dll.response</response>
  750. </project>
  751. <project dir="class/Accessibility" library="Accessibility-net_4_x">
  752. <boot>false</boot>
  753. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig</flags>
  754. <output>Accessibility.dll</output>
  755. <built_sources></built_sources>
  756. <library_output>./../../class/lib/net_4_x/Accessibility.dll</library_output>
  757. <fx_version>4.5</fx_version>
  758. <profile>net_4_x</profile>
  759. <resources></resources>
  760. <response>Accessibility.dll.sources</response>
  761. </project>
  762. <project dir="class/Mono.WebBrowser" library="Mono.WebBrowser-net_4_x">
  763. <boot>false</boot>
  764. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -warn:1 -r:./../../class/lib/net_4_x/System.dll</flags>
  765. <output>Mono.WebBrowser.dll</output>
  766. <built_sources></built_sources>
  767. <library_output>./../../class/lib/net_4_x/Mono.WebBrowser.dll</library_output>
  768. <fx_version>4.5</fx_version>
  769. <profile>net_4_x</profile>
  770. <resources></resources>
  771. <response>Mono.WebBrowser.dll.sources</response>
  772. </project>
  773. <project dir="class/System.Runtime.Serialization.Formatters.Soap" library="System.Runtime.Serialization.Formatters.Soap-net_4_x">
  774. <boot>false</boot>
  775. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.Xml.dll</flags>
  776. <output>System.Runtime.Serialization.Formatters.Soap.dll</output>
  777. <built_sources></built_sources>
  778. <library_output>./../../class/lib/net_4_x/System.Runtime.Serialization.Formatters.Soap.dll</library_output>
  779. <fx_version>4.5</fx_version>
  780. <profile>net_4_x</profile>
  781. <resources></resources>
  782. <response>System.Runtime.Serialization.Formatters.Soap.dll.sources</response>
  783. </project>
  784. <project dir="class/System.Runtime.Serialization.Formatters.Soap" library="System.Runtime.Serialization.Formatters.Soap-tests-net_4_x">
  785. <boot>false</boot>
  786. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Runtime.Serialization.Formatters.Soap.dll -r:./../../class/lib/net_4_x/System.Xml.dll -nowarn:0618 -nowarn:219 -nowarn:169</flags>
  787. <output>net_4_x_System.Runtime.Serialization.Formatters.Soap_test.dll</output>
  788. <built_sources></built_sources>
  789. <library_output>net_4_x_System.Runtime.Serialization.Formatters.Soap_test.dll</library_output>
  790. <fx_version>4.5</fx_version>
  791. <profile>net_4_x</profile>
  792. <resources></resources>
  793. <response>./../../build/deps/net_4_x_System.Runtime.Serialization.Formatters.Soap_test.dll.response</response>
  794. </project>
  795. <project dir="class/System.Windows.Forms" library="System.Windows.Forms-net_4_x">
  796. <boot>false</boot>
  797. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig /unsafe @System.Windows.Forms.dll.resources -nowarn:618,612,809 -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Drawing.dll -r:./../../class/lib/net_4_x/Accessibility.dll -r:./../../class/lib/net_4_x/System.Data.dll -r:./../../class/lib/net_4_x/Mono.Posix.dll -r:./../../class/lib/net_4_x/Mono.WebBrowser.dll -r:./../../class/lib/net_4_x/System.Configuration.dll -r:./../../class/lib/net_4_x/System.Runtime.Serialization.Formatters.Soap.dll</flags>
  798. <output>System.Windows.Forms.dll</output>
  799. <built_sources></built_sources>
  800. <library_output>./../../class/lib/net_4_x/System.Windows.Forms.dll</library_output>
  801. <fx_version>4.5</fx_version>
  802. <profile>net_4_x</profile>
  803. <resources></resources>
  804. <response>System.Windows.Forms.dll.sources</response>
  805. </project>
  806. <project dir="class/System.Windows.Forms" library="System.Windows.Forms-tests-net_4_x">
  807. <boot>false</boot>
  808. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Windows.Forms.dll -resource:Test/resources/a.cur,a.cur -resource:Test/resources/32x32.ico,32x32.ico -nowarn:618,612</flags>
  809. <output>net_4_x_System.Windows.Forms_test.dll</output>
  810. <built_sources></built_sources>
  811. <library_output>net_4_x_System.Windows.Forms_test.dll</library_output>
  812. <fx_version>4.5</fx_version>
  813. <profile>net_4_x</profile>
  814. <resources></resources>
  815. <response>./../../build/deps/net_4_x_System.Windows.Forms_test.dll.response</response>
  816. </project>
  817. <project dir="class/Mono.Data.Sqlite" library="Mono.Data.Sqlite-net_4_x">
  818. <boot>false</boot>
  819. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig /unsafe -resource:resources/SR.resources -resource:resources/SQLiteCommand.bmp -resource:resources/SQLiteConnection.bmp -resource:resources/SQLiteDataAdapter.bmp -d:SQLITE_STANDARD -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Data.dll -r:./../../class/lib/net_4_x/System.Transactions.dll -r:./../../class/lib/net_4_x/System.Xml.dll</flags>
  820. <output>Mono.Data.Sqlite.dll</output>
  821. <built_sources></built_sources>
  822. <library_output>./../../class/lib/net_4_x/Mono.Data.Sqlite.dll</library_output>
  823. <fx_version>4.5</fx_version>
  824. <profile>net_4_x</profile>
  825. <resources></resources>
  826. <response>Mono.Data.Sqlite.dll.sources</response>
  827. </project>
  828. <project dir="class/Mono.Data.Sqlite" library="Mono.Data.Sqlite-tests-net_4_x">
  829. <boot>false</boot>
  830. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/Mono.Data.Sqlite.dll /unsafe -resource:resources/SR.resources -resource:resources/SQLiteCommand.bmp -resource:resources/SQLiteConnection.bmp -resource:resources/SQLiteDataAdapter.bmp -d:SQLITE_STANDARD -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Data.dll -r:./../../class/lib/net_4_x/System.Transactions.dll -r:./../../class/lib/net_4_x/System.Xml.dll /nowarn:618</flags>
  831. <output>net_4_x_Mono.Data.Sqlite_test.dll</output>
  832. <built_sources></built_sources>
  833. <library_output>net_4_x_Mono.Data.Sqlite_test.dll</library_output>
  834. <fx_version>4.5</fx_version>
  835. <profile>net_4_x</profile>
  836. <resources></resources>
  837. <response>./../../build/deps/net_4_x_Mono.Data.Sqlite_test.dll.response</response>
  838. </project>
  839. <project dir="class/System.Web.ApplicationServices" library="System.Web.ApplicationServices-net_4_x">
  840. <boot>false</boot>
  841. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -d:SYSTEM_WEB_APPLICATIONSERVICES -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Configuration.dll</flags>
  842. <output>System.Web.ApplicationServices.dll</output>
  843. <built_sources></built_sources>
  844. <library_output>./../../class/lib/net_4_x/System.Web.ApplicationServices.dll</library_output>
  845. <fx_version>4.5</fx_version>
  846. <profile>net_4_x</profile>
  847. <resources></resources>
  848. <response>System.Web.ApplicationServices.dll.sources</response>
  849. </project>
  850. <project dir="class/Novell.Directory.Ldap" library="Novell.Directory.Ldap-net_4_x">
  851. <boot>false</boot>
  852. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -warn:1 -nowarn:612 -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/Mono.Security.dll</flags>
  853. <output>Novell.Directory.Ldap.dll</output>
  854. <built_sources></built_sources>
  855. <library_output>./../../class/lib/net_4_x/Novell.Directory.Ldap.dll</library_output>
  856. <fx_version>4.5</fx_version>
  857. <profile>net_4_x</profile>
  858. <resources>ResultCodeMessages,Novell.Directory.Ldap.Utilclass/ResultCodeMessages.txt</resources>
  859. <response>Novell.Directory.Ldap.dll.sources</response>
  860. </project>
  861. <project dir="class/Novell.Directory.Ldap" library="Novell.Directory.Ldap-tests-net_4_x">
  862. <boot>false</boot>
  863. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/Novell.Directory.Ldap.dll</flags>
  864. <output>net_4_x_Novell.Directory.Ldap_test.dll</output>
  865. <built_sources></built_sources>
  866. <library_output>net_4_x_Novell.Directory.Ldap_test.dll</library_output>
  867. <fx_version>4.5</fx_version>
  868. <profile>net_4_x</profile>
  869. <resources></resources>
  870. <response>./../../build/deps/net_4_x_Novell.Directory.Ldap_test.dll.response</response>
  871. </project>
  872. <project dir="class/System.DirectoryServices" library="System.DirectoryServices-net_4_x">
  873. <boot>false</boot>
  874. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/Novell.Directory.Ldap.dll</flags>
  875. <output>System.DirectoryServices.dll</output>
  876. <built_sources></built_sources>
  877. <library_output>./../../class/lib/net_4_x/System.DirectoryServices.dll</library_output>
  878. <fx_version>4.5</fx_version>
  879. <profile>net_4_x</profile>
  880. <resources></resources>
  881. <response>System.DirectoryServices.dll.sources</response>
  882. </project>
  883. <project dir="class/System.DirectoryServices" library="System.DirectoryServices-tests-net_4_x">
  884. <boot>false</boot>
  885. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.DirectoryServices.dll -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/Novell.Directory.Ldap.dll -nowarn:0618 -nowarn:219 -nowarn:169</flags>
  886. <output>net_4_x_System.DirectoryServices_test.dll</output>
  887. <built_sources></built_sources>
  888. <library_output>net_4_x_System.DirectoryServices_test.dll</library_output>
  889. <fx_version>4.5</fx_version>
  890. <profile>net_4_x</profile>
  891. <resources></resources>
  892. <response>./../../build/deps/net_4_x_System.DirectoryServices_test.dll.response</response>
  893. </project>
  894. <project dir="class/System.Web" library="System.Web-net_4_x">
  895. <boot>false</boot>
  896. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -unsafe -nowarn:612,618 -d:INSIDE_SYSTEM_WEB -nowarn:618 /resource:resources/WebUIValidation.js /resource:resources/folder.gif /resource:resources/file.gif /resource:resources/computer.gif /resource:resources/arrow_minus.gif /resource:resources/arrow_noexpand.gif /resource:resources/arrow_plus.gif /resource:resources/arrow_up.gif /resource:resources/arrow_down.gif /resource:resources/box_full.gif /resource:resources/box_empty.gif /resource:resources/box_minus.gif /resource:resources/box_noexpand.gif /resource:resources/box_plus.gif /resource:resources/contact.gif /resource:resources/dot_empty.gif /resource:resources/dot_full.gif /resource:resources/dots.gif /resource:resources/inbox.gif /resource:resources/star_empty.gif /resource:resources/star_full.gif /resource:resources/warning.gif /resource:resources/TreeView_noexpand.gif /resource:resources/TreeView_dash.gif /resource:resources/TreeView_dashminus.gif /resource:resources/TreeView_dashplus.gif /resource:resources/TreeView_i.gif /resource:resources/TreeView_l.gif /resource:resources/TreeView_lminus.gif /resource:resources/TreeView_lplus.gif /resource:resources/TreeView_minus.gif /resource:resources/TreeView_plus.gif /resource:resources/TreeView_r.gif /resource:resources/TreeView_rminus.gif /resource:resources/TreeView_rplus.gif /resource:resources/TreeView_t.gif /resource:resources/TreeView_tminus.gif /resource:resources/TreeView_tplus.gif /resource:resources/transparent.gif /resource:resources/webform.js /resource:resources/WebUIValidation_2.0.js /resource:resources/ErrorTemplateCommon_Top.html /resource:resources/DefaultErrorTemplate_CustomErrorDefault.html /resource:resources/ErrorTemplateCommon_Bottom.html /resource:resources/DefaultErrorTemplate_StandardPage.html /resource:resources/HtmlizedExceptionPage_Top.html /resource:resources/HtmlizedExceptionPage_FileLongSource.html /resource:resources/HtmlizedExceptionPage_FileShortSource.html /resource:resources/HtmlizedExceptionPage_CompilerOutput.html /resource:System.Web.UI.WebControls/GridView.js /resource:System.Web.UI.WebControls/DetailsView.js /resource:System.Web.UI.WebControls/TreeView.js /resource:System.Web.UI.WebControls/Menu.js /resource:System.Web.UI.WebControls/MenuModern.js -define:WEBSERVICES_DEP -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Drawing.dll -r:./../../class/lib/net_4_x/System.Data.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.EnterpriseServices.dll -r:./../../class/lib/net_4_x/System.Runtime.Serialization.Formatters.Soap.dll -r:./../../class/lib/net_4_x/System.ComponentModel.DataAnnotations.dll -r:./../../class/lib/net_4_x/System.Web.ApplicationServices.dll -r:./../../class/lib/net_4_x/System.Configuration.dll -r:./../../class/lib/net_4_x/Mono.Data.Sqlite.dll -r:./../../class/lib/net_4_x/System.Web.Services.dll -r:./../../class/lib/net_4_x/plaindesign/System.Design.dll</flags>
  897. <output>System.Web.dll</output>
  898. <built_sources>System.Web/UplevelHelper.cs</built_sources>
  899. <library_output>./../../class/lib/net_4_x/System.Web.dll</library_output>
  900. <fx_version>4.5</fx_version>
  901. <profile>net_4_x</profile>
  902. <resources>TranslationResources,resources/TranslationResources.resx</resources>
  903. <response>System.Web.dll.sources</response>
  904. </project>
  905. <project dir="class/System.Web" library="System.Web-tests-net_4_x">
  906. <boot>false</boot>
  907. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/plainweb/System.Web.dll -unsafe -nowarn:612,618 -d:INSIDE_SYSTEM_WEB -nowarn:618 /resource:resources/WebUIValidation.js /resource:resources/folder.gif /resource:resources/file.gif /resource:resources/computer.gif /resource:resources/arrow_minus.gif /resource:resources/arrow_noexpand.gif /resource:resources/arrow_plus.gif /resource:resources/arrow_up.gif /resource:resources/arrow_down.gif /resource:resources/box_full.gif /resource:resources/box_empty.gif /resource:resources/box_minus.gif /resource:resources/box_noexpand.gif /resource:resources/box_plus.gif /resource:resources/contact.gif /resource:resources/dot_empty.gif /resource:resources/dot_full.gif /resource:resources/dots.gif /resource:resources/inbox.gif /resource:resources/star_empty.gif /resource:resources/star_full.gif /resource:resources/warning.gif /resource:resources/TreeView_noexpand.gif /resource:resources/TreeView_dash.gif /resource:resources/TreeView_dashminus.gif /resource:resources/TreeView_dashplus.gif /resource:resources/TreeView_i.gif /resource:resources/TreeView_l.gif /resource:resources/TreeView_lminus.gif /resource:resources/TreeView_lplus.gif /resource:resources/TreeView_minus.gif /resource:resources/TreeView_plus.gif /resource:resources/TreeView_r.gif /resource:resources/TreeView_rminus.gif /resource:resources/TreeView_rplus.gif /resource:resources/TreeView_t.gif /resource:resources/TreeView_tminus.gif /resource:resources/TreeView_tplus.gif /resource:resources/transparent.gif /resource:resources/webform.js /resource:resources/WebUIValidation_2.0.js /resource:resources/ErrorTemplateCommon_Top.html /resource:resources/DefaultErrorTemplate_CustomErrorDefault.html /resource:resources/ErrorTemplateCommon_Bottom.html /resource:resources/DefaultErrorTemplate_StandardPage.html /resource:resources/HtmlizedExceptionPage_Top.html /resource:resources/HtmlizedExceptionPage_FileLongSource.html /resource:resources/HtmlizedExceptionPage_FileShortSource.html /resource:resources/HtmlizedExceptionPage_CompilerOutput.html /resource:System.Web.UI.WebControls/GridView.js /resource:System.Web.UI.WebControls/DetailsView.js /resource:System.Web.UI.WebControls/TreeView.js /resource:System.Web.UI.WebControls/Menu.js /resource:System.Web.UI.WebControls/MenuModern.js -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Drawing.dll -r:./../../class/lib/net_4_x/System.Data.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.EnterpriseServices.dll -r:./../../class/lib/net_4_x/System.Runtime.Serialization.Formatters.Soap.dll -r:./../../class/lib/net_4_x/System.ComponentModel.DataAnnotations.dll -r:./../../class/lib/net_4_x/System.Web.ApplicationServices.dll -r:./../../class/lib/net_4_x/System.Configuration.dll -r:./../../class/lib/net_4_x/Mono.Data.Sqlite.dll -doc:net_4_x_System.Web_test.xml -nowarn:219,169,1591 /resource:Test/mainsoft/NunitWeb/NunitWeb/Resources/Global.asax /resource:Test/mainsoft/NunitWeb/NunitWeb/Resources/My.ashx /resource:Test/mainsoft/NunitWeb/NunitWeb/Resources/My.master /resource:Test/mainsoft/NunitWeb/NunitWeb/Resources/MyPage.aspx /resource:Test/mainsoft/NunitWeb/NunitWeb/Resources/MyPage.aspx.cs /resource:Test/mainsoft/NunitWeb/NunitWeb/Resources/MyPageWithMaster.aspx /resource:Test/mainsoft/NunitWeb/NunitWeb/Resources/Web.mono.config /resource:Test/mainsoft/NunitWeb/NunitWeb/Resources/Web.mono.config.4.0 /resource:Test/mainsoft/NunitWeb/NunitWeb/Resources/sub_map_01.sitemap /resource:Test/mainsoft/NunitWeb/NunitWeb/Resources/test_map_01.sitemap /resource:Test/mainsoft/NunitWeb/NunitWeb/Resources/test_map_02.sitemap /resource:Test/mainsoft/NunitWeb/NunitWeb/Resources/test_map_03.sitemap /resource:Test/mainsoft/NunitWeb/NunitWeb/Resources/test_map_04.sitemap /resource:Test/mainsoft/NunitWeb/NunitWeb/Resources/test_map_05.sitemap /resource:Test/mainsoft/NunitWeb/NunitWeb/Resources/test_map_06.sitemap /resource:Test/mainsoft/NunitWeb/NunitWeb/Resources/test_map_07.sitemap /resource:Test/mainsoft/NunitWeb/NunitWeb/Resources/test_map_08.sitemap /resource:Test/mainsoft/NunitWeb/NunitWeb/Resources/test_map_09.sitemap /resource:Test/mainsoft/NunitWebResources/menuclass.aspx /resource:Test/mainsoft/NunitWebResources/FormView.aspx /resource:Test/mainsoft/NunitWebResources/PostBackMenuTest.aspx /resource:Test/mainsoft/NunitWebResources/PageWithStyleSheet.aspx /resource:Test/mainsoft/NunitWebResources/PageWithTheme.aspx /resource:Test/mainsoft/NunitWebResources/ResolveUrl.ascx /resource:Test/mainsoft/NunitWebResources/ResolveUrl.aspx /resource:Test/mainsoft/NunitWebResources/RunTimeSetTheme.aspx /resource:Test/mainsoft/NunitWebResources/ReadOnlyPropertyBind.aspx /resource:Test/mainsoft/NunitWebResources/ReadOnlyPropertyControl.ascx /resource:Test/mainsoft/NunitWebResources/Theme1.skin /resource:Test/mainsoft/NunitWebResources/Theme2.skin /resource:Test/mainsoft/NunitWebResources/UrlProperty.aspx /resource:Test/mainsoft/NunitWebResources/UrlProperty.ascx /resource:Test/mainsoft/NunitWebResources/UrlProperty.ascx.cs /resource:Test/mainsoft/NunitWebResources/Web.sitemap /resource:Test/mainsoft/NunitWebResources/WizardTest.skin /resource:Test/mainsoft/NunitWebResources/FooterTemplateTest.aspx /resource:Test/mainsoft/NunitWebResources/DataGrid.aspx /resource:Test/mainsoft/NunitWebResources/DetailsViewTemplates.aspx /resource:Test/mainsoft/NunitWebResources/DetailsViewTemplates_2.aspx /resource:Test/mainsoft/NunitWebResources/DetailsViewTemplates_3.aspx /resource:Test/mainsoft/NunitWebResources/DetailsViewDataActions.aspx /resource:Test/mainsoft/NunitWebResources/DetailsViewProperties1.aspx /resource:Test/mainsoft/NunitWebResources/Bluehills.jpg /resource:Test/mainsoft/NunitWebResources/FormViewTest1.aspx /resource:Test/mainsoft/NunitWebResources/FormViewTest1_2.aspx /resource:Test/mainsoft/NunitWebResources/FormViewTest1_3.aspx /resource:Test/mainsoft/NunitWebResources/FormViewTest1_4.aspx /resource:Test/mainsoft/NunitWebResources/FormViewInsertEditDelete.aspx /resource:Test/mainsoft/NunitWebResources/GridViewUpdate.aspx /resource:Test/mainsoft/NunitWebResources/XMLDataSourceTest.xml /resource:Test/mainsoft/NunitWebResources/XMLDataSourceTest.xsl /resource:Test/mainsoft/NunitWebResources/XMLDataSourceTest1.aspx /resource:Test/mainsoft/NunitWebResources/XMLDataSourceTest2.aspx /resource:Test/mainsoft/NunitWebResources/XMLDataSourceTest3.aspx /resource:Test/mainsoft/NunitWebResources/XMLDataSourceTest4.aspx /resource:Test/mainsoft/NunitWebResources/LoginViewTest1.aspx /resource:Test/mainsoft/NunitWebResources/WebControl.config /resource:Test/mainsoft/NunitWebResources/WebLogin.config /resource:Test/mainsoft/NunitWebResources/CallbackTest1.aspx /resource:Test/mainsoft/NunitWebResources/CallbackTest2.aspx /resource:Test/mainsoft/NunitWebResources/EventValidationTest2.aspx /resource:Test/mainsoft/NunitWebResources/EventValidationTest1.aspx /resource:Test/mainsoft/NunitWebResources/ClientScript.js /resource:Test/mainsoft/NunitWebResources/EvalTest.aspx /resource:Test/mainsoft/NunitWebResources/TemplateUserControl.ascx /resource:Test/mainsoft/NunitWebResources/WebMapping.config /resource:Test/mainsoft/NunitWebResources/Mapping.aspx /resource:Test/mainsoft/NunitWebResources/Mapping1.aspx /resource:Test/mainsoft/NunitWebResources/CrossPagePosting1.aspx /resource:Test/mainsoft/NunitWebResources/CrossPagePosting2.aspx /resource:Test/mainsoft/NunitWebResources/MyDerived.master /resource:Test/mainsoft/NunitWebResources/MyPageWithDerivedMaster.aspx /resource:Test/mainsoft/NunitWebResources/MasterTypeTest1.aspx /resource:Test/mainsoft/NunitWebResources/MasterTypeTest2.aspx /resource:Test/mainsoft/NunitWebResources/PageLifecycleTest.aspx /resource:Test/mainsoft/NunitWebResources/PageValidationTest.aspx /resource:Test/mainsoft/NunitWebResources/AsyncPage.aspx /resource:Test/mainsoft/NunitWebResources/PageCultureTest.aspx /resource:Test/mainsoft/NunitWebResources/adapters.browser /resource:Test/mainsoft/NunitWebResources/NoEventValidation.aspx /resource:Test/mainsoft/NunitWebResources/ListControlPage.aspx /resource:Test/mainsoft/NunitWebResources/TextBoxTestlPage.aspx /resource:Test/mainsoft/NunitWebResources/ClearErrorOnError.aspx /resource:Test/mainsoft/NunitWebResources/RedirectOnError.aspx /resource:Test/mainsoft/NunitWebResources/TestCapability.browser /resource:Test/mainsoft/NunitWebResources/PageWithAdapter.aspx /resource:Test/mainsoft/NunitWebResources/InvalidPropertyBind1.aspx /resource:Test/mainsoft/NunitWebResources/InvalidPropertyBind2.aspx /resource:Test/mainsoft/NunitWebResources/InvalidPropertyBind3.aspx /resource:Test/mainsoft/NunitWebResources/InvalidPropertyBind4.aspx /resource:Test/mainsoft/NunitWebResources/ValidPropertyBind1.aspx /resource:Test/mainsoft/NunitWebResources/ValidPropertyBind2.aspx /resource:Test/mainsoft/NunitWebResources/ValidPropertyBind3.aspx /resource:Test/mainsoft/NunitWebResources/ValidPropertyBind4.aspx /resource:Test/mainsoft/NunitWebResources/ValidPropertyBind5.aspx /resource:Test/mainsoft/NunitWebResources/ReadWritePropertyControl.ascx /resource:Test/mainsoft/MainsoftWebTest/nunitweb_config.xml /resource:Test/mainsoft/NunitWebResources/TemplateControlParsingTest.aspx /resource:Test/mainsoft/NunitWebResources/ContentPlaceHolderInTemplate.aspx /resource:Test/mainsoft/NunitWebResources/ContentPlaceHolderInTemplate.master /resource:Test/mainsoft/NunitWebResources/MissingMasterFile.aspx /resource:Test/mainsoft/NunitWebResources/CustomSectionEmptyCollection.aspx /resource:Test/mainsoft/NunitWebResources/NoDoubleOnInitOnRemoveAdd.aspx /resource:Test/mainsoft/NunitWebResources/NoDoubleOnInitOnRemoveAdd.aspx.cs /resource:Test/mainsoft/NunitWebResources/LoginDisplayRememberMe.aspx /resource:Test/mainsoft/NunitWebResources/NoBindForMethodsWithBindInName.aspx /resource:Test/mainsoft/NunitWebResources/LinkInHeadWithEmbeddedExpression.aspx /resource:Test/mainsoft/NunitWebResources/ExpressionInListControl.aspx /resource:Test/mainsoft/NunitWebResources/ServerSideControlsInScriptBlock.aspx /resource:Test/mainsoft/NunitWebResources/ServerControlInClientSideComment.aspx /resource:Test/mainsoft/NunitWebResources/PreprocessorDirectivesInMarkup.aspx /resource:Test/mainsoft/NunitWebResources/UnquotedAngleBrackets.aspx /resource:Test/mainsoft/NunitWebResources/FullTagsInText.aspx /resource:Test/mainsoft/NunitWebResources/TagsExpressionsAndCommentsInText.aspx /resource:Test/mainsoft/NunitWebResources/NewlineInCodeExpression.aspx /resource:Test/mainsoft/NunitWebResources/DuplicateControlsInClientComment.aspx /resource:Test/mainsoft/NunitWebResources/TagsNestedInClientTag.aspx /resource:Test/mainsoft/NunitWebResources/ConditionalClientComments.aspx /resource:Test/mainsoft/NunitWebResources/OneLetterIdentifierInCodeRender.aspx /resource:Test/mainsoft/NunitWebResources/GlobalResourcesLocalization.aspx /resource:Test/mainsoft/NunitWebResources/TableSections_Bug551666.aspx /resource:Test/mainsoft/NunitWebResources/TableSections_Bug551666.aspx.cs /resource:Test/mainsoft/NunitWebResources/NestedParserFileText.aspx /resource:Test/mainsoft/NunitWebResources/StateFormatter_CorrectConverter.aspx /resource:Test/mainsoft/NunitWebResources/StateFormatter_CollectionConverter.aspx /resource:Test/mainsoft/NunitWebResources/StateFormatter_CollectionConverter.aspx.cs /resource:Test/mainsoft/NunitWebResources/ChangePasswordContainer_FindControl.aspx /resource:Test/mainsoft/NunitWebResources/TagWithExpressionWithinAttribute.aspx /resource:Test/mainsoft/NunitWebResources/CheckBoxList_Bug377703_1.aspx /resource:Test/mainsoft/NunitWebResources/CheckBoxList_Bug377703_2.aspx /resource:Test/mainsoft/NunitWebResources/CheckBoxList_Bug578770.aspx /resource:Test/mainsoft/NunitWebResources/EnumConverter_Bug578586.aspx /resource:Test/mainsoft/NunitWebResources/ButtonColor_Bug325489.aspx /resource:Test/mainsoft/NunitWebResources/SqlDataSource_OnInit_Bug572781.aspx /resource:Test/mainsoft/NunitWebResources/FormViewPagerVisibility.aspx /resource:Test/mainsoft/NunitWebResources/OverridenControlsPropertyAndPostBack_Bug594238.aspx /resource:Test/mainsoft/NunitWebResources/GlobalizationEncodingName.aspx /resource:Test/mainsoft/NunitWebResources/CheckBoxField_Bug595568_0.aspx /resource:Test/mainsoft/NunitWebResources/CheckBoxField_Bug595568_1.aspx /resource:Test/mainsoft/NunitWebResources/CheckBoxField_Bug595568_2.aspx /resource:Test/mainsoft/NunitWebResources/CheckBoxField_Bug595568_5.aspx /resource:Test/mainsoft/NunitWebResources/CheckBoxField_Bug595568_6.aspx /resource:Test/mainsoft/NunitWebResources/CheckBoxField_Bug595568_7.aspx /resource:Test/mainsoft/NunitWebResources/GridView_Bug595567.aspx /resource:Test/mainsoft/NunitWebResources/CheckBoxList_Bug600415.aspx /resource:Test/mainsoft/NunitWebResources/BoundField_Bug646505.aspx /resource:Test/mainsoft/NunitWebResources/BoundField_Bug646505.aspx.cs /resource:Test/mainsoft/NunitWebResources/HtmlTitleCodeRender_Bug662918.aspx /resource:Test/mainsoft/NunitWebResources/App_Code/EnumConverterControl.cs,App_Code/EnumConverterControl.cs /resource:Test/mainsoft/NunitWebResources/App_Code/MyContainer.cs,App_Code/MyContainer.cs /resource:Test/mainsoft/NunitWebResources/App_Code/CustomCheckBoxColumn.cs,App_Code/CustomCheckBoxColumn.cs /resource:Test/mainsoft/NunitWebResources/App_GlobalResources/Common.resx,App_GlobalResources/Common.resx /resource:Test/mainsoft/NunitWebResources/App_GlobalResources/Common.fr-FR.resx,App_GlobalResources/Common.fr-FR.resx /resource:Test/mainsoft/NunitWebResources/App_GlobalResources/Resource1.resx,App_GlobalResources/Resource1.resx</flags>
  908. <output>net_4_x_System.Web_test.dll</output>
  909. <built_sources>System.Web/UplevelHelper.cs</built_sources>
  910. <library_output>net_4_x_System.Web_test.dll</library_output>
  911. <fx_version>4.5</fx_version>
  912. <profile>net_4_x</profile>
  913. <resources></resources>
  914. <response>./../../build/deps/net_4_x_System.Web_test.dll.response</response>
  915. </project>
  916. <project dir="class/System.Web" library="System.Web-plainweb-net_4_x">
  917. <boot>false</boot>
  918. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -unsafe -nowarn:612,618 -d:INSIDE_SYSTEM_WEB -nowarn:618 /resource:resources/WebUIValidation.js /resource:resources/folder.gif /resource:resources/file.gif /resource:resources/computer.gif /resource:resources/arrow_minus.gif /resource:resources/arrow_noexpand.gif /resource:resources/arrow_plus.gif /resource:resources/arrow_up.gif /resource:resources/arrow_down.gif /resource:resources/box_full.gif /resource:resources/box_empty.gif /resource:resources/box_minus.gif /resource:resources/box_noexpand.gif /resource:resources/box_plus.gif /resource:resources/contact.gif /resource:resources/dot_empty.gif /resource:resources/dot_full.gif /resource:resources/dots.gif /resource:resources/inbox.gif /resource:resources/star_empty.gif /resource:resources/star_full.gif /resource:resources/warning.gif /resource:resources/TreeView_noexpand.gif /resource:resources/TreeView_dash.gif /resource:resources/TreeView_dashminus.gif /resource:resources/TreeView_dashplus.gif /resource:resources/TreeView_i.gif /resource:resources/TreeView_l.gif /resource:resources/TreeView_lminus.gif /resource:resources/TreeView_lplus.gif /resource:resources/TreeView_minus.gif /resource:resources/TreeView_plus.gif /resource:resources/TreeView_r.gif /resource:resources/TreeView_rminus.gif /resource:resources/TreeView_rplus.gif /resource:resources/TreeView_t.gif /resource:resources/TreeView_tminus.gif /resource:resources/TreeView_tplus.gif /resource:resources/transparent.gif /resource:resources/webform.js /resource:resources/WebUIValidation_2.0.js /resource:resources/ErrorTemplateCommon_Top.html /resource:resources/DefaultErrorTemplate_CustomErrorDefault.html /resource:resources/ErrorTemplateCommon_Bottom.html /resource:resources/DefaultErrorTemplate_StandardPage.html /resource:resources/HtmlizedExceptionPage_Top.html /resource:resources/HtmlizedExceptionPage_FileLongSource.html /resource:resources/HtmlizedExceptionPage_FileShortSource.html /resource:resources/HtmlizedExceptionPage_CompilerOutput.html /resource:System.Web.UI.WebControls/GridView.js /resource:System.Web.UI.WebControls/DetailsView.js /resource:System.Web.UI.WebControls/TreeView.js /resource:System.Web.UI.WebControls/Menu.js /resource:System.Web.UI.WebControls/MenuModern.js -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Drawing.dll -r:./../../class/lib/net_4_x/System.Data.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.EnterpriseServices.dll -r:./../../class/lib/net_4_x/System.Runtime.Serialization.Formatters.Soap.dll -r:./../../class/lib/net_4_x/System.ComponentModel.DataAnnotations.dll -r:./../../class/lib/net_4_x/System.Web.ApplicationServices.dll -r:./../../class/lib/net_4_x/System.Configuration.dll -r:./../../class/lib/net_4_x/Mono.Data.Sqlite.dll</flags>
  919. <output>System.Web.dll</output>
  920. <built_sources>System.Web/UplevelHelper.cs</built_sources>
  921. <library_output>./../../class/lib/net_4_x/plainweb/System.Web.dll</library_output>
  922. <fx_version>4.5</fx_version>
  923. <profile>net_4_x</profile>
  924. <resources>TranslationResources,resources/TranslationResources.resx</resources>
  925. <response>System.Web.dll.sources</response>
  926. </project>
  927. <project dir="class/System.Web" library="System.Web-tests-net_4_x">
  928. <boot>false</boot>
  929. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/plainweb/System.Web.dll -unsafe -nowarn:612,618 -d:INSIDE_SYSTEM_WEB -nowarn:618 /resource:resources/WebUIValidation.js /resource:resources/folder.gif /resource:resources/file.gif /resource:resources/computer.gif /resource:resources/arrow_minus.gif /resource:resources/arrow_noexpand.gif /resource:resources/arrow_plus.gif /resource:resources/arrow_up.gif /resource:resources/arrow_down.gif /resource:resources/box_full.gif /resource:resources/box_empty.gif /resource:resources/box_minus.gif /resource:resources/box_noexpand.gif /resource:resources/box_plus.gif /resource:resources/contact.gif /resource:resources/dot_empty.gif /resource:resources/dot_full.gif /resource:resources/dots.gif /resource:resources/inbox.gif /resource:resources/star_empty.gif /resource:resources/star_full.gif /resource:resources/warning.gif /resource:resources/TreeView_noexpand.gif /resource:resources/TreeView_dash.gif /resource:resources/TreeView_dashminus.gif /resource:resources/TreeView_dashplus.gif /resource:resources/TreeView_i.gif /resource:resources/TreeView_l.gif /resource:resources/TreeView_lminus.gif /resource:resources/TreeView_lplus.gif /resource:resources/TreeView_minus.gif /resource:resources/TreeView_plus.gif /resource:resources/TreeView_r.gif /resource:resources/TreeView_rminus.gif /resource:resources/TreeView_rplus.gif /resource:resources/TreeView_t.gif /resource:resources/TreeView_tminus.gif /resource:resources/TreeView_tplus.gif /resource:resources/transparent.gif /resource:resources/webform.js /resource:resources/WebUIValidation_2.0.js /resource:resources/ErrorTemplateCommon_Top.html /resource:resources/DefaultErrorTemplate_CustomErrorDefault.html /resource:resources/ErrorTemplateCommon_Bottom.html /resource:resources/DefaultErrorTemplate_StandardPage.html /resource:resources/HtmlizedExceptionPage_Top.html /resource:resources/HtmlizedExceptionPage_FileLongSource.html /resource:resources/HtmlizedExceptionPage_FileShortSource.html /resource:resources/HtmlizedExceptionPage_CompilerOutput.html /resource:System.Web.UI.WebControls/GridView.js /resource:System.Web.UI.WebControls/DetailsView.js /resource:System.Web.UI.WebControls/TreeView.js /resource:System.Web.UI.WebControls/Menu.js /resource:System.Web.UI.WebControls/MenuModern.js -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Drawing.dll -r:./../../class/lib/net_4_x/System.Data.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.EnterpriseServices.dll -r:./../../class/lib/net_4_x/System.Runtime.Serialization.Formatters.Soap.dll -r:./../../class/lib/net_4_x/System.ComponentModel.DataAnnotations.dll -r:./../../class/lib/net_4_x/System.Web.ApplicationServices.dll -r:./../../class/lib/net_4_x/System.Configuration.dll -r:./../../class/lib/net_4_x/Mono.Data.Sqlite.dll -doc:net_4_x_System.Web_test.xml -nowarn:219,169,1591 /resource:Test/mainsoft/NunitWeb/NunitWeb/Resources/Global.asax /resource:Test/mainsoft/NunitWeb/NunitWeb/Resources/My.ashx /resource:Test/mainsoft/NunitWeb/NunitWeb/Resources/My.master /resource:Test/mainsoft/NunitWeb/NunitWeb/Resources/MyPage.aspx /resource:Test/mainsoft/NunitWeb/NunitWeb/Resources/MyPage.aspx.cs /resource:Test/mainsoft/NunitWeb/NunitWeb/Resources/MyPageWithMaster.aspx /resource:Test/mainsoft/NunitWeb/NunitWeb/Resources/Web.mono.config /resource:Test/mainsoft/NunitWeb/NunitWeb/Resources/Web.mono.config.4.0 /resource:Test/mainsoft/NunitWeb/NunitWeb/Resources/sub_map_01.sitemap /resource:Test/mainsoft/NunitWeb/NunitWeb/Resources/test_map_01.sitemap /resource:Test/mainsoft/NunitWeb/NunitWeb/Resources/test_map_02.sitemap /resource:Test/mainsoft/NunitWeb/NunitWeb/Resources/test_map_03.sitemap /resource:Test/mainsoft/NunitWeb/NunitWeb/Resources/test_map_04.sitemap /resource:Test/mainsoft/NunitWeb/NunitWeb/Resources/test_map_05.sitemap /resource:Test/mainsoft/NunitWeb/NunitWeb/Resources/test_map_06.sitemap /resource:Test/mainsoft/NunitWeb/NunitWeb/Resources/test_map_07.sitemap /resource:Test/mainsoft/NunitWeb/NunitWeb/Resources/test_map_08.sitemap /resource:Test/mainsoft/NunitWeb/NunitWeb/Resources/test_map_09.sitemap /resource:Test/mainsoft/NunitWebResources/menuclass.aspx /resource:Test/mainsoft/NunitWebResources/FormView.aspx /resource:Test/mainsoft/NunitWebResources/PostBackMenuTest.aspx /resource:Test/mainsoft/NunitWebResources/PageWithStyleSheet.aspx /resource:Test/mainsoft/NunitWebResources/PageWithTheme.aspx /resource:Test/mainsoft/NunitWebResources/ResolveUrl.ascx /resource:Test/mainsoft/NunitWebResources/ResolveUrl.aspx /resource:Test/mainsoft/NunitWebResources/RunTimeSetTheme.aspx /resource:Test/mainsoft/NunitWebResources/ReadOnlyPropertyBind.aspx /resource:Test/mainsoft/NunitWebResources/ReadOnlyPropertyControl.ascx /resource:Test/mainsoft/NunitWebResources/Theme1.skin /resource:Test/mainsoft/NunitWebResources/Theme2.skin /resource:Test/mainsoft/NunitWebResources/UrlProperty.aspx /resource:Test/mainsoft/NunitWebResources/UrlProperty.ascx /resource:Test/mainsoft/NunitWebResources/UrlProperty.ascx.cs /resource:Test/mainsoft/NunitWebResources/Web.sitemap /resource:Test/mainsoft/NunitWebResources/WizardTest.skin /resource:Test/mainsoft/NunitWebResources/FooterTemplateTest.aspx /resource:Test/mainsoft/NunitWebResources/DataGrid.aspx /resource:Test/mainsoft/NunitWebResources/DetailsViewTemplates.aspx /resource:Test/mainsoft/NunitWebResources/DetailsViewTemplates_2.aspx /resource:Test/mainsoft/NunitWebResources/DetailsViewTemplates_3.aspx /resource:Test/mainsoft/NunitWebResources/DetailsViewDataActions.aspx /resource:Test/mainsoft/NunitWebResources/DetailsViewProperties1.aspx /resource:Test/mainsoft/NunitWebResources/Bluehills.jpg /resource:Test/mainsoft/NunitWebResources/FormViewTest1.aspx /resource:Test/mainsoft/NunitWebResources/FormViewTest1_2.aspx /resource:Test/mainsoft/NunitWebResources/FormViewTest1_3.aspx /resource:Test/mainsoft/NunitWebResources/FormViewTest1_4.aspx /resource:Test/mainsoft/NunitWebResources/FormViewInsertEditDelete.aspx /resource:Test/mainsoft/NunitWebResources/GridViewUpdate.aspx /resource:Test/mainsoft/NunitWebResources/XMLDataSourceTest.xml /resource:Test/mainsoft/NunitWebResources/XMLDataSourceTest.xsl /resource:Test/mainsoft/NunitWebResources/XMLDataSourceTest1.aspx /resource:Test/mainsoft/NunitWebResources/XMLDataSourceTest2.aspx /resource:Test/mainsoft/NunitWebResources/XMLDataSourceTest3.aspx /resource:Test/mainsoft/NunitWebResources/XMLDataSourceTest4.aspx /resource:Test/mainsoft/NunitWebResources/LoginViewTest1.aspx /resource:Test/mainsoft/NunitWebResources/WebControl.config /resource:Test/mainsoft/NunitWebResources/WebLogin.config /resource:Test/mainsoft/NunitWebResources/CallbackTest1.aspx /resource:Test/mainsoft/NunitWebResources/CallbackTest2.aspx /resource:Test/mainsoft/NunitWebResources/EventValidationTest2.aspx /resource:Test/mainsoft/NunitWebResources/EventValidationTest1.aspx /resource:Test/mainsoft/NunitWebResources/ClientScript.js /resource:Test/mainsoft/NunitWebResources/EvalTest.aspx /resource:Test/mainsoft/NunitWebResources/TemplateUserControl.ascx /resource:Test/mainsoft/NunitWebResources/WebMapping.config /resource:Test/mainsoft/NunitWebResources/Mapping.aspx /resource:Test/mainsoft/NunitWebResources/Mapping1.aspx /resource:Test/mainsoft/NunitWebResources/CrossPagePosting1.aspx /resource:Test/mainsoft/NunitWebResources/CrossPagePosting2.aspx /resource:Test/mainsoft/NunitWebResources/MyDerived.master /resource:Test/mainsoft/NunitWebResources/MyPageWithDerivedMaster.aspx /resource:Test/mainsoft/NunitWebResources/MasterTypeTest1.aspx /resource:Test/mainsoft/NunitWebResources/MasterTypeTest2.aspx /resource:Test/mainsoft/NunitWebResources/PageLifecycleTest.aspx /resource:Test/mainsoft/NunitWebResources/PageValidationTest.aspx /resource:Test/mainsoft/NunitWebResources/AsyncPage.aspx /resource:Test/mainsoft/NunitWebResources/PageCultureTest.aspx /resource:Test/mainsoft/NunitWebResources/adapters.browser /resource:Test/mainsoft/NunitWebResources/NoEventValidation.aspx /resource:Test/mainsoft/NunitWebResources/ListControlPage.aspx /resource:Test/mainsoft/NunitWebResources/TextBoxTestlPage.aspx /resource:Test/mainsoft/NunitWebResources/ClearErrorOnError.aspx /resource:Test/mainsoft/NunitWebResources/RedirectOnError.aspx /resource:Test/mainsoft/NunitWebResources/TestCapability.browser /resource:Test/mainsoft/NunitWebResources/PageWithAdapter.aspx /resource:Test/mainsoft/NunitWebResources/InvalidPropertyBind1.aspx /resource:Test/mainsoft/NunitWebResources/InvalidPropertyBind2.aspx /resource:Test/mainsoft/NunitWebResources/InvalidPropertyBind3.aspx /resource:Test/mainsoft/NunitWebResources/InvalidPropertyBind4.aspx /resource:Test/mainsoft/NunitWebResources/ValidPropertyBind1.aspx /resource:Test/mainsoft/NunitWebResources/ValidPropertyBind2.aspx /resource:Test/mainsoft/NunitWebResources/ValidPropertyBind3.aspx /resource:Test/mainsoft/NunitWebResources/ValidPropertyBind4.aspx /resource:Test/mainsoft/NunitWebResources/ValidPropertyBind5.aspx /resource:Test/mainsoft/NunitWebResources/ReadWritePropertyControl.ascx /resource:Test/mainsoft/MainsoftWebTest/nunitweb_config.xml /resource:Test/mainsoft/NunitWebResources/TemplateControlParsingTest.aspx /resource:Test/mainsoft/NunitWebResources/ContentPlaceHolderInTemplate.aspx /resource:Test/mainsoft/NunitWebResources/ContentPlaceHolderInTemplate.master /resource:Test/mainsoft/NunitWebResources/MissingMasterFile.aspx /resource:Test/mainsoft/NunitWebResources/CustomSectionEmptyCollection.aspx /resource:Test/mainsoft/NunitWebResources/NoDoubleOnInitOnRemoveAdd.aspx /resource:Test/mainsoft/NunitWebResources/NoDoubleOnInitOnRemoveAdd.aspx.cs /resource:Test/mainsoft/NunitWebResources/LoginDisplayRememberMe.aspx /resource:Test/mainsoft/NunitWebResources/NoBindForMethodsWithBindInName.aspx /resource:Test/mainsoft/NunitWebResources/LinkInHeadWithEmbeddedExpression.aspx /resource:Test/mainsoft/NunitWebResources/ExpressionInListControl.aspx /resource:Test/mainsoft/NunitWebResources/ServerSideControlsInScriptBlock.aspx /resource:Test/mainsoft/NunitWebResources/ServerControlInClientSideComment.aspx /resource:Test/mainsoft/NunitWebResources/PreprocessorDirectivesInMarkup.aspx /resource:Test/mainsoft/NunitWebResources/UnquotedAngleBrackets.aspx /resource:Test/mainsoft/NunitWebResources/FullTagsInText.aspx /resource:Test/mainsoft/NunitWebResources/TagsExpressionsAndCommentsInText.aspx /resource:Test/mainsoft/NunitWebResources/NewlineInCodeExpression.aspx /resource:Test/mainsoft/NunitWebResources/DuplicateControlsInClientComment.aspx /resource:Test/mainsoft/NunitWebResources/TagsNestedInClientTag.aspx /resource:Test/mainsoft/NunitWebResources/ConditionalClientComments.aspx /resource:Test/mainsoft/NunitWebResources/OneLetterIdentifierInCodeRender.aspx /resource:Test/mainsoft/NunitWebResources/GlobalResourcesLocalization.aspx /resource:Test/mainsoft/NunitWebResources/TableSections_Bug551666.aspx /resource:Test/mainsoft/NunitWebResources/TableSections_Bug551666.aspx.cs /resource:Test/mainsoft/NunitWebResources/NestedParserFileText.aspx /resource:Test/mainsoft/NunitWebResources/StateFormatter_CorrectConverter.aspx /resource:Test/mainsoft/NunitWebResources/StateFormatter_CollectionConverter.aspx /resource:Test/mainsoft/NunitWebResources/StateFormatter_CollectionConverter.aspx.cs /resource:Test/mainsoft/NunitWebResources/ChangePasswordContainer_FindControl.aspx /resource:Test/mainsoft/NunitWebResources/TagWithExpressionWithinAttribute.aspx /resource:Test/mainsoft/NunitWebResources/CheckBoxList_Bug377703_1.aspx /resource:Test/mainsoft/NunitWebResources/CheckBoxList_Bug377703_2.aspx /resource:Test/mainsoft/NunitWebResources/CheckBoxList_Bug578770.aspx /resource:Test/mainsoft/NunitWebResources/EnumConverter_Bug578586.aspx /resource:Test/mainsoft/NunitWebResources/ButtonColor_Bug325489.aspx /resource:Test/mainsoft/NunitWebResources/SqlDataSource_OnInit_Bug572781.aspx /resource:Test/mainsoft/NunitWebResources/FormViewPagerVisibility.aspx /resource:Test/mainsoft/NunitWebResources/OverridenControlsPropertyAndPostBack_Bug594238.aspx /resource:Test/mainsoft/NunitWebResources/GlobalizationEncodingName.aspx /resource:Test/mainsoft/NunitWebResources/CheckBoxField_Bug595568_0.aspx /resource:Test/mainsoft/NunitWebResources/CheckBoxField_Bug595568_1.aspx /resource:Test/mainsoft/NunitWebResources/CheckBoxField_Bug595568_2.aspx /resource:Test/mainsoft/NunitWebResources/CheckBoxField_Bug595568_5.aspx /resource:Test/mainsoft/NunitWebResources/CheckBoxField_Bug595568_6.aspx /resource:Test/mainsoft/NunitWebResources/CheckBoxField_Bug595568_7.aspx /resource:Test/mainsoft/NunitWebResources/GridView_Bug595567.aspx /resource:Test/mainsoft/NunitWebResources/CheckBoxList_Bug600415.aspx /resource:Test/mainsoft/NunitWebResources/BoundField_Bug646505.aspx /resource:Test/mainsoft/NunitWebResources/BoundField_Bug646505.aspx.cs /resource:Test/mainsoft/NunitWebResources/HtmlTitleCodeRender_Bug662918.aspx /resource:Test/mainsoft/NunitWebResources/App_Code/EnumConverterControl.cs,App_Code/EnumConverterControl.cs /resource:Test/mainsoft/NunitWebResources/App_Code/MyContainer.cs,App_Code/MyContainer.cs /resource:Test/mainsoft/NunitWebResources/App_Code/CustomCheckBoxColumn.cs,App_Code/CustomCheckBoxColumn.cs /resource:Test/mainsoft/NunitWebResources/App_GlobalResources/Common.resx,App_GlobalResources/Common.resx /resource:Test/mainsoft/NunitWebResources/App_GlobalResources/Common.fr-FR.resx,App_GlobalResources/Common.fr-FR.resx /resource:Test/mainsoft/NunitWebResources/App_GlobalResources/Resource1.resx,App_GlobalResources/Resource1.resx</flags>
  930. <output>net_4_x_System.Web_test.dll</output>
  931. <built_sources>System.Web/UplevelHelper.cs</built_sources>
  932. <library_output>net_4_x_System.Web_test.dll</library_output>
  933. <fx_version>4.5</fx_version>
  934. <profile>net_4_x</profile>
  935. <resources></resources>
  936. <response>./../../build/deps/net_4_x_System.Web_test.dll.response</response>
  937. </project>
  938. <project dir="class/System.Web.Services" library="System.Web.Services-net_4_x">
  939. <boot>false</boot>
  940. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -nowarn:168,169,219,414,612,649 -d:MONO_BROKEN_CONFIGURATION_DLL -resource:System.Web.Services.Description/wsdl-1.1.xsd,wsdl-1.1.xsd -resource:System.Web.Services.Description/wsdl-1.1-soap.xsd,wsdl-1.1-soap.xsd -resource:System.Web.Services.Description/web-reference.xsd,web-reference.xsd -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.EnterpriseServices.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Data.dll -r:./../../class/lib/net_4_x/plainweb/System.Web.dll -r:./../../class/lib/net_4_x/plaindesign/System.Design.dll -r:./../../class/lib/net_4_x/System.DirectoryServices.dll -r:./../../class/lib/net_4_x/System.Configuration.dll</flags>
  941. <output>System.Web.Services.dll</output>
  942. <built_sources></built_sources>
  943. <library_output>./../../class/lib/net_4_x/System.Web.Services.dll</library_output>
  944. <fx_version>4.5</fx_version>
  945. <profile>net_4_x</profile>
  946. <resources></resources>
  947. <response>System.Web.Services.dll.sources</response>
  948. </project>
  949. <project dir="class/System.Web.Services" library="System.Web.Services-tests-net_4_x">
  950. <boot>false</boot>
  951. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Web.Services.dll -nowarn:168,169,219,414,612,649 -d:MONO_BROKEN_CONFIGURATION_DLL -resource:System.Web.Services.Description/wsdl-1.1.xsd,wsdl-1.1.xsd -resource:System.Web.Services.Description/wsdl-1.1-soap.xsd,wsdl-1.1-soap.xsd -resource:System.Web.Services.Description/web-reference.xsd,web-reference.xsd -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.EnterpriseServices.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Data.dll -r:./../../class/lib/net_4_x/plainweb/System.Web.dll -r:./../../class/lib/net_4_x/plaindesign/System.Design.dll -r:./../../class/lib/net_4_x/System.DirectoryServices.dll -r:./../../class/lib/net_4_x/System.Configuration.dll -nowarn:618 -d:MONO_FEATURE_THREAD_ABORT -d:MONO_FEATURE_THREAD_SUSPEND_RESUME</flags>
  952. <output>net_4_x_System.Web.Services_test.dll</output>
  953. <built_sources></built_sources>
  954. <library_output>net_4_x_System.Web.Services_test.dll</library_output>
  955. <fx_version>4.5</fx_version>
  956. <profile>net_4_x</profile>
  957. <resources></resources>
  958. <response>./../../build/deps/net_4_x_System.Web.Services_test.dll.response</response>
  959. </project>
  960. <project dir="class/System.Design" library="System.Design-net_4_x">
  961. <boot>false</boot>
  962. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/plainweb/System.Web.dll -r:./../../class/lib/net_4_x/System.Windows.Forms.dll -r:./../../class/lib/net_4_x/System.Drawing.dll -r:./../../class/lib/net_4_x/Accessibility.dll -r:./../../class/lib/net_4_x/System.Data.dll -r:./../../class/lib/net_4_x/System.Configuration.dll</flags>
  963. <output>System.Design.dll</output>
  964. <built_sources></built_sources>
  965. <library_output>./../../class/lib/net_4_x/System.Design.dll</library_output>
  966. <fx_version>4.5</fx_version>
  967. <profile>net_4_x</profile>
  968. <resources></resources>
  969. <response>System.Design.dll.sources</response>
  970. </project>
  971. <project dir="class/System.Design" library="System.Design-tests-net_4_x">
  972. <boot>false</boot>
  973. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/plaindesign/System.Design.dll</flags>
  974. <output>net_4_x_System.Design_test.dll</output>
  975. <built_sources></built_sources>
  976. <library_output>net_4_x_System.Design_test.dll</library_output>
  977. <fx_version>4.5</fx_version>
  978. <profile>net_4_x</profile>
  979. <resources></resources>
  980. <response>./../../build/deps/net_4_x_System.Design_test.dll.response</response>
  981. </project>
  982. <project dir="class/System.Design" library="System.Design-plaindesign-net_4_x">
  983. <boot>false</boot>
  984. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/plainweb/System.Web.dll -r:./../../class/lib/net_4_x/System.Windows.Forms.dll -r:./../../class/lib/net_4_x/System.Drawing.dll -r:./../../class/lib/net_4_x/Accessibility.dll -r:./../../class/lib/net_4_x/System.Data.dll -r:./../../class/lib/net_4_x/System.Configuration.dll</flags>
  985. <output>System.Design.dll</output>
  986. <built_sources></built_sources>
  987. <library_output>./../../class/lib/net_4_x/plaindesign/System.Design.dll</library_output>
  988. <fx_version>4.5</fx_version>
  989. <profile>net_4_x</profile>
  990. <resources></resources>
  991. <response>System.Design.dll.sources</response>
  992. </project>
  993. <project dir="class/System.Design" library="System.Design-tests-net_4_x">
  994. <boot>false</boot>
  995. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/plaindesign/System.Design.dll</flags>
  996. <output>net_4_x_System.Design_test.dll</output>
  997. <built_sources></built_sources>
  998. <library_output>net_4_x_System.Design_test.dll</library_output>
  999. <fx_version>4.5</fx_version>
  1000. <profile>net_4_x</profile>
  1001. <resources></resources>
  1002. <response>./../../build/deps/net_4_x_System.Design_test.dll.response</response>
  1003. </project>
  1004. <project dir="class/System.Runtime.Remoting" library="System.Runtime.Remoting-net_4_x">
  1005. <boot>false</boot>
  1006. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Runtime.Serialization.Formatters.Soap.dll -r:./../../class/lib/net_4_x/System.Web.dll</flags>
  1007. <output>System.Runtime.Remoting.dll</output>
  1008. <built_sources></built_sources>
  1009. <library_output>./../../class/lib/net_4_x/System.Runtime.Remoting.dll</library_output>
  1010. <fx_version>4.5</fx_version>
  1011. <profile>net_4_x</profile>
  1012. <resources></resources>
  1013. <response>System.Runtime.Remoting.dll.sources</response>
  1014. </project>
  1015. <project dir="class/System.Runtime.Remoting" library="System.Runtime.Remoting-tests-net_4_x">
  1016. <boot>false</boot>
  1017. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Runtime.Remoting.dll -nowarn:618</flags>
  1018. <output>net_4_x_System.Runtime.Remoting_test.dll</output>
  1019. <built_sources></built_sources>
  1020. <library_output>net_4_x_System.Runtime.Remoting_test.dll</library_output>
  1021. <fx_version>4.5</fx_version>
  1022. <profile>net_4_x</profile>
  1023. <resources></resources>
  1024. <response>./../../build/deps/net_4_x_System.Runtime.Remoting_test.dll.response</response>
  1025. </project>
  1026. <project dir="class/System.Configuration.Install" library="System.Configuration.Install-net_4_x">
  1027. <boot>false</boot>
  1028. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Xml.dll</flags>
  1029. <output>System.Configuration.Install.dll</output>
  1030. <built_sources></built_sources>
  1031. <library_output>./../../class/lib/net_4_x/System.Configuration.Install.dll</library_output>
  1032. <fx_version>4.5</fx_version>
  1033. <profile>net_4_x</profile>
  1034. <resources></resources>
  1035. <response>System.Configuration.Install.dll.sources</response>
  1036. </project>
  1037. <project dir="class/System.Management" library="System.Management-net_4_x">
  1038. <boot>false</boot>
  1039. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Configuration.Install.dll</flags>
  1040. <output>System.Management.dll</output>
  1041. <built_sources></built_sources>
  1042. <library_output>./../../class/lib/net_4_x/System.Management.dll</library_output>
  1043. <fx_version>4.5</fx_version>
  1044. <profile>net_4_x</profile>
  1045. <resources></resources>
  1046. <response>System.Management.dll.sources</response>
  1047. </project>
  1048. <project dir="class/System.Data.OracleClient" library="System.Data.OracleClient-net_4_x">
  1049. <boot>false</boot>
  1050. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Data.dll -r:./../../class/lib/net_4_x/System.EnterpriseServices.dll -r:./../../class/lib/net_4_x/System.Drawing.dll</flags>
  1051. <output>System.Data.OracleClient.dll</output>
  1052. <built_sources></built_sources>
  1053. <library_output>./../../class/lib/net_4_x/System.Data.OracleClient.dll</library_output>
  1054. <fx_version>4.5</fx_version>
  1055. <profile>net_4_x</profile>
  1056. <resources></resources>
  1057. <response>System.Data.OracleClient.dll.sources</response>
  1058. </project>
  1059. <project dir="class/System.Data.OracleClient" library="System.Data.OracleClient-tests-net_4_x">
  1060. <boot>false</boot>
  1061. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Data.OracleClient.dll -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Data.dll -r:./../../class/lib/net_4_x/System.EnterpriseServices.dll -r:./../../class/lib/net_4_x/System.Drawing.dll /nowarn:618</flags>
  1062. <output>net_4_x_System.Data.OracleClient_test.dll</output>
  1063. <built_sources></built_sources>
  1064. <library_output>net_4_x_System.Data.OracleClient_test.dll</library_output>
  1065. <fx_version>4.5</fx_version>
  1066. <profile>net_4_x</profile>
  1067. <resources></resources>
  1068. <response>./../../build/deps/net_4_x_System.Data.OracleClient_test.dll.response</response>
  1069. </project>
  1070. <project dir="class/Cscompmgd" library="Cscompmgd-net_4_x">
  1071. <boot>false</boot>
  1072. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.dll</flags>
  1073. <output>cscompmgd.dll</output>
  1074. <built_sources></built_sources>
  1075. <library_output>./../../class/lib/net_4_x/cscompmgd.dll</library_output>
  1076. <fx_version>4.5</fx_version>
  1077. <profile>net_4_x</profile>
  1078. <resources></resources>
  1079. <response>Cscompmgd.dll.sources</response>
  1080. </project>
  1081. <project dir="class/Cscompmgd" library="Cscompmgd-tests-net_4_x">
  1082. <boot>false</boot>
  1083. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/cscompmgd.dll -r:./../../class/lib/net_4_x/System.dll -nowarn:0618 -nowarn:219 -nowarn:169</flags>
  1084. <output>net_4_x_Cscompmgd_test.dll</output>
  1085. <built_sources></built_sources>
  1086. <library_output>net_4_x_Cscompmgd_test.dll</library_output>
  1087. <fx_version>4.5</fx_version>
  1088. <profile>net_4_x</profile>
  1089. <resources></resources>
  1090. <response>./../../build/deps/net_4_x_Cscompmgd_test.dll.response</response>
  1091. </project>
  1092. <project dir="class/Commons.Xml.Relaxng" library="Commons.Xml.Relaxng-net_4_x">
  1093. <boot>false</boot>
  1094. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig /resource:resources/relaxng.rng,relaxng.rng -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Xml.dll</flags>
  1095. <output>Commons.Xml.Relaxng.dll</output>
  1096. <built_sources>Commons.Xml.Relaxng.Rnc/RncParser.cs</built_sources>
  1097. <library_output>./../../class/lib/net_4_x/Commons.Xml.Relaxng.dll</library_output>
  1098. <fx_version>4.5</fx_version>
  1099. <profile>net_4_x</profile>
  1100. <resources></resources>
  1101. <response>Commons.Xml.Relaxng.dll.sources</response>
  1102. </project>
  1103. <project dir="class/Commons.Xml.Relaxng" library="Commons.Xml.Relaxng-tests-net_4_x">
  1104. <boot>false</boot>
  1105. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/Commons.Xml.Relaxng.dll /resource:resources/relaxng.rng,relaxng.rng -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Xml.dll -nowarn:0618 -nowarn:219 -nowarn:169</flags>
  1106. <output>net_4_x_Commons.Xml.Relaxng_test.dll</output>
  1107. <built_sources>Commons.Xml.Relaxng.Rnc/RncParser.cs</built_sources>
  1108. <library_output>net_4_x_Commons.Xml.Relaxng_test.dll</library_output>
  1109. <fx_version>4.5</fx_version>
  1110. <profile>net_4_x</profile>
  1111. <resources></resources>
  1112. <response>./../../build/deps/net_4_x_Commons.Xml.Relaxng_test.dll.response</response>
  1113. </project>
  1114. <project dir="class/Mono.Messaging" library="Mono.Messaging-net_4_x">
  1115. <boot>false</boot>
  1116. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Configuration.dll</flags>
  1117. <output>Mono.Messaging.dll</output>
  1118. <built_sources></built_sources>
  1119. <library_output>./../../class/lib/net_4_x/Mono.Messaging.dll</library_output>
  1120. <fx_version>4.5</fx_version>
  1121. <profile>net_4_x</profile>
  1122. <resources></resources>
  1123. <response>Mono.Messaging.dll.sources</response>
  1124. </project>
  1125. <project dir="class/Mono.Messaging" library="Mono.Messaging-tests-net_4_x">
  1126. <boot>false</boot>
  1127. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/Mono.Messaging.dll -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Configuration.dll -nowarn:0618 -nowarn:219 -nowarn:169</flags>
  1128. <output>net_4_x_Mono.Messaging_test.dll</output>
  1129. <built_sources></built_sources>
  1130. <library_output>net_4_x_Mono.Messaging_test.dll</library_output>
  1131. <fx_version>4.5</fx_version>
  1132. <profile>net_4_x</profile>
  1133. <resources></resources>
  1134. <response>./../../build/deps/net_4_x_Mono.Messaging_test.dll.response</response>
  1135. </project>
  1136. <project dir="class/System.Messaging" library="System.Messaging-net_4_x">
  1137. <boot>false</boot>
  1138. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig /resource:System.Messaging/MessageQueue.resx -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/Mono.Messaging.dll -r:./../../class/lib/net_4_x/System.Configuration.Install.dll -r:./../../class/lib/net_4_x/System.Drawing.dll -r:./../../class/lib/net_4_x/System.Windows.Forms.dll</flags>
  1139. <output>System.Messaging.dll</output>
  1140. <built_sources></built_sources>
  1141. <library_output>./../../class/lib/net_4_x/System.Messaging.dll</library_output>
  1142. <fx_version>4.5</fx_version>
  1143. <profile>net_4_x</profile>
  1144. <resources></resources>
  1145. <response>System.Messaging.dll.sources</response>
  1146. </project>
  1147. <project dir="class/System.Messaging" library="System.Messaging-tests-net_4_x">
  1148. <boot>false</boot>
  1149. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Messaging.dll /resource:System.Messaging/MessageQueue.resx -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/Mono.Messaging.dll -r:./../../class/lib/net_4_x/System.Configuration.Install.dll -r:./../../class/lib/net_4_x/System.Drawing.dll -r:./../../class/lib/net_4_x/System.Windows.Forms.dll -nowarn:0618 -nowarn:219 -nowarn:169</flags>
  1150. <output>net_4_x_System.Messaging_test.dll</output>
  1151. <built_sources></built_sources>
  1152. <library_output>net_4_x_System.Messaging_test.dll</library_output>
  1153. <fx_version>4.5</fx_version>
  1154. <profile>net_4_x</profile>
  1155. <resources></resources>
  1156. <response>./../../build/deps/net_4_x_System.Messaging_test.dll.response</response>
  1157. </project>
  1158. <project dir="class/System.ServiceProcess" library="System.ServiceProcess-net_4_x">
  1159. <boot>false</boot>
  1160. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig /nowarn:0618 -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Configuration.Install.dll -r:./../../class/lib/net_4_x/System.Windows.Forms.dll</flags>
  1161. <output>System.ServiceProcess.dll</output>
  1162. <built_sources></built_sources>
  1163. <library_output>./../../class/lib/net_4_x/System.ServiceProcess.dll</library_output>
  1164. <fx_version>4.5</fx_version>
  1165. <profile>net_4_x</profile>
  1166. <resources></resources>
  1167. <response>System.ServiceProcess.dll.sources</response>
  1168. </project>
  1169. <project dir="class/System.ServiceProcess" library="System.ServiceProcess-tests-net_4_x">
  1170. <boot>false</boot>
  1171. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.ServiceProcess.dll /nowarn:0618 -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Configuration.Install.dll -r:./../../class/lib/net_4_x/System.Windows.Forms.dll</flags>
  1172. <output>net_4_x_System.ServiceProcess_test.dll</output>
  1173. <built_sources></built_sources>
  1174. <library_output>net_4_x_System.ServiceProcess_test.dll</library_output>
  1175. <fx_version>4.5</fx_version>
  1176. <profile>net_4_x</profile>
  1177. <resources></resources>
  1178. <response>./../../build/deps/net_4_x_System.ServiceProcess_test.dll.response</response>
  1179. </project>
  1180. <project dir="class/System.Drawing.Design" library="System.Drawing.Design-net_4_x">
  1181. <boot>false</boot>
  1182. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Drawing.dll -r:./../../class/lib/net_4_x/System.Windows.Forms.dll</flags>
  1183. <output>System.Drawing.Design.dll</output>
  1184. <built_sources></built_sources>
  1185. <library_output>./../../class/lib/net_4_x/System.Drawing.Design.dll</library_output>
  1186. <fx_version>4.5</fx_version>
  1187. <profile>net_4_x</profile>
  1188. <resources></resources>
  1189. <response>System.Drawing.Design.dll.sources</response>
  1190. </project>
  1191. <project dir="class/ICSharpCode.SharpZipLib" library="ICSharpCode.SharpZipLib-net_4_x">
  1192. <boot>false</boot>
  1193. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -warn:1 -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Xml.dll</flags>
  1194. <output>ICSharpCode.SharpZipLib.dll</output>
  1195. <built_sources></built_sources>
  1196. <library_output>./../../class/lib/net_4_x/ICSharpCode.SharpZipLib.dll</library_output>
  1197. <fx_version>4.5</fx_version>
  1198. <profile>net_4_x</profile>
  1199. <resources></resources>
  1200. <response>ICSharpCode.SharpZipLib.dll.sources</response>
  1201. </project>
  1202. <project dir="class/IBM.Data.DB2" library="IBM.Data.DB2-net_4_x">
  1203. <boot>false</boot>
  1204. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig /unsafe -warn:1 -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Data.dll</flags>
  1205. <output>IBM.Data.DB2.dll</output>
  1206. <built_sources></built_sources>
  1207. <library_output>./../../class/lib/net_4_x/IBM.Data.DB2.dll</library_output>
  1208. <fx_version>4.5</fx_version>
  1209. <profile>net_4_x</profile>
  1210. <resources></resources>
  1211. <response>IBM.Data.DB2.dll.sources</response>
  1212. </project>
  1213. <project dir="class/CustomMarshalers" library="CustomMarshalers-net_4_x">
  1214. <boot>false</boot>
  1215. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.dll</flags>
  1216. <output>CustomMarshalers.dll</output>
  1217. <built_sources></built_sources>
  1218. <library_output>./../../class/lib/net_4_x/CustomMarshalers.dll</library_output>
  1219. <fx_version>4.5</fx_version>
  1220. <profile>net_4_x</profile>
  1221. <resources></resources>
  1222. <response>CustomMarshalers.dll.sources</response>
  1223. </project>
  1224. <project dir="class/SystemWebTestShim" library="SystemWebTestShim-net_4_x">
  1225. <boot>false</boot>
  1226. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.Web.dll -r:./../../class/lib/net_4_x/System.dll</flags>
  1227. <output>SystemWebTestShim.dll</output>
  1228. <built_sources></built_sources>
  1229. <library_output>./../../class/lib/net_4_x/SystemWebTestShim.dll</library_output>
  1230. <fx_version>4.5</fx_version>
  1231. <profile>net_4_x</profile>
  1232. <resources></resources>
  1233. <response>SystemWebTestShim.dll.sources</response>
  1234. </project>
  1235. <project dir="class/System.ServiceModel.Internals" library="System.ServiceModel.Internals-net_4_x">
  1236. <boot>false</boot>
  1237. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig /unsafe -d:MONO_FEATURE_MULTIPLE_APPDOMAINS -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Configuration.dll</flags>
  1238. <output>System.ServiceModel.Internals.dll</output>
  1239. <built_sources></built_sources>
  1240. <library_output>./../../class/lib/net_4_x/System.ServiceModel.Internals.dll</library_output>
  1241. <fx_version>4.5</fx_version>
  1242. <profile>net_4_x</profile>
  1243. <resources></resources>
  1244. <response>System.ServiceModel.Internals.dll.sources</response>
  1245. </project>
  1246. <project dir="class/SMDiagnostics" library="SMDiagnostics-net_4_x">
  1247. <boot>false</boot>
  1248. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.ServiceModel.Internals.dll -r:./../../class/lib/net_4_x/System.Configuration.dll</flags>
  1249. <output>SMDiagnostics.dll</output>
  1250. <built_sources></built_sources>
  1251. <library_output>./../../class/lib/net_4_x/SMDiagnostics.dll</library_output>
  1252. <fx_version>4.5</fx_version>
  1253. <profile>net_4_x</profile>
  1254. <resources></resources>
  1255. <response>SMDiagnostics.dll.sources</response>
  1256. </project>
  1257. <project dir="class/System.Runtime.Serialization" library="System.Runtime.Serialization-net_4_x">
  1258. <boot>false</boot>
  1259. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -unsafe -d:NO_DYNAMIC_CODEGEN /nowarn:168,169,219,414 /d:NET_3_0 -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.ServiceModel.Internals.dll -r:./../../class/lib/net_4_x/SMDiagnostics.dll -r:./../../class/lib/net_4_x/System.Data.dll -r:./../../class/lib/net_4_x/System.Configuration.dll</flags>
  1260. <output>System.Runtime.Serialization.dll</output>
  1261. <built_sources></built_sources>
  1262. <library_output>./../../class/lib/net_4_x/System.Runtime.Serialization.dll</library_output>
  1263. <fx_version>4.5</fx_version>
  1264. <profile>net_4_x</profile>
  1265. <resources></resources>
  1266. <response>./../../build/deps/net_4_x_System.Runtime.Serialization.dll.sources</response>
  1267. </project>
  1268. <project dir="class/System.Runtime.Serialization" library="System.Runtime.Serialization-tests-net_4_x">
  1269. <boot>false</boot>
  1270. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Runtime.Serialization.dll -unsafe -d:NO_DYNAMIC_CODEGEN /nowarn:168,169,219,414 /d:NET_3_0 -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.ServiceModel.Internals.dll -r:./../../class/lib/net_4_x/SMDiagnostics.dll -r:./../../class/lib/net_4_x/System.Data.dll -r:./../../class/lib/net_4_x/System.Configuration.dll /resource:Test/Resources/WSDL/collections.wsdl /resource:Test/Resources/WSDL/custom-collections.wsdl</flags>
  1271. <output>net_4_x_System.Runtime.Serialization_test.dll</output>
  1272. <built_sources></built_sources>
  1273. <library_output>net_4_x_System.Runtime.Serialization_test.dll</library_output>
  1274. <fx_version>4.5</fx_version>
  1275. <profile>net_4_x</profile>
  1276. <resources></resources>
  1277. <response>./../../build/deps/net_4_x_System.Runtime.Serialization_test.dll.response</response>
  1278. </project>
  1279. <project dir="class/System.Xml.Linq" library="System.Xml.Linq-net_4_x">
  1280. <boot>false</boot>
  1281. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -d:FEATURE_SERIALIZATION -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Runtime.Serialization.dll</flags>
  1282. <output>System.Xml.Linq.dll</output>
  1283. <built_sources></built_sources>
  1284. <library_output>./../../class/lib/net_4_x/System.Xml.Linq.dll</library_output>
  1285. <fx_version>4.5</fx_version>
  1286. <profile>net_4_x</profile>
  1287. <resources></resources>
  1288. <response>System.Xml.Linq.dll.sources</response>
  1289. </project>
  1290. <project dir="class/System.Xml.Linq" library="System.Xml.Linq-tests-net_4_x">
  1291. <boot>false</boot>
  1292. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Xml.Linq.dll -d:FEATURE_SERIALIZATION -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Runtime.Serialization.dll</flags>
  1293. <output>net_4_x_System.Xml.Linq_test.dll</output>
  1294. <built_sources></built_sources>
  1295. <library_output>net_4_x_System.Xml.Linq_test.dll</library_output>
  1296. <fx_version>4.5</fx_version>
  1297. <profile>net_4_x</profile>
  1298. <resources></resources>
  1299. <response>./../../build/deps/net_4_x_System.Xml.Linq_test.dll.response</response>
  1300. </project>
  1301. <project dir="class/System.Data.Linq" library="System.Data.Linq-net_4_x">
  1302. <boot>false</boot>
  1303. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig /resource:./src/DbLinq/Schema/Dbml/DbmlSchema.xsd,DbLinq.Schema.Dbml.DbmlSchema.xsd /d:MONO_STRICT /d:MONO_DEPLOY -warn:1 -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Data.dll -r:./../../class/lib/net_4_x/System.Runtime.Serialization.dll</flags>
  1304. <output>System.Data.Linq.dll</output>
  1305. <built_sources></built_sources>
  1306. <library_output>./../../class/lib/net_4_x/System.Data.Linq.dll</library_output>
  1307. <fx_version>4.5</fx_version>
  1308. <profile>net_4_x</profile>
  1309. <resources></resources>
  1310. <response>System.Data.Linq.dll.sources</response>
  1311. </project>
  1312. <project dir="class/System.Data.Linq" library="System.Data.Linq-tests-net_4_x">
  1313. <boot>false</boot>
  1314. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Data.Linq.dll /resource:./src/DbLinq/Schema/Dbml/DbmlSchema.xsd,DbLinq.Schema.Dbml.DbmlSchema.xsd /d:MONO_STRICT /d:MONO_DEPLOY -warn:1 -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Data.dll -r:./../../class/lib/net_4_x/System.Runtime.Serialization.dll</flags>
  1315. <output>net_4_x_System.Data.Linq_test.dll</output>
  1316. <built_sources></built_sources>
  1317. <library_output>net_4_x_System.Data.Linq_test.dll</library_output>
  1318. <fx_version>4.5</fx_version>
  1319. <profile>net_4_x</profile>
  1320. <resources></resources>
  1321. <response>./../../build/deps/net_4_x_System.Data.Linq_test.dll.response</response>
  1322. </project>
  1323. <project dir="class/System.Web.Abstractions" library="System.Web.Abstractions-net_4_x">
  1324. <boot>false</boot>
  1325. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Web.dll</flags>
  1326. <output>System.Web.Abstractions.dll</output>
  1327. <built_sources></built_sources>
  1328. <library_output>./../../class/lib/net_4_x/System.Web.Abstractions.dll</library_output>
  1329. <fx_version>4.5</fx_version>
  1330. <profile>net_4_x</profile>
  1331. <resources></resources>
  1332. <response>System.Web.Abstractions.dll.sources</response>
  1333. </project>
  1334. <project dir="class/System.Web.Abstractions" library="System.Web.Abstractions-tests-net_4_x">
  1335. <boot>false</boot>
  1336. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Web.Abstractions.dll -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Web.dll</flags>
  1337. <output>net_4_x_System.Web.Abstractions_test.dll</output>
  1338. <built_sources></built_sources>
  1339. <library_output>net_4_x_System.Web.Abstractions_test.dll</library_output>
  1340. <fx_version>4.5</fx_version>
  1341. <profile>net_4_x</profile>
  1342. <resources></resources>
  1343. <response>./../../build/deps/net_4_x_System.Web.Abstractions_test.dll.response</response>
  1344. </project>
  1345. <project dir="class/System.Web.Routing" library="System.Web.Routing-net_4_x">
  1346. <boot>false</boot>
  1347. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Web.dll -r:./../../class/lib/net_4_x/System.Web.Abstractions.dll</flags>
  1348. <output>System.Web.Routing.dll</output>
  1349. <built_sources></built_sources>
  1350. <library_output>./../../class/lib/net_4_x/System.Web.Routing.dll</library_output>
  1351. <fx_version>4.5</fx_version>
  1352. <profile>net_4_x</profile>
  1353. <resources></resources>
  1354. <response>System.Web.Routing.dll.sources</response>
  1355. </project>
  1356. <project dir="class/System.Web.Routing" library="System.Web.Routing-tests-net_4_x">
  1357. <boot>false</boot>
  1358. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Web.Routing.dll -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Web.dll -r:./../../class/lib/net_4_x/System.Web.Abstractions.dll</flags>
  1359. <output>net_4_x_System.Web.Routing_test.dll</output>
  1360. <built_sources></built_sources>
  1361. <library_output>net_4_x_System.Web.Routing_test.dll</library_output>
  1362. <fx_version>4.5</fx_version>
  1363. <profile>net_4_x</profile>
  1364. <resources></resources>
  1365. <response>./../../build/deps/net_4_x_System.Web.Routing_test.dll.response</response>
  1366. </project>
  1367. <project dir="class/System.Runtime.DurableInstancing" library="System.Runtime.DurableInstancing-net_4_x">
  1368. <boot>false</boot>
  1369. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Xml.Linq.dll -r:./../../class/lib/net_4_x/System.Transactions.dll -r:./../../class/lib/net_4_x/System.ServiceModel.Internals.dll -r:./../../class/lib/net_4_x/System.Runtime.Serialization.dll</flags>
  1370. <output>System.Runtime.DurableInstancing.dll</output>
  1371. <built_sources></built_sources>
  1372. <library_output>./../../class/lib/net_4_x/System.Runtime.DurableInstancing.dll</library_output>
  1373. <fx_version>4.5</fx_version>
  1374. <profile>net_4_x</profile>
  1375. <resources></resources>
  1376. <response>System.Runtime.DurableInstancing.dll.sources</response>
  1377. </project>
  1378. <project dir="class/System.Runtime.DurableInstancing" library="System.Runtime.DurableInstancing-tests-net_4_x">
  1379. <boot>false</boot>
  1380. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Runtime.DurableInstancing.dll -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Xml.Linq.dll -r:./../../class/lib/net_4_x/System.Transactions.dll -r:./../../class/lib/net_4_x/System.ServiceModel.Internals.dll -r:./../../class/lib/net_4_x/System.Runtime.Serialization.dll</flags>
  1381. <output>net_4_x_System.Runtime.DurableInstancing_test.dll</output>
  1382. <built_sources></built_sources>
  1383. <library_output>net_4_x_System.Runtime.DurableInstancing_test.dll</library_output>
  1384. <fx_version>4.5</fx_version>
  1385. <profile>net_4_x</profile>
  1386. <resources></resources>
  1387. <response>./../../build/deps/net_4_x_System.Runtime.DurableInstancing_test.dll.response</response>
  1388. </project>
  1389. <project dir="class/System.IdentityModel" library="System.IdentityModel-net_4_x">
  1390. <boot>false</boot>
  1391. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig /d:NET_3_0 -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Security.dll -r:./../../class/lib/net_4_x/System.Configuration.dll -r:./../../class/lib/net_4_x/Mono.Security.dll -r:./../../class/lib/net_4_x/System.Runtime.Serialization.dll -r:./../../class/lib/net_4_x/System.Web.dll -r:./../../class/lib/net_4_x/System.Web.ApplicationServices.dll</flags>
  1392. <output>System.IdentityModel.dll</output>
  1393. <built_sources></built_sources>
  1394. <library_output>./../../class/lib/net_4_x/System.IdentityModel.dll</library_output>
  1395. <fx_version>4.5</fx_version>
  1396. <profile>net_4_x</profile>
  1397. <resources></resources>
  1398. <response>System.IdentityModel.dll.sources</response>
  1399. </project>
  1400. <project dir="class/System.IdentityModel" library="System.IdentityModel-tests-net_4_x">
  1401. <boot>false</boot>
  1402. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.IdentityModel.dll /d:NET_3_0 -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Security.dll -r:./../../class/lib/net_4_x/System.Configuration.dll -r:./../../class/lib/net_4_x/Mono.Security.dll -r:./../../class/lib/net_4_x/System.Runtime.Serialization.dll -r:./../../class/lib/net_4_x/System.Web.dll -r:./../../class/lib/net_4_x/System.Web.ApplicationServices.dll</flags>
  1403. <output>net_4_x_System.IdentityModel_test.dll</output>
  1404. <built_sources></built_sources>
  1405. <library_output>net_4_x_System.IdentityModel_test.dll</library_output>
  1406. <fx_version>4.5</fx_version>
  1407. <profile>net_4_x</profile>
  1408. <resources></resources>
  1409. <response>./../../build/deps/net_4_x_System.IdentityModel_test.dll.response</response>
  1410. </project>
  1411. <project dir="class/System.IdentityModel.Selectors" library="System.IdentityModel.Selectors-net_4_x">
  1412. <boot>false</boot>
  1413. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig /d:NET_3_0 -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Security.dll -r:./../../class/lib/net_4_x/System.Runtime.Serialization.dll -r:./../../class/lib/net_4_x/System.IdentityModel.dll</flags>
  1414. <output>System.IdentityModel.Selectors.dll</output>
  1415. <built_sources></built_sources>
  1416. <library_output>./../../class/lib/net_4_x/System.IdentityModel.Selectors.dll</library_output>
  1417. <fx_version>4.5</fx_version>
  1418. <profile>net_4_x</profile>
  1419. <resources></resources>
  1420. <response>System.IdentityModel.Selectors.dll.sources</response>
  1421. </project>
  1422. <project dir="class/System.ServiceModel" library="System.ServiceModel-net_4_x">
  1423. <boot>false</boot>
  1424. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig /nowarn:414,169,67,3005,436,219,618 /unsafe /d:TRACE /resource:resources/WS-Addressing.schema /resource:resources/ws-addr.xsd /d:NET_3_0 -define:HAS_ACTIVATION -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Runtime.Serialization.dll -r:./../../class/lib/net_4_x/System.Configuration.dll -r:./../../class/lib/net_4_x/System.Data.dll -r:./../../class/lib/net_4_x/System.Security.dll -r:./../../class/lib/net_4_x/System.IdentityModel.dll -r:./../../class/lib/net_4_x/System.IdentityModel.Selectors.dll -r:./../../class/lib/net_4_x/System.Transactions.dll -r:./../../class/lib/net_4_x/System.Messaging.dll -r:./../../class/lib/net_4_x/System.Web.Services.dll -r:./../../class/lib/net_4_x/Mono.Security.dll -r:./../../class/lib/net_4_x/System.Web.dll -r:./../../class/lib/net_4_x/System.ServiceModel.Activation.dll -r:./../../class/lib/net_4_x/System.Web.ApplicationServices.dll</flags>
  1425. <output>System.ServiceModel.dll</output>
  1426. <built_sources></built_sources>
  1427. <library_output>./../../class/lib/net_4_x/System.ServiceModel.dll</library_output>
  1428. <fx_version>4.5</fx_version>
  1429. <profile>net_4_x</profile>
  1430. <resources></resources>
  1431. <response>System.ServiceModel.dll.sources</response>
  1432. </project>
  1433. <project dir="class/System.ServiceModel" library="System.ServiceModel-tests-net_4_x">
  1434. <boot>false</boot>
  1435. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/plainservice/System.ServiceModel.dll /nowarn:414,169,67,3005,436,219,618 /unsafe /d:TRACE /resource:resources/WS-Addressing.schema /resource:resources/ws-addr.xsd /d:NET_3_0 -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Runtime.Serialization.dll -r:./../../class/lib/net_4_x/System.Configuration.dll -r:./../../class/lib/net_4_x/System.Data.dll -r:./../../class/lib/net_4_x/System.Security.dll -r:./../../class/lib/net_4_x/System.IdentityModel.dll -r:./../../class/lib/net_4_x/System.IdentityModel.Selectors.dll -r:./../../class/lib/net_4_x/System.Transactions.dll -r:./../../class/lib/net_4_x/System.Messaging.dll -r:./../../class/lib/net_4_x/System.Web.Services.dll -r:./../../class/lib/net_4_x/Mono.Security.dll -r:./../../class/lib/net_4_x/System.Web.dll -r:./../../class/lib/net_4_x/System.Web.ApplicationServices.dll</flags>
  1436. <output>net_4_x_System.ServiceModel_test.dll</output>
  1437. <built_sources></built_sources>
  1438. <library_output>net_4_x_System.ServiceModel_test.dll</library_output>
  1439. <fx_version>4.5</fx_version>
  1440. <profile>net_4_x</profile>
  1441. <resources></resources>
  1442. <response>./../../build/deps/net_4_x_System.ServiceModel_test.dll.response</response>
  1443. </project>
  1444. <project dir="class/System.ServiceModel" library="System.ServiceModel-plainservice-net_4_x">
  1445. <boot>false</boot>
  1446. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig /nowarn:414,169,67,3005,436,219,618 /unsafe /d:TRACE /resource:resources/WS-Addressing.schema /resource:resources/ws-addr.xsd /d:NET_3_0 -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Runtime.Serialization.dll -r:./../../class/lib/net_4_x/System.Configuration.dll -r:./../../class/lib/net_4_x/System.Data.dll -r:./../../class/lib/net_4_x/System.Security.dll -r:./../../class/lib/net_4_x/System.IdentityModel.dll -r:./../../class/lib/net_4_x/System.IdentityModel.Selectors.dll -r:./../../class/lib/net_4_x/System.Transactions.dll -r:./../../class/lib/net_4_x/System.Messaging.dll -r:./../../class/lib/net_4_x/System.Web.Services.dll -r:./../../class/lib/net_4_x/Mono.Security.dll -r:./../../class/lib/net_4_x/System.Web.dll -r:./../../class/lib/net_4_x/System.Web.ApplicationServices.dll</flags>
  1447. <output>System.ServiceModel.dll</output>
  1448. <built_sources></built_sources>
  1449. <library_output>./../../class/lib/net_4_x/plainservice/System.ServiceModel.dll</library_output>
  1450. <fx_version>4.5</fx_version>
  1451. <profile>net_4_x</profile>
  1452. <resources></resources>
  1453. <response>System.ServiceModel.dll.sources</response>
  1454. </project>
  1455. <project dir="class/System.ServiceModel" library="System.ServiceModel-tests-net_4_x">
  1456. <boot>false</boot>
  1457. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/plainservice/System.ServiceModel.dll /nowarn:414,169,67,3005,436,219,618 /unsafe /d:TRACE /resource:resources/WS-Addressing.schema /resource:resources/ws-addr.xsd /d:NET_3_0 -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Runtime.Serialization.dll -r:./../../class/lib/net_4_x/System.Configuration.dll -r:./../../class/lib/net_4_x/System.Data.dll -r:./../../class/lib/net_4_x/System.Security.dll -r:./../../class/lib/net_4_x/System.IdentityModel.dll -r:./../../class/lib/net_4_x/System.IdentityModel.Selectors.dll -r:./../../class/lib/net_4_x/System.Transactions.dll -r:./../../class/lib/net_4_x/System.Messaging.dll -r:./../../class/lib/net_4_x/System.Web.Services.dll -r:./../../class/lib/net_4_x/Mono.Security.dll -r:./../../class/lib/net_4_x/System.Web.dll -r:./../../class/lib/net_4_x/System.Web.ApplicationServices.dll</flags>
  1458. <output>net_4_x_System.ServiceModel_test.dll</output>
  1459. <built_sources></built_sources>
  1460. <library_output>net_4_x_System.ServiceModel_test.dll</library_output>
  1461. <fx_version>4.5</fx_version>
  1462. <profile>net_4_x</profile>
  1463. <resources></resources>
  1464. <response>./../../build/deps/net_4_x_System.ServiceModel_test.dll.response</response>
  1465. </project>
  1466. <project dir="class/System.Web.Extensions" library="System.Web.Extensions-net_4_x">
  1467. <boot>false</boot>
  1468. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -unsafe -define:NET_3_5 -define:SYSTEM_WEB_EXTENSIONS /resource:../MicrosoftAjaxLibrary/System.Web.Extensions/3.5.0.0/3.5.21022.8/MicrosoftAjax.debug.js /resource:../MicrosoftAjaxLibrary/System.Web.Extensions/3.5.0.0/3.5.21022.8/MicrosoftAjax.js /resource:../MicrosoftAjaxLibrary/System.Web.Extensions/3.5.0.0/3.5.21022.8/MicrosoftAjaxTimer.debug.js /resource:../MicrosoftAjaxLibrary/System.Web.Extensions/3.5.0.0/3.5.21022.8/MicrosoftAjaxTimer.js /resource:../MicrosoftAjaxLibrary/System.Web.Extensions/3.5.0.0/3.5.21022.8/MicrosoftAjaxWebForms.debug.js /resource:../MicrosoftAjaxLibrary/System.Web.Extensions/3.5.0.0/3.5.21022.8/MicrosoftAjaxWebForms.js -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Drawing.dll -r:./../../class/lib/net_4_x/System.Data.dll -r:./../../class/lib/net_4_x/System.Data.Linq.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Web.dll -r:./../../class/lib/net_4_x/System.Web.Services.dll -r:./../../class/lib/net_4_x/System.Configuration.dll -r:./../../class/lib/net_4_x/System.EnterpriseServices.dll -r:./../../class/lib/net_4_x/System.ServiceModel.dll -r:./../../class/lib/net_4_x/System.Web.ApplicationServices.dll</flags>
  1469. <output>System.Web.Extensions.dll</output>
  1470. <built_sources></built_sources>
  1471. <library_output>./../../class/lib/net_4_x/System.Web.Extensions.dll</library_output>
  1472. <fx_version>4.5</fx_version>
  1473. <profile>net_4_x</profile>
  1474. <resources></resources>
  1475. <response>System.Web.Extensions.dll.sources</response>
  1476. </project>
  1477. <project dir="class/System.Web.Extensions" library="System.Web.Extensions-tests-net_4_x">
  1478. <boot>false</boot>
  1479. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Web.Extensions.dll -unsafe -define:NET_3_5 -define:SYSTEM_WEB_EXTENSIONS /resource:../MicrosoftAjaxLibrary/System.Web.Extensions/3.5.0.0/3.5.21022.8/MicrosoftAjax.debug.js /resource:../MicrosoftAjaxLibrary/System.Web.Extensions/3.5.0.0/3.5.21022.8/MicrosoftAjax.js /resource:../MicrosoftAjaxLibrary/System.Web.Extensions/3.5.0.0/3.5.21022.8/MicrosoftAjaxTimer.debug.js /resource:../MicrosoftAjaxLibrary/System.Web.Extensions/3.5.0.0/3.5.21022.8/MicrosoftAjaxTimer.js /resource:../MicrosoftAjaxLibrary/System.Web.Extensions/3.5.0.0/3.5.21022.8/MicrosoftAjaxWebForms.debug.js /resource:../MicrosoftAjaxLibrary/System.Web.Extensions/3.5.0.0/3.5.21022.8/MicrosoftAjaxWebForms.js -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Drawing.dll -r:./../../class/lib/net_4_x/System.Data.dll -r:./../../class/lib/net_4_x/System.Data.Linq.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Web.dll -r:./../../class/lib/net_4_x/System.Web.Services.dll -r:./../../class/lib/net_4_x/System.Configuration.dll -r:./../../class/lib/net_4_x/System.EnterpriseServices.dll -r:./../../class/lib/net_4_x/System.ServiceModel.dll -r:./../../class/lib/net_4_x/System.Web.ApplicationServices.dll -doc:net_4_x_System.Web.Extensions_test.xml -nowarn:219,169,1591 /resource:Test/resources/Web.mono.config /resource:Test/resources/profile.config.4.x /resource:Test/resources/ListViewSort.aspx /resource:Test/resources/ListViewTest.aspx /resource:Test/resources/ListViewTotalRowCount_Bug535701_1.aspx /resource:Test/resources/ListViewTotalRowCount_Bug535701_2.aspx /resource:Test/resources/ListViewTotalRowCount_Bug604053.aspx /resource:../System.Web/Test/mainsoft/NunitWeb/NunitWeb/Resources/MyPage.aspx.cs /resource:../System.Web/Test/mainsoft/NunitWeb/NunitWeb/Resources/Global.asax /resource:../System.Web/Test/mainsoft/NunitWeb/NunitWeb/Resources/My.ashx /resource:../System.Web/Test/mainsoft/NunitWeb/NunitWeb/Resources/MyPage.aspx /resource:../System.Web/Test/mainsoft/NunitWeb/NunitWeb/Resources/MyPageWithDerivedMaster.aspx /resource:../System.Web/Test/mainsoft/NunitWeb/NunitWeb/Resources/MyPageWithMaster.aspx /resource:../System.Web/Test/mainsoft/NunitWeb/NunitWeb/Resources/MyPageWithMasterInvalidPlaceHolder.aspx /resource:../System.Web/Test/mainsoft/NunitWeb/NunitWeb/Resources/My.master /resource:../System.Web/Test/mainsoft/NunitWeb/NunitWeb/Resources/MyDerived.master -define:SYSTEM_WEB_EXTENSIONS</flags>
  1480. <output>net_4_x_System.Web.Extensions_test.dll</output>
  1481. <built_sources></built_sources>
  1482. <library_output>net_4_x_System.Web.Extensions_test.dll</library_output>
  1483. <fx_version>4.5</fx_version>
  1484. <profile>net_4_x</profile>
  1485. <resources></resources>
  1486. <response>./../../build/deps/net_4_x_System.Web.Extensions_test.dll.response</response>
  1487. </project>
  1488. <project dir="class/System.Web.Extensions.Design" library="System.Web.Extensions.Design-net_4_x">
  1489. <boot>false</boot>
  1490. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -define:NET_3_5 -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Design.dll -r:./../../class/lib/net_4_x/System.Drawing.dll -r:./../../class/lib/net_4_x/System.Windows.Forms.dll</flags>
  1491. <output>System.Web.Extensions.Design.dll</output>
  1492. <built_sources></built_sources>
  1493. <library_output>./../../class/lib/net_4_x/System.Web.Extensions.Design.dll</library_output>
  1494. <fx_version>4.5</fx_version>
  1495. <profile>net_4_x</profile>
  1496. <resources></resources>
  1497. <response>System.Web.Extensions.Design.dll.sources</response>
  1498. </project>
  1499. <project dir="class/System.Web.DynamicData" library="System.Web.DynamicData-net_4_x">
  1500. <boot>false</boot>
  1501. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.ComponentModel.DataAnnotations.dll -r:./../../class/lib/net_4_x/System.Data.dll -r:./../../class/lib/net_4_x/System.Data.Linq.dll -r:./../../class/lib/net_4_x/System.Drawing.dll -r:./../../class/lib/net_4_x/System.Web.dll -r:./../../class/lib/net_4_x/System.Web.Extensions.dll -r:./../../class/lib/net_4_x/System.Web.Abstractions.dll -r:./../../class/lib/net_4_x/System.Web.Routing.dll -r:./../../class/lib/net_4_x/System.Web.ApplicationServices.dll</flags>
  1502. <output>System.Web.DynamicData.dll</output>
  1503. <built_sources></built_sources>
  1504. <library_output>./../../class/lib/net_4_x/System.Web.DynamicData.dll</library_output>
  1505. <fx_version>4.5</fx_version>
  1506. <profile>net_4_x</profile>
  1507. <resources></resources>
  1508. <response>System.Web.DynamicData.dll.sources</response>
  1509. </project>
  1510. <project dir="class/System.Web.DynamicData" library="System.Web.DynamicData-tests-net_4_x">
  1511. <boot>false</boot>
  1512. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Web.DynamicData.dll -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.ComponentModel.DataAnnotations.dll -r:./../../class/lib/net_4_x/System.Data.dll -r:./../../class/lib/net_4_x/System.Data.Linq.dll -r:./../../class/lib/net_4_x/System.Drawing.dll -r:./../../class/lib/net_4_x/System.Web.dll -r:./../../class/lib/net_4_x/System.Web.Extensions.dll -r:./../../class/lib/net_4_x/System.Web.Abstractions.dll -r:./../../class/lib/net_4_x/System.Web.Routing.dll -r:./../../class/lib/net_4_x/System.Web.ApplicationServices.dll /resource:Test/WebPages/DynamicData/Content/FilterUserControl.ascx,MonoTests.WebPages.DynamicData.Content.FilterUserControl.ascx /resource:Test/WebPages/DynamicData/Content/FilterUserControl.ascx.cs,MonoTests.WebPages.DynamicData.Content.FilterUserControl.ascx.cs /resource:Test/WebPages/DynamicData/Content/GridViewPager.ascx,MonoTests.WebPages.DynamicData.Content.GridViewPager.ascx /resource:Test/WebPages/DynamicData/Content/GridViewPager.ascx.cs,MonoTests.WebPages.DynamicData.Content.GridViewPager.ascx.cs /resource:Test/WebPages/DynamicData/Content/Images/Back.gif,MonoTests.WebPages.DynamicData.Content.Images.Back.gif /resource:Test/WebPages/DynamicData/Content/Images/header_back.gif,MonoTests.WebPages.DynamicData.Content.Images.header_back.gif /resource:Test/WebPages/DynamicData/Content/Images/PgFirst.gif,MonoTests.WebPages.DynamicData.Content.Images.PgFirst.gif /resource:Test/WebPages/DynamicData/Content/Images/PgLast.gif,MonoTests.WebPages.DynamicData.Content.Images.PgLast.gif /resource:Test/WebPages/DynamicData/Content/Images/PgNext.gif,MonoTests.WebPages.DynamicData.Content.Images.PgNext.gif /resource:Test/WebPages/DynamicData/Content/Images/PgPrev.gif,MonoTests.WebPages.DynamicData.Content.Images.PgPrev.gif /resource:Test/WebPages/DynamicData/Content/Images/plus.gif,MonoTests.WebPages.DynamicData.Content.Images.plus.gif /resource:Test/WebPages/DynamicData/FieldTemplates/Boolean.ascx,MonoTests.WebPages.DynamicData.FieldTemplates.Boolean.ascx /resource:Test/WebPages/DynamicData/FieldTemplates/Boolean.ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates.Boolean.ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates/Boolean_Edit.ascx,MonoTests.WebPages.DynamicData.FieldTemplates.Boolean_Edit.ascx /resource:Test/WebPages/DynamicData/FieldTemplates/Boolean_Edit.ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates.Boolean_Edit.ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates/Children.ascx,MonoTests.WebPages.DynamicData.FieldTemplates.Children.ascx /resource:Test/WebPages/DynamicData/FieldTemplates/Children.ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates.Children.ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates/CustomColor.ascx,MonoTests.WebPages.DynamicData.FieldTemplates.CustomColor.ascx /resource:Test/WebPages/DynamicData/FieldTemplates/CustomColor.ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates.CustomColor.ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates/CustomFieldTemplate.ascx,MonoTests.WebPages.DynamicData.FieldTemplates.CustomFieldTemplate.ascx /resource:Test/WebPages/DynamicData/FieldTemplates/CustomFieldTemplate.ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates.CustomFieldTemplate.ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates/DateTime.ascx,MonoTests.WebPages.DynamicData.FieldTemplates.DateTime.ascx /resource:Test/WebPages/DynamicData/FieldTemplates/DateTime.ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates.DateTime.ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates/DateTime_Edit.ascx,MonoTests.WebPages.DynamicData.FieldTemplates.DateTime_Edit.ascx /resource:Test/WebPages/DynamicData/FieldTemplates/DateTime_Edit.ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates.DateTime_Edit.ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates/Decimal_Edit.ascx,MonoTests.WebPages.DynamicData.FieldTemplates.Decimal_Edit.ascx /resource:Test/WebPages/DynamicData/FieldTemplates/Decimal_Edit.ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates.Decimal_Edit.ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates/ForeignKey.ascx,MonoTests.WebPages.DynamicData.FieldTemplates.ForeignKey.ascx /resource:Test/WebPages/DynamicData/FieldTemplates/ForeignKey.ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates.ForeignKey.ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates/ForeignKey_Edit.ascx,MonoTests.WebPages.DynamicData.FieldTemplates.ForeignKey_Edit.ascx /resource:Test/WebPages/DynamicData/FieldTemplates/ForeignKey_Edit.ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates.ForeignKey_Edit.ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates/Integer_Edit.ascx,MonoTests.WebPages.DynamicData.FieldTemplates.Integer_Edit.ascx /resource:Test/WebPages/DynamicData/FieldTemplates/Integer_Edit.ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates.Integer_Edit.ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates/MultilineText_Edit.ascx,MonoTests.WebPages.DynamicData.FieldTemplates.MultilineText_Edit.ascx /resource:Test/WebPages/DynamicData/FieldTemplates/MultilineText_Edit.ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates.MultilineText_Edit.ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates/MyCustomUIHintTemplate_Text.ascx,MonoTests.WebPages.DynamicData.FieldTemplates.MyCustomUIHintTemplate_Text.ascx /resource:Test/WebPages/DynamicData/FieldTemplates/MyCustomUIHintTemplate_Text.ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates.MyCustomUIHintTemplate_Text.ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/Boolean.ascx,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.Boolean.ascx /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/Boolean.ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.Boolean.ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/Byte.ascx,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.Byte.ascx /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/Byte[].ascx,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.Byte[].ascx /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/Byte.ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.Byte.ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/Byte[].ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.Byte[].ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/Char.ascx,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.Char.ascx /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/Char.ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.Char.ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/FooEmpty.ascx,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.FooEmpty.ascx /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/FooEmpty.ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.FooEmpty.ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/ICollection.ascx,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.ICollection.ascx /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/ICollection.ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.ICollection.ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/Int16.ascx,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.Int16.ascx /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/Int16.ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.Int16.ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/Int32.ascx,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.Int32.ascx /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/Int32.ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.Int32.ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/Int64.ascx,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.Int64.ascx /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/Int64.ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.Int64.ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/MonoTests.Common.FooEmpty.ascx,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.MonoTests.Common.FooEmpty.ascx /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/MonoTests.Common.FooEmpty.ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.MonoTests.Common.FooEmpty.ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/Object.ascx,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.Object.ascx /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/Object.ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.Object.ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/SByte.ascx,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.SByte.ascx /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/SByte.ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.SByte.ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/String.ascx,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.String.ascx /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/String.ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.String.ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/System.Boolean.ascx,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.System.Boolean.ascx /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/System.Boolean.ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.System.Boolean.ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/System.Byte.ascx,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.System.Byte.ascx /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/System.Byte[].ascx,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.System.Byte[].ascx /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/System.Byte.ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.System.Byte.ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/System.Byte[].ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.System.Byte[].ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/System.Char.ascx,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.System.Char.ascx /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/System.Char.ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.System.Char.ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/System.Collections.Generic.List`1[System.String].ascx,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.System.Collections.Generic.List`1[System.String].ascx /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/System.Collections.Generic.List`1[System.String].ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.System.Collections.Generic.List`1[System.String].ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/System.Collections.ICollection.ascx,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.System.Collections.ICollection.ascx /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/System.Collections.ICollection.ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.System.Collections.ICollection.ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/System.Int16.ascx,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.System.Int16.ascx /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/System.Int16.ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.System.Int16.ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/System.Int32.ascx,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.System.Int32.ascx /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/System.Int32.ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.System.Int32.ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/System.Int64.ascx,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.System.Int64.ascx /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/System.Int64.ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.System.Int64.ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/System.Object.ascx,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.System.Object.ascx /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/System.Object.ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.System.Object.ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/System.SByte.ascx,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.System.SByte.ascx /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/System.SByte.ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.System.SByte.ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/System.String.ascx,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.System.String.ascx /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/System.String.ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.System.String.ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/System.UInt16.ascx,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.System.UInt16.ascx /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/System.UInt16.ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.System.UInt16.ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/System.UInt32.ascx,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.System.UInt32.ascx /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/System.UInt32.ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.System.UInt32.ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/System.UInt64.ascx,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.System.UInt64.ascx /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/System.UInt64.ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.System.UInt64.ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/UInt16.ascx,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.UInt16.ascx /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/UInt16.ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.UInt16.ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/UInt32.ascx,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.UInt32.ascx /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/UInt32.ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.UInt32.ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/UInt64.ascx,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.UInt64.ascx /resource:Test/WebPages/DynamicData/FieldTemplates_NonDefault/UInt64.ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates_NonDefault.UInt64.ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates/PlainControlTemplate.ascx,MonoTests.WebPages.DynamicData.FieldTemplates.PlainControlTemplate.ascx /resource:Test/WebPages/DynamicData/FieldTemplates/PlainControlTemplate.ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates.PlainControlTemplate.ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates/Text.ascx,MonoTests.WebPages.DynamicData.FieldTemplates.Text.ascx /resource:Test/WebPages/DynamicData/FieldTemplates/Text.ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates.Text.ascx.cs /resource:Test/WebPages/DynamicData/FieldTemplates/Text_Edit.ascx,MonoTests.WebPages.DynamicData.FieldTemplates.Text_Edit.ascx /resource:Test/WebPages/DynamicData/FieldTemplates/Text_Edit.ascx.cs,MonoTests.WebPages.DynamicData.FieldTemplates.Text_Edit.ascx.cs /resource:Test/WebPages/DynamicData/PageTemplates/Details.aspx,MonoTests.WebPages.DynamicData.PageTemplates.Details.aspx /resource:Test/WebPages/DynamicData/PageTemplates/Details.aspx.cs,MonoTests.WebPages.DynamicData.PageTemplates.Details.aspx.cs /resource:Test/WebPages/DynamicData/PageTemplates/Edit.aspx,MonoTests.WebPages.DynamicData.PageTemplates.Edit.aspx /resource:Test/WebPages/DynamicData/PageTemplates/Edit.aspx.cs,MonoTests.WebPages.DynamicData.PageTemplates.Edit.aspx.cs /resource:Test/WebPages/DynamicData/PageTemplates/Insert.aspx,MonoTests.WebPages.DynamicData.PageTemplates.Insert.aspx /resource:Test/WebPages/DynamicData/PageTemplates/Insert.aspx.cs,MonoTests.WebPages.DynamicData.PageTemplates.Insert.aspx.cs /resource:Test/WebPages/DynamicData/PageTemplates/List.aspx,MonoTests.WebPages.DynamicData.PageTemplates.List.aspx /resource:Test/WebPages/DynamicData/PageTemplates/List.aspx.cs,MonoTests.WebPages.DynamicData.PageTemplates.List.aspx.cs /resource:Test/WebPages/DynamicData/PageTemplates/ListDetails.aspx,MonoTests.WebPages.DynamicData.PageTemplates.ListDetails.aspx /resource:Test/WebPages/DynamicData/PageTemplates/ListDetails.aspx.cs,MonoTests.WebPages.DynamicData.PageTemplates.ListDetails.aspx.cs /resource:Test/WebPages/DynamicData/web.config,MonoTests.WebPages.DynamicData.web.config /resource:Test/WebPages/Global.asax,MonoTests.WebPages.Global.asax /resource:Test/WebPages/ListView_DynamicControl_01.aspx,MonoTests.WebPages.ListView_DynamicControl_01.aspx /resource:Test/WebPages/ListView_DynamicControl_01.aspx.cs,MonoTests.WebPages.ListView_DynamicControl_01.aspx.cs /resource:Test/WebPages/ListView_DynamicControl_02.aspx,MonoTests.WebPages.ListView_DynamicControl_02.aspx /resource:Test/WebPages/ListView_DynamicControl_02.aspx.cs,MonoTests.WebPages.ListView_DynamicControl_02.aspx.cs /resource:Test/WebPages/ListView_DynamicControl_03.aspx,MonoTests.WebPages.ListView_DynamicControl_03.aspx /resource:Test/WebPages/ListView_DynamicControl_03.aspx.cs,MonoTests.WebPages.ListView_DynamicControl_03.aspx.cs /resource:Test/WebPages/ListView_DynamicControl_04.aspx,MonoTests.WebPages.ListView_DynamicControl_04.aspx /resource:Test/WebPages/ListView_DynamicControl_04.aspx.cs,MonoTests.WebPages.ListView_DynamicControl_04.aspx.cs /resource:Test/WebPages/ListView_DynamicControl_05.aspx,MonoTests.WebPages.ListView_DynamicControl_05.aspx /resource:Test/WebPages/ListView_DynamicControl_05.aspx.cs,MonoTests.WebPages.ListView_DynamicControl_05.aspx.cs /resource:Test/WebPages/ListView_DynamicControl_06.aspx,MonoTests.WebPages.ListView_DynamicControl_06.aspx /resource:Test/WebPages/ListView_DynamicControl_06.aspx.cs,MonoTests.WebPages.ListView_DynamicControl_06.aspx.cs /resource:Test/WebPages/ListView_DynamicControl_07.aspx,MonoTests.WebPages.ListView_DynamicControl_07.aspx /resource:Test/WebPages/ListView_DynamicControl_07.aspx.cs,MonoTests.WebPages.ListView_DynamicControl_07.aspx.cs /resource:Test/WebPages/ListView_DynamicControl_08.aspx,MonoTests.WebPages.ListView_DynamicControl_08.aspx /resource:Test/WebPages/ListView_DynamicControl_08.aspx.cs,MonoTests.WebPages.ListView_DynamicControl_08.aspx.cs /resource:Test/WebPages/ListView_DynamicControl_09.aspx,MonoTests.WebPages.ListView_DynamicControl_09.aspx /resource:Test/WebPages/ListView_DynamicControl_09.aspx.cs,MonoTests.WebPages.ListView_DynamicControl_09.aspx.cs /resource:Test/WebPages/ListView_DynamicControl_10.aspx,MonoTests.WebPages.ListView_DynamicControl_10.aspx /resource:Test/WebPages/ListView_DynamicControl_10.aspx.cs,MonoTests.WebPages.ListView_DynamicControl_10.aspx.cs /resource:Test/WebPages/DynamicValidator_01.aspx,MonoTests.WebPages.DynamicValidator_01.aspx /resource:Test/WebPages/DynamicValidator_01.aspx.cs,MonoTests.WebPages.DynamicValidator_01.aspx.cs /resource:Test/WebPages/DynamicValidator_02.aspx,MonoTests.WebPages.DynamicValidator_02.aspx /resource:Test/WebPages/DynamicValidator_02.aspx.cs,MonoTests.WebPages.DynamicValidator_02.aspx.cs /resource:Test/WebPages/Site.css,MonoTests.WebPages.Site.css /resource:Test/WebPages/Site.master,MonoTests.WebPages.Site.master /resource:Test/WebPages/Site.master.cs,MonoTests.WebPages.Site.master.cs /resource:Test/WebPages/web.config.4.x,MonoTests.WebPages.web.config.4.x</flags>
  1513. <output>net_4_x_System.Web.DynamicData_test.dll</output>
  1514. <built_sources></built_sources>
  1515. <library_output>net_4_x_System.Web.DynamicData_test.dll</library_output>
  1516. <fx_version>4.5</fx_version>
  1517. <profile>net_4_x</profile>
  1518. <resources></resources>
  1519. <response>./../../build/deps/net_4_x_System.Web.DynamicData_test.dll.response</response>
  1520. </project>
  1521. <project dir="class/Mono.CSharp" library="Mono.CSharp-net_4_x">
  1522. <boot>false</boot>
  1523. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -d:MONO_FEATURE_THREAD_ABORT -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.dll</flags>
  1524. <output>Mono.CSharp.dll</output>
  1525. <built_sources></built_sources>
  1526. <library_output>./../../class/lib/net_4_x/Mono.CSharp.dll</library_output>
  1527. <fx_version>4.5</fx_version>
  1528. <profile>net_4_x</profile>
  1529. <resources></resources>
  1530. <response>Mono.CSharp.dll.sources</response>
  1531. </project>
  1532. <project dir="class/Mono.CSharp" library="Mono.CSharp-tests-net_4_x">
  1533. <boot>false</boot>
  1534. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/Mono.CSharp.dll</flags>
  1535. <output>net_4_x_Mono.CSharp_test.dll</output>
  1536. <built_sources></built_sources>
  1537. <library_output>net_4_x_Mono.CSharp_test.dll</library_output>
  1538. <fx_version>4.5</fx_version>
  1539. <profile>net_4_x</profile>
  1540. <resources></resources>
  1541. <response>./../../build/deps/net_4_x_Mono.CSharp_test.dll.response</response>
  1542. </project>
  1543. <project dir="class/System.Net" library="System.Net-net_4_x">
  1544. <boot>false</boot>
  1545. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -unsafe -d:NET_3_5 -nowarn:1720 -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Xml.dll</flags>
  1546. <output>System.Net.dll</output>
  1547. <built_sources></built_sources>
  1548. <library_output>./../../class/lib/net_4_x/System.Net.dll</library_output>
  1549. <fx_version>4.5</fx_version>
  1550. <profile>net_4_x</profile>
  1551. <resources></resources>
  1552. <response>System.Net.dll.sources</response>
  1553. </project>
  1554. <project dir="class/System.Json" library="System.Json-net_4_x">
  1555. <boot>false</boot>
  1556. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Core.dll</flags>
  1557. <output>System.Json.dll</output>
  1558. <built_sources></built_sources>
  1559. <library_output>./../../class/lib/net_4_x/System.Json.dll</library_output>
  1560. <fx_version>4.5</fx_version>
  1561. <profile>net_4_x</profile>
  1562. <resources></resources>
  1563. <response>System.Json.dll.sources</response>
  1564. </project>
  1565. <project dir="class/System.Json" library="System.Json-tests-net_4_x">
  1566. <boot>false</boot>
  1567. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Json.dll -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Core.dll</flags>
  1568. <output>net_4_x_System.Json_test.dll</output>
  1569. <built_sources></built_sources>
  1570. <library_output>net_4_x_System.Json_test.dll</library_output>
  1571. <fx_version>4.5</fx_version>
  1572. <profile>net_4_x</profile>
  1573. <resources></resources>
  1574. <response>./../../build/deps/net_4_x_System.Json_test.dll.response</response>
  1575. </project>
  1576. <project dir="class/Microsoft.CSharp" library="Microsoft.CSharp-net_4_x">
  1577. <boot>false</boot>
  1578. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/Mono.CSharp.dll</flags>
  1579. <output>Microsoft.CSharp.dll</output>
  1580. <built_sources></built_sources>
  1581. <library_output>./../../class/lib/net_4_x/Microsoft.CSharp.dll</library_output>
  1582. <fx_version>4.5</fx_version>
  1583. <profile>net_4_x</profile>
  1584. <resources></resources>
  1585. <response>Microsoft.CSharp.dll.sources</response>
  1586. </project>
  1587. <project dir="class/System.Xaml" library="System.Xaml-net_4_x">
  1588. <boot>false</boot>
  1589. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Core.dll</flags>
  1590. <output>System.Xaml.dll</output>
  1591. <built_sources></built_sources>
  1592. <library_output>./../../class/lib/net_4_x/System.Xaml.dll</library_output>
  1593. <fx_version>4.5</fx_version>
  1594. <profile>net_4_x</profile>
  1595. <resources></resources>
  1596. <response>System.Xaml.dll.sources</response>
  1597. </project>
  1598. <project dir="class/System.Xaml" library="System.Xaml-tests-net_4_x">
  1599. <boot>false</boot>
  1600. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Xaml.dll -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Core.dll</flags>
  1601. <output>net_4_x_System.Xaml_test.dll</output>
  1602. <built_sources></built_sources>
  1603. <library_output>net_4_x_System.Xaml_test.dll</library_output>
  1604. <fx_version>4.5</fx_version>
  1605. <profile>net_4_x</profile>
  1606. <resources></resources>
  1607. <response>./../../build/deps/net_4_x_System.Xaml_test.dll.response</response>
  1608. </project>
  1609. <project dir="class/WindowsBase" library="WindowsBase-net_4_x">
  1610. <boot>false</boot>
  1611. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -unsafe -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Xaml.dll</flags>
  1612. <output>WindowsBase.dll</output>
  1613. <built_sources></built_sources>
  1614. <library_output>./../../class/lib/net_4_x/WindowsBase.dll</library_output>
  1615. <fx_version>4.5</fx_version>
  1616. <profile>net_4_x</profile>
  1617. <resources></resources>
  1618. <response>WindowsBase.dll.sources</response>
  1619. </project>
  1620. <project dir="class/WindowsBase" library="WindowsBase-tests-net_4_x">
  1621. <boot>false</boot>
  1622. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/WindowsBase.dll -unsafe</flags>
  1623. <output>net_4_x_WindowsBase_test.dll</output>
  1624. <built_sources></built_sources>
  1625. <library_output>net_4_x_WindowsBase_test.dll</library_output>
  1626. <fx_version>4.5</fx_version>
  1627. <profile>net_4_x</profile>
  1628. <resources></resources>
  1629. <response>./../../build/deps/net_4_x_WindowsBase_test.dll.response</response>
  1630. </project>
  1631. <project dir="class/System.ServiceModel.Activation" library="System.ServiceModel.Activation-net_4_x">
  1632. <boot>false</boot>
  1633. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/plainservice/System.ServiceModel.dll</flags>
  1634. <output>System.ServiceModel.Activation.dll</output>
  1635. <built_sources></built_sources>
  1636. <library_output>./../../class/lib/net_4_x/System.ServiceModel.Activation.dll</library_output>
  1637. <fx_version>4.5</fx_version>
  1638. <profile>net_4_x</profile>
  1639. <resources></resources>
  1640. <response>System.ServiceModel.Activation.dll.sources</response>
  1641. </project>
  1642. <project dir="class/System.ServiceModel.Routing" library="System.ServiceModel.Routing-net_4_x">
  1643. <boot>false</boot>
  1644. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -d:NET_3_5 -d:NET_3_0 -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Runtime.Serialization.dll -r:./../../class/lib/net_4_x/System.ServiceModel.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Configuration.dll</flags>
  1645. <output>System.ServiceModel.Routing.dll</output>
  1646. <built_sources></built_sources>
  1647. <library_output>./../../class/lib/net_4_x/System.ServiceModel.Routing.dll</library_output>
  1648. <fx_version>4.5</fx_version>
  1649. <profile>net_4_x</profile>
  1650. <resources></resources>
  1651. <response>System.ServiceModel.Routing.dll.sources</response>
  1652. </project>
  1653. <project dir="class/System.ServiceModel.Discovery" library="System.ServiceModel.Discovery-net_4_x">
  1654. <boot>false</boot>
  1655. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -d:NET_3_5 -d:NET_3_0 -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Runtime.Serialization.dll -r:./../../class/lib/net_4_x/System.ServiceModel.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Xml.Linq.dll -r:./../../class/lib/net_4_x/System.Configuration.dll</flags>
  1656. <output>System.ServiceModel.Discovery.dll</output>
  1657. <built_sources></built_sources>
  1658. <library_output>./../../class/lib/net_4_x/System.ServiceModel.Discovery.dll</library_output>
  1659. <fx_version>4.5</fx_version>
  1660. <profile>net_4_x</profile>
  1661. <resources></resources>
  1662. <response>System.ServiceModel.Discovery.dll.sources</response>
  1663. </project>
  1664. <project dir="class/System.ServiceModel.Discovery" library="System.ServiceModel.Discovery-tests-net_4_x">
  1665. <boot>false</boot>
  1666. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.ServiceModel.Discovery.dll -d:NET_3_5 -d:NET_3_0 -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Runtime.Serialization.dll -r:./../../class/lib/net_4_x/System.ServiceModel.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Xml.Linq.dll -r:./../../class/lib/net_4_x/System.Configuration.dll</flags>
  1667. <output>net_4_x_System.ServiceModel.Discovery_test.dll</output>
  1668. <built_sources></built_sources>
  1669. <library_output>net_4_x_System.ServiceModel.Discovery_test.dll</library_output>
  1670. <fx_version>4.5</fx_version>
  1671. <profile>net_4_x</profile>
  1672. <resources></resources>
  1673. <response>./../../build/deps/net_4_x_System.ServiceModel.Discovery_test.dll.response</response>
  1674. </project>
  1675. <project dir="class/System.Runtime.Caching" library="System.Runtime.Caching-net_4_x">
  1676. <boot>false</boot>
  1677. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -nowarn:414 -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Data.dll -r:./../../class/lib/net_4_x/System.Configuration.dll -r:./../../class/lib/net_4_x/System.Core.dll</flags>
  1678. <output>System.Runtime.Caching.dll</output>
  1679. <built_sources></built_sources>
  1680. <library_output>./../../class/lib/net_4_x/System.Runtime.Caching.dll</library_output>
  1681. <fx_version>4.5</fx_version>
  1682. <profile>net_4_x</profile>
  1683. <resources></resources>
  1684. <response>System.Runtime.Caching.dll.sources</response>
  1685. </project>
  1686. <project dir="class/System.Runtime.Caching" library="System.Runtime.Caching-tests-net_4_x">
  1687. <boot>false</boot>
  1688. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Runtime.Caching.dll -nowarn:414 -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Data.dll -r:./../../class/lib/net_4_x/System.Configuration.dll -r:./../../class/lib/net_4_x/System.Core.dll</flags>
  1689. <output>net_4_x_System.Runtime.Caching_test.dll</output>
  1690. <built_sources></built_sources>
  1691. <library_output>net_4_x_System.Runtime.Caching_test.dll</library_output>
  1692. <fx_version>4.5</fx_version>
  1693. <profile>net_4_x</profile>
  1694. <resources></resources>
  1695. <response>./../../build/deps/net_4_x_System.Runtime.Caching_test.dll.response</response>
  1696. </project>
  1697. <project dir="class/Microsoft.Web.Infrastructure" library="Microsoft.Web.Infrastructure-net_4_x">
  1698. <boot>false</boot>
  1699. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Configuration.dll -r:./../../class/lib/net_4_x/System.Web.dll</flags>
  1700. <output>Microsoft.Web.Infrastructure.dll</output>
  1701. <built_sources></built_sources>
  1702. <library_output>./../../class/lib/net_4_x/Microsoft.Web.Infrastructure.dll</library_output>
  1703. <fx_version>4.5</fx_version>
  1704. <profile>net_4_x</profile>
  1705. <resources></resources>
  1706. <response>Microsoft.Web.Infrastructure.dll.sources</response>
  1707. </project>
  1708. <project dir="class/System.ServiceModel.Web" library="System.ServiceModel.Web-net_4_x">
  1709. <boot>false</boot>
  1710. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -d:NET_3_5 -d:NET_3_0 -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Runtime.Serialization.dll -r:./../../class/lib/net_4_x/System.ServiceModel.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Configuration.dll -r:./../../class/lib/net_4_x/System.Web.Extensions.dll -r:./../../class/lib/net_4_x/System.ServiceModel.Activation.dll</flags>
  1711. <output>System.ServiceModel.Web.dll</output>
  1712. <built_sources></built_sources>
  1713. <library_output>./../../class/lib/net_4_x/System.ServiceModel.Web.dll</library_output>
  1714. <fx_version>4.5</fx_version>
  1715. <profile>net_4_x</profile>
  1716. <resources></resources>
  1717. <response>System.ServiceModel.Web.dll.sources</response>
  1718. </project>
  1719. <project dir="class/System.ServiceModel.Web" library="System.ServiceModel.Web-tests-net_4_x">
  1720. <boot>false</boot>
  1721. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.ServiceModel.Web.dll -d:NET_3_5 -d:NET_3_0 -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Runtime.Serialization.dll -r:./../../class/lib/net_4_x/System.ServiceModel.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Configuration.dll -r:./../../class/lib/net_4_x/System.Web.Extensions.dll -r:./../../class/lib/net_4_x/System.ServiceModel.Activation.dll</flags>
  1722. <output>net_4_x_System.ServiceModel.Web_test.dll</output>
  1723. <built_sources></built_sources>
  1724. <library_output>net_4_x_System.ServiceModel.Web_test.dll</library_output>
  1725. <fx_version>4.5</fx_version>
  1726. <profile>net_4_x</profile>
  1727. <resources></resources>
  1728. <response>./../../build/deps/net_4_x_System.ServiceModel.Web_test.dll.response</response>
  1729. </project>
  1730. <project dir="class/System.Net.Http" library="System.Net.Http-net_4_x">
  1731. <boot>false</boot>
  1732. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.dll</flags>
  1733. <output>System.Net.Http.dll</output>
  1734. <built_sources></built_sources>
  1735. <library_output>./../../class/lib/net_4_x/System.Net.Http.dll</library_output>
  1736. <fx_version>4.5</fx_version>
  1737. <profile>net_4_x</profile>
  1738. <resources></resources>
  1739. <response>System.Net.Http.dll.sources</response>
  1740. </project>
  1741. <project dir="class/System.Net.Http" library="System.Net.Http-tests-net_4_x">
  1742. <boot>false</boot>
  1743. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Net.Http.dll</flags>
  1744. <output>net_4_x_System.Net.Http_test.dll</output>
  1745. <built_sources></built_sources>
  1746. <library_output>net_4_x_System.Net.Http_test.dll</library_output>
  1747. <fx_version>4.5</fx_version>
  1748. <profile>net_4_x</profile>
  1749. <resources></resources>
  1750. <response>./../../build/deps/net_4_x_System.Net.Http_test.dll.response</response>
  1751. </project>
  1752. <project dir="class/System.Net.Http.WebRequest" library="System.Net.Http.WebRequest-net_4_x">
  1753. <boot>false</boot>
  1754. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.Net.Http.dll -r:./../../class/lib/net_4_x/System.dll</flags>
  1755. <output>System.Net.Http.WebRequest.dll</output>
  1756. <built_sources></built_sources>
  1757. <library_output>./../../class/lib/net_4_x/System.Net.Http.WebRequest.dll</library_output>
  1758. <fx_version>4.5</fx_version>
  1759. <profile>net_4_x</profile>
  1760. <resources></resources>
  1761. <response>System.Net.Http.WebRequest.dll.sources</response>
  1762. </project>
  1763. <project dir="class/System.Web.Razor" library="System.Web.Razor-net_4_x">
  1764. <boot>false</boot>
  1765. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig /warn:1 /keyfile:../winfx.pub -delaysign /d:ASPNETWEBPAGES -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll</flags>
  1766. <output>System.Web.Razor.dll</output>
  1767. <built_sources></built_sources>
  1768. <library_output>./../../class/lib/net_4_x/System.Web.Razor.dll</library_output>
  1769. <fx_version>4.5</fx_version>
  1770. <profile>net_4_x</profile>
  1771. <resources>System.Web.Razor.Common.CommonResources,../../../external/aspnetwebstack/src/CommonResources.resx System.Web.Razor.Resources.RazorResources,../../../external/aspnetwebstack/src/System.Web.Razor/Resources/RazorResources.resx</resources>
  1772. <response>System.Web.Razor.dll.sources</response>
  1773. </project>
  1774. <project dir="class/System.Web.WebPages.Deployment" library="System.Web.WebPages.Deployment-net_4_x">
  1775. <boot>false</boot>
  1776. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig /warn:1 /keyfile:../winfx.pub -delaysign /d:ASPNETWEBPAGES -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Configuration.dll -r:./../../class/lib/net_4_x/System.Web.dll -r:./../../class/lib/net_4_x/Microsoft.Web.Infrastructure.dll</flags>
  1777. <output>System.Web.WebPages.Deployment.dll</output>
  1778. <built_sources></built_sources>
  1779. <library_output>./../../class/lib/net_4_x/System.Web.WebPages.Deployment.dll</library_output>
  1780. <fx_version>4.5</fx_version>
  1781. <profile>net_4_x</profile>
  1782. <resources>System.Web.WebPages.Deployment.Common.CommonResources,../../../external/aspnetwebstack/src/CommonResources.resx System.Web.WebPages.Deployment.Resources.ConfigurationResources,../../../external/aspnetwebstack/src/System.Web.WebPages.Deployment/Resources/ConfigurationResources.resx</resources>
  1783. <response>System.Web.WebPages.Deployment.dll.sources</response>
  1784. </project>
  1785. <project dir="class/System.Web.WebPages" library="System.Web.WebPages-net_4_x">
  1786. <boot>false</boot>
  1787. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig /warn:1 /keyfile:../winfx.pub /delaysign /d:ASPNETWEBPAGES -r:./../../class/lib/net_4_x/Microsoft.CSharp.dll -r:./../../class/lib/net_4_x/Microsoft.Web.Infrastructure.dll -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.ComponentModel.DataAnnotations.dll -r:./../../class/lib/net_4_x/System.Configuration.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Data.Linq.dll -r:./../../class/lib/net_4_x/System.Web.dll -r:./../../class/lib/net_4_x/System.Web.WebPages.Deployment.dll -r:./../../class/lib/net_4_x/System.Web.Razor.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Xml.Linq.dll</flags>
  1788. <output>System.Web.WebPages.dll</output>
  1789. <built_sources></built_sources>
  1790. <library_output>./../../class/lib/net_4_x/System.Web.WebPages.dll</library_output>
  1791. <fx_version>4.5</fx_version>
  1792. <profile>net_4_x</profile>
  1793. <resources>System.Web.WebPages.Common.CommonResources,../../../external/aspnetwebstack/src/CommonResources.resx System.Web.WebPages.Resources.WebPageResources,../../../external/aspnetwebstack/src/System.Web.WebPages/Resources/WebPageResources.resx</resources>
  1794. <response>System.Web.WebPages.dll.sources</response>
  1795. </project>
  1796. <project dir="class/System.Web.WebPages.Razor" library="System.Web.WebPages.Razor-net_4_x">
  1797. <boot>false</boot>
  1798. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig /warn:1 /keyfile:../winfx.pub /delaysign /d:ASPNETWEBPAGES -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Configuration.dll -r:./../../class/lib/net_4_x/System.Web.dll -r:./../../class/lib/net_4_x/System.Web.WebPages.dll -r:./../../class/lib/net_4_x/System.Web.Razor.dll</flags>
  1799. <output>System.Web.WebPages.Razor.dll</output>
  1800. <built_sources></built_sources>
  1801. <library_output>./../../class/lib/net_4_x/System.Web.WebPages.Razor.dll</library_output>
  1802. <fx_version>4.5</fx_version>
  1803. <profile>net_4_x</profile>
  1804. <resources>System.Web.WebPages.Razor.Common.CommonResources,../../../external/aspnetwebstack/src/CommonResources.resx System.Web.WebPages.Razor.Resources.RazorWebResources,../../../external/aspnetwebstack/src/System.Web.WebPages.Razor/Resources/RazorWebResources.resx</resources>
  1805. <response>System.Web.WebPages.Razor.dll.sources</response>
  1806. </project>
  1807. <project dir="class/System.Web.Mvc3" library="System.Web.Mvc3-net_4_x">
  1808. <boot>false</boot>
  1809. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig /warn:1 /keyfile:../winfx.pub /d:MONO /delaysign -r:./../../class/lib/net_4_x/Microsoft.Web.Infrastructure.dll -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Configuration.dll -r:./../../class/lib/net_4_x/System.Data.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Web.dll -r:./../../class/lib/net_4_x/System.Web.Abstractions.dll -r:./../../class/lib/net_4_x/System.Web.Routing.dll -r:./../../class/lib/net_4_x/System.Web.Extensions.dll -r:./../../class/lib/net_4_x/System.ComponentModel.DataAnnotations.dll -r:./../../class/lib/net_4_x/System.Data.Linq.dll -r:./../../class/lib/net_4_x/System.Runtime.Caching.dll -r:./../../class/lib/net_4_x/System.Web.Razor.dll -r:./../../class/lib/net_4_x/System.Web.WebPages.Razor.dll -r:./../../class/lib/net_4_x/System.Web.WebPages.dll</flags>
  1810. <output>System.Web.Mvc.dll</output>
  1811. <built_sources></built_sources>
  1812. <library_output>./../../class/lib/net_4_x/System.Web.Mvc.dll</library_output>
  1813. <fx_version>4.5</fx_version>
  1814. <profile>net_4_x</profile>
  1815. <resources>System.Web.Mvc.Resources.MvcResources,Mvc/Resources/MvcResources.resx</resources>
  1816. <response>System.Web.Mvc3.dll.sources</response>
  1817. </project>
  1818. <project dir="class/System.Net.Http.Formatting" library="System.Net.Http.Formatting-net_4_x">
  1819. <boot>false</boot>
  1820. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -d:ASPNETMVC -keyfile:../winfx.pub -delaysign -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Net.Http.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Runtime.Serialization.dll -r:./../../class/lib/net_4_x/System.Xml.Linq.dll -r:./../../class/lib/net_4_x/System.Data.dll -r:./../../class/lib/net_4_x/System.Configuration.dll</flags>
  1821. <output>System.Net.Http.Formatting.dll</output>
  1822. <built_sources></built_sources>
  1823. <library_output>./../../class/lib/net_4_x/System.Net.Http.Formatting.dll</library_output>
  1824. <fx_version>4.5</fx_version>
  1825. <profile>net_4_x</profile>
  1826. <resources>System.Net.Http.Properties.CommonWebApiResources,../../../external/aspnetwebstack/src/Common/CommonWebApiResources.resx System.Net.Http.Properties.Resources,../../../external/aspnetwebstack/src/System.Net.Http.Formatting/Properties/Resources.resx</resources>
  1827. <response>System.Net.Http.Formatting.dll.sources</response>
  1828. </project>
  1829. <project dir="class/System.Web.Http" library="System.Web.Http-net_4_x">
  1830. <boot>false</boot>
  1831. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -d:ASPNETMVC -keyfile:../winfx.pub -delaysign -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Net.Http.dll -r:./../../class/lib/net_4_x/System.ComponentModel.DataAnnotations.dll -r:./../../class/lib/net_4_x/System.Net.Http.Formatting.dll -r:./../../class/lib/net_4_x/System.Runtime.Caching.dll -r:./../../class/lib/net_4_x/System.Runtime.Serialization.dll -r:./../../class/lib/net_4_x/System.Data.Linq.dll</flags>
  1832. <output>System.Web.Http.dll</output>
  1833. <built_sources></built_sources>
  1834. <library_output>./../../class/lib/net_4_x/System.Web.Http.dll</library_output>
  1835. <fx_version>4.5</fx_version>
  1836. <profile>net_4_x</profile>
  1837. <resources>System.Web.Http.Properties.CommonWebApiResources,../../../external/aspnetwebstack/src/Common/CommonWebApiResources.resx System.Web.Http.Properties.SRResources,../../../external/aspnetwebstack/src/System.Web.Http/Properties/SRResources.resx</resources>
  1838. <response>System.Web.Http.dll.sources</response>
  1839. </project>
  1840. <project dir="class/System.Web.Http.SelfHost" library="System.Web.Http.SelfHost-net_4_x">
  1841. <boot>false</boot>
  1842. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -d:ASPNETMVC -keyfile:../winfx.pub -delaysign -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Configuration.dll -r:./../../class/lib/net_4_x/System.Net.Http.dll -r:./../../class/lib/net_4_x/System.Runtime.Serialization.dll -r:./../../class/lib/net_4_x/System.ServiceModel.dll -r:./../../class/lib/net_4_x/System.IdentityModel.dll -r:./../../class/lib/net_4_x/System.Web.Http.dll -r:./../../class/lib/net_4_x/System.Net.Http.Formatting.dll</flags>
  1843. <output>System.Web.Http.SelfHost.dll</output>
  1844. <built_sources></built_sources>
  1845. <library_output>./../../class/lib/net_4_x/System.Web.Http.SelfHost.dll</library_output>
  1846. <fx_version>4.5</fx_version>
  1847. <profile>net_4_x</profile>
  1848. <resources>System.Web.Http.SelfHost.Properties.CommonWebApiResources,../../../external/aspnetwebstack/src/Common/CommonWebApiResources.resx System.Web.Http.SelfHost.Properties.SRResources,../../../external/aspnetwebstack/src/System.Web.Http.SelfHost/Properties/SRResources.resx</resources>
  1849. <response>System.Web.Http.SelfHost.dll.sources</response>
  1850. </project>
  1851. <project dir="class/System.Web.Http.WebHost" library="System.Web.Http.WebHost-net_4_x">
  1852. <boot>false</boot>
  1853. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -d:ASPNETMVC -keyfile:../winfx.pub -delaysign -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Configuration.dll -r:./../../class/lib/net_4_x/System.Net.Http.dll -r:./../../class/lib/net_4_x/System.Runtime.Serialization.dll -r:./../../class/lib/net_4_x/System.ServiceModel.dll -r:./../../class/lib/net_4_x/System.IdentityModel.dll -r:./../../class/lib/net_4_x/System.Web.Http.dll -r:./../../class/lib/net_4_x/System.Net.Http.Formatting.dll -r:./../../class/lib/net_4_x/System.Web.Routing.dll -r:./../../class/lib/net_4_x/System.Web.dll -r:./../../class/lib/net_4_x/Microsoft.Web.Infrastructure.dll</flags>
  1854. <output>System.Web.Http.WebHost.dll</output>
  1855. <built_sources></built_sources>
  1856. <library_output>./../../class/lib/net_4_x/System.Web.Http.WebHost.dll</library_output>
  1857. <fx_version>4.5</fx_version>
  1858. <profile>net_4_x</profile>
  1859. <resources>System.Web.Http.WebHost.Properties.CommonWebApiResources,../../../external/aspnetwebstack/src/Common/CommonWebApiResources.resx System.Web.Http.WebHost.Properties.SRResources,../../../external/aspnetwebstack/src/System.Web.Http.WebHost/Properties/SRResources.resx</resources>
  1860. <response>System.Web.Http.WebHost.dll.sources</response>
  1861. </project>
  1862. <project dir="class/Mono.Security.Providers.NewSystemSource" library="Mono.Security.Providers.NewSystemSource-net_4_x">
  1863. <boot>false</boot>
  1864. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -d:SECURITY_DEP -unsafe -nowarn:1030 -keyfile:../mono.pub -delaysign -d:MONO -d:FEATURE_PAL -d:MONO_FEATURE_NEW_TLS -d:MONO_FEATURE_NEW_SYSTEM_SOURCE -d:DISABLE_CAS_USE -d:MONO_SECURITY_ALIAS -r:./../../class/lib/net_4_x/System.dll -r:MonoSecurity=./../../class/lib/net_4_x/Mono.Security.dll</flags>
  1865. <output>Mono.Security.Providers.NewSystemSource.dll</output>
  1866. <built_sources></built_sources>
  1867. <library_output>./../../class/lib/net_4_x/Mono.Security.Providers.NewSystemSource.dll</library_output>
  1868. <fx_version>4.5</fx_version>
  1869. <profile>net_4_x</profile>
  1870. <resources></resources>
  1871. <response>Mono.Security.Providers.NewSystemSource.dll.sources</response>
  1872. </project>
  1873. <project dir="class/Mono.Security.Providers.NewTls" library="Mono.Security.Providers.NewTls-net_4_x">
  1874. <boot>false</boot>
  1875. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -unsafe -nowarn:1030 -keyfile:../mono.pub -delaysign -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/Mono.Security.dll -r:NewSystemSource=./../../class/lib/net_4_x/Mono.Security.Providers.NewSystemSource.dll</flags>
  1876. <output>Mono.Security.Providers.NewTls.dll</output>
  1877. <built_sources></built_sources>
  1878. <library_output>./../../class/lib/net_4_x/Mono.Security.Providers.NewTls.dll</library_output>
  1879. <fx_version>4.5</fx_version>
  1880. <profile>net_4_x</profile>
  1881. <resources></resources>
  1882. <response>Mono.Security.Providers.NewTls.dll.sources</response>
  1883. </project>
  1884. <project dir="class/Microsoft.Build.Framework" library="Microsoft.Build.Framework-net_4_x">
  1885. <boot>false</boot>
  1886. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.dll</flags>
  1887. <output>Microsoft.Build.Framework.dll</output>
  1888. <built_sources></built_sources>
  1889. <library_output>./../../class/lib/net_4_x/Microsoft.Build.Framework.dll</library_output>
  1890. <fx_version>4.5</fx_version>
  1891. <profile>net_4_x</profile>
  1892. <resources></resources>
  1893. <response>Microsoft.Build.Framework.dll.sources</response>
  1894. </project>
  1895. <project dir="class/Microsoft.Build.Framework" library="Microsoft.Build.Framework-tests-net_4_x">
  1896. <boot>false</boot>
  1897. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/Microsoft.Build.Framework.dll</flags>
  1898. <output>net_4_x_Microsoft.Build.Framework_test.dll</output>
  1899. <built_sources></built_sources>
  1900. <library_output>net_4_x_Microsoft.Build.Framework_test.dll</library_output>
  1901. <fx_version>4.5</fx_version>
  1902. <profile>net_4_x</profile>
  1903. <resources></resources>
  1904. <response>./../../build/deps/net_4_x_Microsoft.Build.Framework_test.dll.response</response>
  1905. </project>
  1906. <project dir="class/Microsoft.Build.Utilities" library="Microsoft.Build.Utilities-net_4_x">
  1907. <boot>false</boot>
  1908. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/Microsoft.Build.Framework.dll</flags>
  1909. <output>Microsoft.Build.Utilities.v4.0.dll</output>
  1910. <built_sources></built_sources>
  1911. <library_output>./../../class/lib/net_4_x/Microsoft.Build.Utilities.v4.0.dll</library_output>
  1912. <fx_version>4.5</fx_version>
  1913. <profile>net_4_x</profile>
  1914. <resources></resources>
  1915. <response>Microsoft.Build.Utilities.dll.sources</response>
  1916. </project>
  1917. <project dir="class/Microsoft.Build.Utilities" library="Microsoft.Build.Utilities-tests-net_4_x">
  1918. <boot>false</boot>
  1919. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/Microsoft.Build.Utilities.v4.0.dll -resource:Test/Microsoft.Build.Utilities/Strings.resources</flags>
  1920. <output>net_4_x_Microsoft.Build.Utilities_test.dll</output>
  1921. <built_sources></built_sources>
  1922. <library_output>net_4_x_Microsoft.Build.Utilities_test.dll</library_output>
  1923. <fx_version>4.5</fx_version>
  1924. <profile>net_4_x</profile>
  1925. <resources></resources>
  1926. <response>./../../build/deps/net_4_x_Microsoft.Build.Utilities_test.dll.response</response>
  1927. </project>
  1928. <project dir="class/Microsoft.Build.Engine" library="Microsoft.Build.Engine-net_4_x">
  1929. <boot>false</boot>
  1930. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/Microsoft.Build.Framework.dll -r:./../../class/lib/net_4_x/Microsoft.Build.Utilities.v4.0.dll</flags>
  1931. <output>Microsoft.Build.Engine.dll</output>
  1932. <built_sources></built_sources>
  1933. <library_output>./../../class/lib/net_4_x/Microsoft.Build.Engine.dll</library_output>
  1934. <fx_version>4.5</fx_version>
  1935. <profile>net_4_x</profile>
  1936. <resources></resources>
  1937. <response>Microsoft.Build.Engine.dll.sources</response>
  1938. </project>
  1939. <project dir="class/Microsoft.Build.Engine" library="Microsoft.Build.Engine-tests-net_4_x">
  1940. <boot>false</boot>
  1941. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/Microsoft.Build.Engine.dll</flags>
  1942. <output>net_4_x_Microsoft.Build.Engine_test.dll</output>
  1943. <built_sources></built_sources>
  1944. <library_output>net_4_x_Microsoft.Build.Engine_test.dll</library_output>
  1945. <fx_version>4.5</fx_version>
  1946. <profile>net_4_x</profile>
  1947. <resources></resources>
  1948. <response>./../../build/deps/net_4_x_Microsoft.Build.Engine_test.dll.response</response>
  1949. </project>
  1950. <project dir="class/Mono.XBuild.Tasks" library="Mono.XBuild.Tasks-net_4_x">
  1951. <boot>false</boot>
  1952. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Xml.dll</flags>
  1953. <output>Mono.XBuild.Tasks.dll</output>
  1954. <built_sources></built_sources>
  1955. <library_output>./../../class/lib/net_4_x/Mono.XBuild.Tasks.dll</library_output>
  1956. <fx_version>4.5</fx_version>
  1957. <profile>net_4_x</profile>
  1958. <resources></resources>
  1959. <response>Mono.XBuild.Tasks.dll.sources</response>
  1960. </project>
  1961. <project dir="class/Mono.XBuild.Tasks" library="Mono.XBuild.Tasks-tests-net_4_x">
  1962. <boot>false</boot>
  1963. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/Mono.XBuild.Tasks.dll</flags>
  1964. <output>net_4_x_Mono.XBuild.Tasks_test.dll</output>
  1965. <built_sources></built_sources>
  1966. <library_output>net_4_x_Mono.XBuild.Tasks_test.dll</library_output>
  1967. <fx_version>4.5</fx_version>
  1968. <profile>net_4_x</profile>
  1969. <resources></resources>
  1970. <response>./../../build/deps/net_4_x_Mono.XBuild.Tasks_test.dll.response</response>
  1971. </project>
  1972. <project dir="class/Microsoft.Build.Tasks" library="Microsoft.Build.Tasks-net_4_x">
  1973. <boot>false</boot>
  1974. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Windows.Forms.dll -r:./../../class/lib/net_4_x/Microsoft.Build.Utilities.v4.0.dll -r:./../../class/lib/net_4_x/Microsoft.Build.Framework.dll -r:./../../class/lib/net_4_x/Microsoft.Build.Engine.dll -r:./../../class/lib/net_4_x/Mono.XBuild.Tasks.dll</flags>
  1975. <output>Microsoft.Build.Tasks.v4.0.dll</output>
  1976. <built_sources></built_sources>
  1977. <library_output>./../../class/lib/net_4_x/Microsoft.Build.Tasks.v4.0.dll</library_output>
  1978. <fx_version>4.5</fx_version>
  1979. <profile>net_4_x</profile>
  1980. <resources></resources>
  1981. <response>Microsoft.Build.Tasks.dll.sources</response>
  1982. </project>
  1983. <project dir="class/Microsoft.Build.Tasks" library="Microsoft.Build.Tasks-tests-net_4_x">
  1984. <boot>false</boot>
  1985. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/Microsoft.Build.Tasks.v4.0.dll</flags>
  1986. <output>net_4_x_Microsoft.Build.Tasks_test.dll</output>
  1987. <built_sources></built_sources>
  1988. <library_output>net_4_x_Microsoft.Build.Tasks_test.dll</library_output>
  1989. <fx_version>4.5</fx_version>
  1990. <profile>net_4_x</profile>
  1991. <resources></resources>
  1992. <response>./../../build/deps/net_4_x_Microsoft.Build.Tasks_test.dll.response</response>
  1993. </project>
  1994. <project dir="class/Microsoft.Build" library="Microsoft.Build-net_4_x">
  1995. <boot>false</boot>
  1996. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig /d:MICROSOFT_BUILD_DLL -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/Microsoft.Build.Engine.dll -r:./../../class/lib/net_4_x/Microsoft.Build.Framework.dll</flags>
  1997. <output>Microsoft.Build.dll</output>
  1998. <built_sources>Microsoft.Build.Internal/ExpressionParser.cs</built_sources>
  1999. <library_output>./../../class/lib/net_4_x/Microsoft.Build.dll</library_output>
  2000. <fx_version>4.5</fx_version>
  2001. <profile>net_4_x</profile>
  2002. <resources></resources>
  2003. <response>Microsoft.Build.dll.sources</response>
  2004. </project>
  2005. <project dir="class/Microsoft.Build" library="Microsoft.Build-tests-net_4_x">
  2006. <boot>false</boot>
  2007. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/Microsoft.Build.dll /d:MICROSOFT_BUILD_DLL -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/Microsoft.Build.Engine.dll -r:./../../class/lib/net_4_x/Microsoft.Build.Framework.dll</flags>
  2008. <output>net_4_x_Microsoft.Build_test.dll</output>
  2009. <built_sources>Microsoft.Build.Internal/ExpressionParser.cs</built_sources>
  2010. <library_output>net_4_x_Microsoft.Build_test.dll</library_output>
  2011. <fx_version>4.5</fx_version>
  2012. <profile>net_4_x</profile>
  2013. <resources></resources>
  2014. <response>./../../build/deps/net_4_x_Microsoft.Build_test.dll.response</response>
  2015. </project>
  2016. <project dir="class/PEAPI" library="PEAPI-net_4_x">
  2017. <boot>false</boot>
  2018. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -nowarn:414,618 -r:./../../class/lib/net_4_x/System.dll</flags>
  2019. <output>PEAPI.dll</output>
  2020. <built_sources></built_sources>
  2021. <library_output>./../../class/lib/net_4_x/PEAPI.dll</library_output>
  2022. <fx_version>4.5</fx_version>
  2023. <profile>net_4_x</profile>
  2024. <resources></resources>
  2025. <response>PEAPI.dll.sources</response>
  2026. </project>
  2027. <project dir="class/I18N/Common" library="I18N-net_4_x">
  2028. <boot>false</boot>
  2029. <flags>/codepage:65001 /unsafe /define:DISABLE_UNSAFE -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig</flags>
  2030. <output>I18N.dll</output>
  2031. <built_sources></built_sources>
  2032. <library_output>./../../../class/lib/net_4_x/I18N.dll</library_output>
  2033. <fx_version>4.5</fx_version>
  2034. <profile>net_4_x</profile>
  2035. <resources></resources>
  2036. <response>I18N.dll.sources</response>
  2037. </project>
  2038. <project dir="class/I18N/West" library="I18N.West-net_4_x">
  2039. <boot>false</boot>
  2040. <flags>/codepage:65001 /unsafe -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../../class/lib/net_4_x/I18N.dll</flags>
  2041. <output>I18N.West.dll</output>
  2042. <built_sources></built_sources>
  2043. <library_output>./../../../class/lib/net_4_x/I18N.West.dll</library_output>
  2044. <fx_version>4.5</fx_version>
  2045. <profile>net_4_x</profile>
  2046. <resources></resources>
  2047. <response>I18N.West.dll.sources</response>
  2048. </project>
  2049. <project dir="class/I18N/West" library="I18N.West-tests-net_4_x">
  2050. <boot>false</boot>
  2051. <flags>/codepage:65001 /unsafe -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../../class/lib/net_4_x/I18N.West.dll</flags>
  2052. <output>net_4_x_I18N.West_test.dll</output>
  2053. <built_sources></built_sources>
  2054. <library_output>net_4_x_I18N.West_test.dll</library_output>
  2055. <fx_version>4.5</fx_version>
  2056. <profile>net_4_x</profile>
  2057. <resources></resources>
  2058. <response>./../../../build/deps/net_4_x_I18N.West_test.dll.response</response>
  2059. </project>
  2060. <project dir="class/I18N/MidEast" library="I18N.MidEast-net_4_x">
  2061. <boot>false</boot>
  2062. <flags>/codepage:65001 /unsafe -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../../class/lib/net_4_x/I18N.dll</flags>
  2063. <output>I18N.MidEast.dll</output>
  2064. <built_sources></built_sources>
  2065. <library_output>./../../../class/lib/net_4_x/I18N.MidEast.dll</library_output>
  2066. <fx_version>4.5</fx_version>
  2067. <profile>net_4_x</profile>
  2068. <resources></resources>
  2069. <response>I18N.MidEast.dll.sources</response>
  2070. </project>
  2071. <project dir="class/I18N/MidEast" library="I18N.MidEast-tests-net_4_x">
  2072. <boot>false</boot>
  2073. <flags>/codepage:65001 /unsafe -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../../class/lib/net_4_x/I18N.MidEast.dll</flags>
  2074. <output>net_4_x_I18N.MidEast_test.dll</output>
  2075. <built_sources></built_sources>
  2076. <library_output>net_4_x_I18N.MidEast_test.dll</library_output>
  2077. <fx_version>4.5</fx_version>
  2078. <profile>net_4_x</profile>
  2079. <resources></resources>
  2080. <response>./../../../build/deps/net_4_x_I18N.MidEast_test.dll.response</response>
  2081. </project>
  2082. <project dir="class/I18N/Other" library="I18N.Other-net_4_x">
  2083. <boot>false</boot>
  2084. <flags>/codepage:65001 /unsafe -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../../class/lib/net_4_x/I18N.dll</flags>
  2085. <output>I18N.Other.dll</output>
  2086. <built_sources></built_sources>
  2087. <library_output>./../../../class/lib/net_4_x/I18N.Other.dll</library_output>
  2088. <fx_version>4.5</fx_version>
  2089. <profile>net_4_x</profile>
  2090. <resources></resources>
  2091. <response>I18N.Other.dll.sources</response>
  2092. </project>
  2093. <project dir="class/I18N/Rare" library="I18N.Rare-net_4_x">
  2094. <boot>false</boot>
  2095. <flags>/codepage:65001 /unsafe -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../../class/lib/net_4_x/I18N.dll</flags>
  2096. <output>I18N.Rare.dll</output>
  2097. <built_sources></built_sources>
  2098. <library_output>./../../../class/lib/net_4_x/I18N.Rare.dll</library_output>
  2099. <fx_version>4.5</fx_version>
  2100. <profile>net_4_x</profile>
  2101. <resources></resources>
  2102. <response>I18N.Rare.dll.sources</response>
  2103. </project>
  2104. <project dir="class/I18N/CJK" library="I18N.CJK-net_4_x">
  2105. <boot>false</boot>
  2106. <flags>/codepage:65001 /unsafe /resource:big5.table /resource:gb2312.table /resource:jis.table /resource:ks.table /resource:gb18030.table /define:DISABLE_UNSAFE -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../../class/lib/net_4_x/I18N.dll</flags>
  2107. <output>I18N.CJK.dll</output>
  2108. <built_sources></built_sources>
  2109. <library_output>./../../../class/lib/net_4_x/I18N.CJK.dll</library_output>
  2110. <fx_version>4.5</fx_version>
  2111. <profile>net_4_x</profile>
  2112. <resources></resources>
  2113. <response>I18N.CJK.dll.sources</response>
  2114. </project>
  2115. <project dir="class/I18N/CJK" library="I18N.CJK-tests-net_4_x">
  2116. <boot>false</boot>
  2117. <flags>/codepage:65001 /unsafe /resource:big5.table /resource:gb2312.table /resource:jis.table /resource:ks.table /resource:gb18030.table /define:DISABLE_UNSAFE -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../../class/lib/net_4_x/I18N.CJK.dll</flags>
  2118. <output>net_4_x_I18N.CJK_test.dll</output>
  2119. <built_sources></built_sources>
  2120. <library_output>net_4_x_I18N.CJK_test.dll</library_output>
  2121. <fx_version>4.5</fx_version>
  2122. <profile>net_4_x</profile>
  2123. <resources></resources>
  2124. <response>./../../../build/deps/net_4_x_I18N.CJK_test.dll.response</response>
  2125. </project>
  2126. <project dir="class/Mono.Http" library="Mono.Http-net_4_x">
  2127. <boot>false</boot>
  2128. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -nowarn:618 -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Web.dll -r:./../../class/lib/net_4_x/ICSharpCode.SharpZipLib.dll -r:./../../class/lib/net_4_x/Mono.Security.dll</flags>
  2129. <output>Mono.Http.dll</output>
  2130. <built_sources></built_sources>
  2131. <library_output>./../../class/lib/net_4_x/Mono.Http.dll</library_output>
  2132. <fx_version>4.5</fx_version>
  2133. <profile>net_4_x</profile>
  2134. <resources></resources>
  2135. <response>Mono.Http.dll.sources</response>
  2136. </project>
  2137. <project dir="class/Mono.Cairo" library="Mono.Cairo-net_4_x">
  2138. <boot>false</boot>
  2139. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig</flags>
  2140. <output>Mono.Cairo.dll</output>
  2141. <built_sources></built_sources>
  2142. <library_output>./../../class/lib/net_4_x/Mono.Cairo.dll</library_output>
  2143. <fx_version>4.5</fx_version>
  2144. <profile>net_4_x</profile>
  2145. <resources></resources>
  2146. <response>Mono.Cairo.dll.sources</response>
  2147. </project>
  2148. <project dir="class/Mono.Cecil" library="Mono.Cecil-net_4_x">
  2149. <boot>false</boot>
  2150. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -keyfile:../mono.snk -d:NET_3_5 /publicsign -r:./../../class/lib/net_4_x/System.Core.dll</flags>
  2151. <output>Mono.Cecil.dll</output>
  2152. <built_sources></built_sources>
  2153. <library_output>./../../class/lib/net_4_x/Mono.Cecil.dll</library_output>
  2154. <fx_version>4.5</fx_version>
  2155. <profile>net_4_x</profile>
  2156. <resources></resources>
  2157. <response>Mono.Cecil.dll.sources</response>
  2158. </project>
  2159. <project dir="class/Mono.Cecil.Mdb" library="Mono.Cecil.Mdb-net_4_x">
  2160. <boot>false</boot>
  2161. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig /d:CECIL -keyfile:../mono.snk -publicsign -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/Mono.Cecil.dll</flags>
  2162. <output>Mono.Cecil.Mdb.dll</output>
  2163. <built_sources></built_sources>
  2164. <library_output>./../../class/lib/net_4_x/Mono.Cecil.Mdb.dll</library_output>
  2165. <fx_version>4.5</fx_version>
  2166. <profile>net_4_x</profile>
  2167. <resources></resources>
  2168. <response>Mono.Cecil.Mdb.dll.sources</response>
  2169. </project>
  2170. <project dir="class/Mono.Debugger.Soft" library="Mono.Debugger.Soft-net_4_x">
  2171. <boot>false</boot>
  2172. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig /unsafe -D:MONO_DATACONVERTER_STATIC_METHODS -keyfile:../mono.snk /publicsign -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/Mono.Cecil.dll -r:./../../class/lib/net_4_x/System.Core.dll</flags>
  2173. <output>Mono.Debugger.Soft.dll</output>
  2174. <built_sources></built_sources>
  2175. <library_output>./../../class/lib/net_4_x/Mono.Debugger.Soft.dll</library_output>
  2176. <fx_version>4.5</fx_version>
  2177. <profile>net_4_x</profile>
  2178. <resources></resources>
  2179. <response>Mono.Debugger.Soft.dll.sources</response>
  2180. </project>
  2181. <project dir="class/Mono.Debugger.Soft" library="Mono.Debugger.Soft-tests-net_4_x">
  2182. <boot>false</boot>
  2183. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/Mono.Debugger.Soft.dll</flags>
  2184. <output>net_4_x_Mono.Debugger.Soft_test.dll</output>
  2185. <built_sources></built_sources>
  2186. <library_output>net_4_x_Mono.Debugger.Soft_test.dll</library_output>
  2187. <fx_version>4.5</fx_version>
  2188. <profile>net_4_x</profile>
  2189. <resources></resources>
  2190. <response>./../../build/deps/net_4_x_Mono.Debugger.Soft_test.dll.response</response>
  2191. </project>
  2192. <project dir="class/Mono.C5" library="Mono.C5-net_4_x">
  2193. <boot>false</boot>
  2194. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -nowarn:169,219,414,1030,3001,3005,3006 -r:./../../class/lib/net_4_x/System.dll</flags>
  2195. <output>Mono.C5.dll</output>
  2196. <built_sources></built_sources>
  2197. <library_output>./../../class/lib/net_4_x/Mono.C5.dll</library_output>
  2198. <fx_version>4.5</fx_version>
  2199. <profile>net_4_x</profile>
  2200. <resources></resources>
  2201. <response>Mono.C5.dll.sources</response>
  2202. </project>
  2203. <project dir="class/Mono.C5" library="Mono.C5-tests-net_4_x">
  2204. <boot>false</boot>
  2205. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/Mono.C5.dll -nowarn:169,219,414,1030,3001,3005,3006 -r:./../../class/lib/net_4_x/System.dll -nowarn:0618 -nowarn:219 -nowarn:169</flags>
  2206. <output>net_4_x_Mono.C5_test.dll</output>
  2207. <built_sources></built_sources>
  2208. <library_output>net_4_x_Mono.C5_test.dll</library_output>
  2209. <fx_version>4.5</fx_version>
  2210. <profile>net_4_x</profile>
  2211. <resources></resources>
  2212. <response>./../../build/deps/net_4_x_Mono.C5_test.dll.response</response>
  2213. </project>
  2214. <project dir="class/Mono.Management" library="Mono.Management-net_4_x">
  2215. <boot>false</boot>
  2216. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/Mono.Posix.dll</flags>
  2217. <output>Mono.Management.dll</output>
  2218. <built_sources></built_sources>
  2219. <library_output>./../../class/lib/net_4_x/Mono.Management.dll</library_output>
  2220. <fx_version>4.5</fx_version>
  2221. <profile>net_4_x</profile>
  2222. <resources></resources>
  2223. <response>Mono.Management.dll.sources</response>
  2224. </project>
  2225. <project dir="class/Mono.Options" library="Mono.Options-net_4_x">
  2226. <boot>false</boot>
  2227. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.dll</flags>
  2228. <output>Mono.Options.dll</output>
  2229. <built_sources></built_sources>
  2230. <library_output>./../../class/lib/net_4_x/Mono.Options.dll</library_output>
  2231. <fx_version>4.5</fx_version>
  2232. <profile>net_4_x</profile>
  2233. <resources></resources>
  2234. <response>Mono.Options.dll.sources</response>
  2235. </project>
  2236. <project dir="class/Mono.Options" library="Mono.Options-tests-net_4_x">
  2237. <boot>false</boot>
  2238. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/Mono.Options.dll</flags>
  2239. <output>net_4_x_Mono.Options_test.dll</output>
  2240. <built_sources></built_sources>
  2241. <library_output>net_4_x_Mono.Options_test.dll</library_output>
  2242. <fx_version>4.5</fx_version>
  2243. <profile>net_4_x</profile>
  2244. <resources></resources>
  2245. <response>./../../build/deps/net_4_x_Mono.Options_test.dll.response</response>
  2246. </project>
  2247. <project dir="class/Mono.Simd" library="Mono.Simd-net_4_x">
  2248. <boot>false</boot>
  2249. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig /unsafe -r:./../../class/lib/net_4_x/System.Core.dll</flags>
  2250. <output>Mono.Simd.dll</output>
  2251. <built_sources></built_sources>
  2252. <library_output>./../../class/lib/net_4_x/Mono.Simd.dll</library_output>
  2253. <fx_version>4.5</fx_version>
  2254. <profile>net_4_x</profile>
  2255. <resources></resources>
  2256. <response>Mono.Simd.dll.sources</response>
  2257. </project>
  2258. <project dir="class/Mono.Tasklets" library="Mono.Tasklets-net_4_x">
  2259. <boot>false</boot>
  2260. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig</flags>
  2261. <output>Mono.Tasklets.dll</output>
  2262. <built_sources></built_sources>
  2263. <library_output>./../../class/lib/net_4_x/Mono.Tasklets.dll</library_output>
  2264. <fx_version>4.5</fx_version>
  2265. <profile>net_4_x</profile>
  2266. <resources></resources>
  2267. <response>Mono.Tasklets.dll.sources</response>
  2268. </project>
  2269. <project dir="class/Mono.CodeContracts" library="Mono.CodeContracts-net_4_x">
  2270. <boot>false</boot>
  2271. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/Mono.Cecil.dll -r:./../../class/lib/net_4_x/Mono.Cecil.Mdb.dll</flags>
  2272. <output>Mono.CodeContracts.dll</output>
  2273. <built_sources></built_sources>
  2274. <library_output>./../../class/lib/net_4_x/Mono.CodeContracts.dll</library_output>
  2275. <fx_version>4.5</fx_version>
  2276. <profile>net_4_x</profile>
  2277. <resources></resources>
  2278. <response>Mono.CodeContracts.dll.sources</response>
  2279. </project>
  2280. <project dir="class/Mono.CodeContracts" library="Mono.CodeContracts-tests-net_4_x">
  2281. <boot>false</boot>
  2282. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/Mono.CodeContracts.dll</flags>
  2283. <output>net_4_x_Mono.CodeContracts_test.dll</output>
  2284. <built_sources></built_sources>
  2285. <library_output>net_4_x_Mono.CodeContracts_test.dll</library_output>
  2286. <fx_version>4.5</fx_version>
  2287. <profile>net_4_x</profile>
  2288. <resources></resources>
  2289. <response>./../../build/deps/net_4_x_Mono.CodeContracts_test.dll.response</response>
  2290. </project>
  2291. <project dir="class/Mono.Parallel" library="Mono.Parallel-net_4_x">
  2292. <boot>false</boot>
  2293. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.dll -d:INSIDE_MONO_PARALLEL</flags>
  2294. <output>Mono.Parallel.dll</output>
  2295. <built_sources></built_sources>
  2296. <library_output>./../../class/lib/net_4_x/Mono.Parallel.dll</library_output>
  2297. <fx_version>4.5</fx_version>
  2298. <profile>net_4_x</profile>
  2299. <resources></resources>
  2300. <response>Mono.Parallel.dll.sources</response>
  2301. </project>
  2302. <project dir="class/Mono.Parallel" library="Mono.Parallel-tests-net_4_x">
  2303. <boot>false</boot>
  2304. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/Mono.Parallel.dll</flags>
  2305. <output>net_4_x_Mono.Parallel_test.dll</output>
  2306. <built_sources></built_sources>
  2307. <library_output>net_4_x_Mono.Parallel_test.dll</library_output>
  2308. <fx_version>4.5</fx_version>
  2309. <profile>net_4_x</profile>
  2310. <resources></resources>
  2311. <response>./../../build/deps/net_4_x_Mono.Parallel_test.dll.response</response>
  2312. </project>
  2313. <project dir="class/Mono.Security.Win32" library="Mono.Security.Win32-net_4_x">
  2314. <boot>false</boot>
  2315. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig /unsafe</flags>
  2316. <output>Mono.Security.Win32.dll</output>
  2317. <built_sources></built_sources>
  2318. <library_output>./../../class/lib/net_4_x/Mono.Security.Win32.dll</library_output>
  2319. <fx_version>4.5</fx_version>
  2320. <profile>net_4_x</profile>
  2321. <resources></resources>
  2322. <response>Mono.Security.Win32.dll.sources</response>
  2323. </project>
  2324. <project dir="class/RabbitMQ.Client/src/apigen" library="RabbitMQ.Client.Apigen-net_4_x">
  2325. <boot></boot>
  2326. <flags>/codepage:65001 /main:RabbitMQ.Client.Apigen.Apigen -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:System -r:System.Xml</flags>
  2327. <output>RabbitMQ.Client.Apigen.exe</output>
  2328. <built_sources></built_sources>
  2329. <library_output>./../../../../class/lib/net_4_x/RabbitMQ.Client.Apigen.exe</library_output>
  2330. <fx_version>4.5</fx_version>
  2331. <profile>net_4_x</profile>
  2332. <resources></resources>
  2333. <response>RabbitMQ.Client.Apigen.exe.sources</response>
  2334. </project>
  2335. <project dir="class/RabbitMQ.Client/src/client" library="RabbitMQ.Client-net_4_x">
  2336. <boot>false</boot>
  2337. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -nowarn:618 -r:./../../../../class/lib/net_4_x/System.dll -r:./../../../../class/lib/net_4_x/System.Xml.dll</flags>
  2338. <output>RabbitMQ.Client.dll</output>
  2339. <built_sources>../../docs/specs/net_4_x-api-0-9.cs ../../docs/specs/net_4_x-api-0-8.cs ../../docs/specs/net_4_x-api-qpid-0-8.cs</built_sources>
  2340. <library_output>./../../../../class/lib/net_4_x/RabbitMQ.Client.dll</library_output>
  2341. <fx_version>4.5</fx_version>
  2342. <profile>net_4_x</profile>
  2343. <resources></resources>
  2344. <response>RabbitMQ.Client.dll.sources</response>
  2345. </project>
  2346. <project dir="class/Mono.Messaging.RabbitMQ" library="Mono.Messaging.RabbitMQ-net_4_x">
  2347. <boot>false</boot>
  2348. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -nowarn:618 -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Messaging.dll -r:./../../class/lib/net_4_x/Mono.Messaging.dll -r:./../../class/lib/net_4_x/RabbitMQ.Client.dll</flags>
  2349. <output>Mono.Messaging.RabbitMQ.dll</output>
  2350. <built_sources></built_sources>
  2351. <library_output>./../../class/lib/net_4_x/Mono.Messaging.RabbitMQ.dll</library_output>
  2352. <fx_version>4.5</fx_version>
  2353. <profile>net_4_x</profile>
  2354. <resources></resources>
  2355. <response>Mono.Messaging.RabbitMQ.dll.sources</response>
  2356. </project>
  2357. <project dir="class/Mono.Messaging.RabbitMQ" library="Mono.Messaging.RabbitMQ-tests-net_4_x">
  2358. <boot>false</boot>
  2359. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/Mono.Messaging.RabbitMQ.dll -nowarn:618 -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Messaging.dll -r:./../../class/lib/net_4_x/Mono.Messaging.dll -r:./../../class/lib/net_4_x/RabbitMQ.Client.dll -nowarn:0618 -nowarn:219 -nowarn:169</flags>
  2360. <output>net_4_x_Mono.Messaging.RabbitMQ_test.dll</output>
  2361. <built_sources></built_sources>
  2362. <library_output>net_4_x_Mono.Messaging.RabbitMQ_test.dll</library_output>
  2363. <fx_version>4.5</fx_version>
  2364. <profile>net_4_x</profile>
  2365. <resources></resources>
  2366. <response>./../../build/deps/net_4_x_Mono.Messaging.RabbitMQ_test.dll.response</response>
  2367. </project>
  2368. <project dir="class/System.Dynamic" library="System.Dynamic-net_4_x">
  2369. <boot>false</boot>
  2370. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -unsafe -d:CODEPLEX_40 -nowarn:414,169 -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.dll</flags>
  2371. <output>System.Dynamic.dll</output>
  2372. <built_sources></built_sources>
  2373. <library_output>./../../class/lib/net_4_x/System.Dynamic.dll</library_output>
  2374. <fx_version>4.5</fx_version>
  2375. <profile>net_4_x</profile>
  2376. <resources></resources>
  2377. <response>System.Dynamic.dll.sources</response>
  2378. </project>
  2379. <project dir="class/System.Windows.Forms.DataVisualization" library="System.Windows.Forms.DataVisualization-net_4_x">
  2380. <boot>false</boot>
  2381. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Drawing.dll -r:./../../class/lib/net_4_x/System.Windows.Forms.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Data.dll -r:./../../class/lib/net_4_x/System.Xml.dll</flags>
  2382. <output>System.Windows.Forms.DataVisualization.dll</output>
  2383. <built_sources></built_sources>
  2384. <library_output>./../../class/lib/net_4_x/System.Windows.Forms.DataVisualization.dll</library_output>
  2385. <fx_version>4.5</fx_version>
  2386. <profile>net_4_x</profile>
  2387. <resources></resources>
  2388. <response>System.Windows.Forms.DataVisualization.dll.sources</response>
  2389. </project>
  2390. <project dir="class/System.Windows.Forms.DataVisualization" library="System.Windows.Forms.DataVisualization-tests-net_4_x">
  2391. <boot>false</boot>
  2392. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Windows.Forms.DataVisualization.dll -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Drawing.dll -r:./../../class/lib/net_4_x/System.Windows.Forms.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Data.dll -r:./../../class/lib/net_4_x/System.Xml.dll</flags>
  2393. <output>net_4_x_System.Windows.Forms.DataVisualization_test.dll</output>
  2394. <built_sources></built_sources>
  2395. <library_output>net_4_x_System.Windows.Forms.DataVisualization_test.dll</library_output>
  2396. <fx_version>4.5</fx_version>
  2397. <profile>net_4_x</profile>
  2398. <resources></resources>
  2399. <response>./../../build/deps/net_4_x_System.Windows.Forms.DataVisualization_test.dll.response</response>
  2400. </project>
  2401. <project dir="class/System.Reactive.Interfaces" library="System.Reactive.Interfaces-net_4_x">
  2402. <boot>false</boot>
  2403. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig @more_build_args -d:HAS_EDI -d:PREFERASYNC -d:PREFER_ASYNC -d:HAS_AWAIT -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll</flags>
  2404. <output>System.Reactive.Interfaces.dll</output>
  2405. <built_sources></built_sources>
  2406. <library_output>./../../class/lib/net_4_x/System.Reactive.Interfaces.dll</library_output>
  2407. <fx_version>4.5</fx_version>
  2408. <profile>net_4_x</profile>
  2409. <resources></resources>
  2410. <response>System.Reactive.Interfaces.dll.sources</response>
  2411. </project>
  2412. <project dir="class/System.Reactive.Core" library="System.Reactive.Core-net_4_x">
  2413. <boot>false</boot>
  2414. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig @more_build_args -d:HAS_EDI -d:PREFERASYNC -d:PREFER_ASYNC -d:HAS_AWAIT -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Reactive.Interfaces.dll</flags>
  2415. <output>System.Reactive.Core.dll</output>
  2416. <built_sources></built_sources>
  2417. <library_output>./../../class/lib/net_4_x/System.Reactive.Core.dll</library_output>
  2418. <fx_version>4.5</fx_version>
  2419. <profile>net_4_x</profile>
  2420. <resources></resources>
  2421. <response>System.Reactive.Core.dll.sources</response>
  2422. </project>
  2423. <project dir="class/System.Reactive.Linq" library="System.Reactive.Linq-net_4_x">
  2424. <boot>false</boot>
  2425. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig @more_build_args -d:HAS_EDI -d:PREFERASYNC -d:PREFER_ASYNC -d:HAS_AWAIT -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Reactive.Interfaces.dll -r:./../../class/lib/net_4_x/System.Reactive.Core.dll</flags>
  2426. <output>System.Reactive.Linq.dll</output>
  2427. <built_sources></built_sources>
  2428. <library_output>./../../class/lib/net_4_x/System.Reactive.Linq.dll</library_output>
  2429. <fx_version>4.5</fx_version>
  2430. <profile>net_4_x</profile>
  2431. <resources></resources>
  2432. <response>System.Reactive.Linq.dll.sources</response>
  2433. </project>
  2434. <project dir="class/System.Reactive.PlatformServices" library="System.Reactive.PlatformServices-net_4_x">
  2435. <boot>false</boot>
  2436. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig @more_build_args -d:HAS_EDI -d:PREFERASYNC -d:PREFER_ASYNC -d:HAS_AWAIT -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Reactive.Interfaces.dll -r:./../../class/lib/net_4_x/System.Reactive.Core.dll -r:./../../class/lib/net_4_x/System.Reactive.Linq.dll</flags>
  2437. <output>System.Reactive.PlatformServices.dll</output>
  2438. <built_sources></built_sources>
  2439. <library_output>./../../class/lib/net_4_x/System.Reactive.PlatformServices.dll</library_output>
  2440. <fx_version>4.5</fx_version>
  2441. <profile>net_4_x</profile>
  2442. <resources></resources>
  2443. <response>System.Reactive.PlatformServices.dll.sources</response>
  2444. </project>
  2445. <project dir="class/System.Reactive.Providers" library="System.Reactive.Providers-net_4_x">
  2446. <boot>false</boot>
  2447. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig @more_build_args -d:HAS_EDI -d:PREFERASYNC -d:PREFER_ASYNC -d:HAS_AWAIT -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Reactive.Interfaces.dll -r:./../../class/lib/net_4_x/System.Reactive.Core.dll -r:./../../class/lib/net_4_x/System.Reactive.Linq.dll</flags>
  2448. <output>System.Reactive.Providers.dll</output>
  2449. <built_sources></built_sources>
  2450. <library_output>./../../class/lib/net_4_x/System.Reactive.Providers.dll</library_output>
  2451. <fx_version>4.5</fx_version>
  2452. <profile>net_4_x</profile>
  2453. <resources></resources>
  2454. <response>System.Reactive.Providers.dll.sources</response>
  2455. </project>
  2456. <project dir="class/System.Reactive.Runtime.Remoting" library="System.Reactive.Runtime.Remoting-net_4_x">
  2457. <boot>false</boot>
  2458. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig @more_build_args -d:HAS_EDI -d:PREFERASYNC -d:PREFER_ASYNC -d:HAS_AWAIT -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Reactive.Interfaces.dll -r:./../../class/lib/net_4_x/System.Reactive.Core.dll -r:./../../class/lib/net_4_x/System.Reactive.Linq.dll</flags>
  2459. <output>System.Reactive.Runtime.Remoting.dll</output>
  2460. <built_sources></built_sources>
  2461. <library_output>./../../class/lib/net_4_x/System.Reactive.Runtime.Remoting.dll</library_output>
  2462. <fx_version>4.5</fx_version>
  2463. <profile>net_4_x</profile>
  2464. <resources></resources>
  2465. <response>System.Reactive.Runtime.Remoting.dll.sources</response>
  2466. </project>
  2467. <project dir="class/System.Reactive.Windows.Forms" library="System.Reactive.Windows.Forms-net_4_x">
  2468. <boot>false</boot>
  2469. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig @more_build_args -d:HAS_EDI -d:PREFERASYNC -d:PREFER_ASYNC -d:HAS_AWAIT -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Reactive.Interfaces.dll -r:./../../class/lib/net_4_x/System.Reactive.Core.dll -r:./../../class/lib/net_4_x/System.Reactive.Linq.dll -r:./../../class/lib/net_4_x/System.Windows.Forms.dll</flags>
  2470. <output>System.Reactive.Windows.Forms.dll</output>
  2471. <built_sources></built_sources>
  2472. <library_output>./../../class/lib/net_4_x/System.Reactive.Windows.Forms.dll</library_output>
  2473. <fx_version>4.5</fx_version>
  2474. <profile>net_4_x</profile>
  2475. <resources></resources>
  2476. <response>System.Reactive.Windows.Forms.dll.sources</response>
  2477. </project>
  2478. <project dir="class/System.Reactive.Windows.Threading" library="System.Reactive.Windows.Threading-net_4_x">
  2479. <boot>false</boot>
  2480. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig @more_build_args -d:HAS_EDI -d:PREFERASYNC -d:PREFER_ASYNC -d:HAS_AWAIT -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Reactive.Interfaces.dll -r:./../../class/lib/net_4_x/System.Reactive.Core.dll -r:./../../class/lib/net_4_x/System.Reactive.Linq.dll -r:./../../class/lib/net_4_x/WindowsBase.dll</flags>
  2481. <output>System.Reactive.Windows.Threading.dll</output>
  2482. <built_sources></built_sources>
  2483. <library_output>./../../class/lib/net_4_x/System.Reactive.Windows.Threading.dll</library_output>
  2484. <fx_version>4.5</fx_version>
  2485. <profile>net_4_x</profile>
  2486. <resources></resources>
  2487. <response>System.Reactive.Windows.Threading.dll.sources</response>
  2488. </project>
  2489. <project dir="class/System.Reactive.Observable.Aliases" library="System.Reactive.Observable.Aliases-net_4_x">
  2490. <boot>false</boot>
  2491. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig @more_build_args -d:HAS_EDI -d:PREFERASYNC -d:PREFER_ASYNC -d:HAS_AWAIT -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Reactive.Interfaces.dll -r:./../../class/lib/net_4_x/System.Reactive.Core.dll -r:./../../class/lib/net_4_x/System.Reactive.Linq.dll -r:./../../class/lib/net_4_x/System.Reactive.Providers.dll</flags>
  2492. <output>System.Reactive.Observable.Aliases.dll</output>
  2493. <built_sources></built_sources>
  2494. <library_output>./../../class/lib/net_4_x/System.Reactive.Observable.Aliases.dll</library_output>
  2495. <fx_version>4.5</fx_version>
  2496. <profile>net_4_x</profile>
  2497. <resources></resources>
  2498. <response>System.Reactive.Observable.Aliases.dll.sources</response>
  2499. </project>
  2500. <project dir="class/System.Reactive.Experimental" library="System.Reactive.Experimental-net_4_x">
  2501. <boot>false</boot>
  2502. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig @more_build_args -d:HAS_EDI -d:PREFERASYNC -d:PREFER_ASYNC -d:HAS_AWAIT -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Reactive.Interfaces.dll -r:./../../class/lib/net_4_x/System.Reactive.Core.dll -r:./../../class/lib/net_4_x/System.Reactive.Linq.dll</flags>
  2503. <output>System.Reactive.Experimental.dll</output>
  2504. <built_sources></built_sources>
  2505. <library_output>./../../class/lib/net_4_x/System.Reactive.Experimental.dll</library_output>
  2506. <fx_version>4.5</fx_version>
  2507. <profile>net_4_x</profile>
  2508. <resources></resources>
  2509. <response>System.Reactive.Experimental.dll.sources</response>
  2510. </project>
  2511. <project dir="class/System.Reactive.Debugger" library="System.Reactive.Debugger-net_4_x">
  2512. <boot>false</boot>
  2513. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig @more_build_args -d:HAS_EDI -d:PREFERASYNC -d:PREFER_ASYNC -d:HAS_AWAIT -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Reactive.Interfaces.dll -r:./../../class/lib/net_4_x/System.Reactive.Core.dll -r:./../../class/lib/net_4_x/System.Reactive.Linq.dll</flags>
  2514. <output>System.Reactive.Debugger.dll</output>
  2515. <built_sources></built_sources>
  2516. <library_output>./../../class/lib/net_4_x/System.Reactive.Debugger.dll</library_output>
  2517. <fx_version>4.5</fx_version>
  2518. <profile>net_4_x</profile>
  2519. <resources></resources>
  2520. <response>System.Reactive.Debugger.dll.sources</response>
  2521. </project>
  2522. <project dir="class/System.Data.Services.Client" library="System.Data.Services.Client-net_4_x">
  2523. <boot>false</boot>
  2524. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -d:NET_3_5 -warn:2 -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Xml.Linq.dll -r:./../../class/lib/net_4_x/System.Data.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/WindowsBase.dll</flags>
  2525. <output>System.Data.Services.Client.dll</output>
  2526. <built_sources></built_sources>
  2527. <library_output>./../../class/lib/net_4_x/System.Data.Services.Client.dll</library_output>
  2528. <fx_version>4.5</fx_version>
  2529. <profile>net_4_x</profile>
  2530. <resources>System.Data.Services.Client,Client/System.Data.Services.Client.txt</resources>
  2531. <response>System.Data.Services.Client.dll.sources</response>
  2532. </project>
  2533. <project dir="class/System.Data.Services" library="System.Data.Services-net_4_x">
  2534. <boot>false</boot>
  2535. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -d:NET_3_5 -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.ServiceModel.dll -r:./../../class/lib/net_4_x/System.ServiceModel.Web.dll -r:./../../class/lib/net_4_x/System.Data.Services.Client.dll -r:./../../class/lib/net_4_x/System.ServiceModel.Activation.dll</flags>
  2536. <output>System.Data.Services.dll</output>
  2537. <built_sources></built_sources>
  2538. <library_output>./../../class/lib/net_4_x/System.Data.Services.dll</library_output>
  2539. <fx_version>4.5</fx_version>
  2540. <profile>net_4_x</profile>
  2541. <resources></resources>
  2542. <response>System.Data.Services.dll.sources</response>
  2543. </project>
  2544. <project dir="class/System.Data.Services" library="System.Data.Services-tests-net_4_x">
  2545. <boot>false</boot>
  2546. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Data.Services.dll</flags>
  2547. <output>net_4_x_System.Data.Services_test.dll</output>
  2548. <built_sources></built_sources>
  2549. <library_output>net_4_x_System.Data.Services_test.dll</library_output>
  2550. <fx_version>4.5</fx_version>
  2551. <profile>net_4_x</profile>
  2552. <resources></resources>
  2553. <response>./../../build/deps/net_4_x_System.Data.Services_test.dll.response</response>
  2554. </project>
  2555. <project dir="class/System.Data.Entity" library="System.Data.Entity-net_4_x">
  2556. <boot>false</boot>
  2557. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -warn:2 -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Data.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Xml.Linq.dll -r:./../../class/lib/net_4_x/System.Transactions.dll -r:./../../class/lib/net_4_x/System.Runtime.Serialization.dll -r:./../../class/lib/net_4_x/System.ComponentModel.DataAnnotations.dll -r:./../../class/lib/net_4_x/System.Configuration.dll</flags>
  2558. <output>System.Data.Entity.dll</output>
  2559. <built_sources></built_sources>
  2560. <library_output>./../../class/lib/net_4_x/System.Data.Entity.dll</library_output>
  2561. <fx_version>4.5</fx_version>
  2562. <profile>net_4_x</profile>
  2563. <resources></resources>
  2564. <response>System.Data.Entity.dll.sources</response>
  2565. </project>
  2566. <project dir="class/System.Data.DataSetExtensions" library="System.Data.DataSetExtensions-net_4_x">
  2567. <boot>false</boot>
  2568. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Data.dll -r:./../../class/lib/net_4_x/System.Xml.dll</flags>
  2569. <output>System.Data.DataSetExtensions.dll</output>
  2570. <built_sources></built_sources>
  2571. <library_output>./../../class/lib/net_4_x/System.Data.DataSetExtensions.dll</library_output>
  2572. <fx_version>4.5</fx_version>
  2573. <profile>net_4_x</profile>
  2574. <resources></resources>
  2575. <response>System.Data.DataSetExtensions.dll.sources</response>
  2576. </project>
  2577. <project dir="class/System.Data.DataSetExtensions" library="System.Data.DataSetExtensions-tests-net_4_x">
  2578. <boot>false</boot>
  2579. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Data.DataSetExtensions.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Data.dll -r:./../../class/lib/net_4_x/System.Xml.dll -doc:net_4_x_System.Data.DataSetExtensions_test.xml -nowarn:219 -nowarn:169</flags>
  2580. <output>net_4_x_System.Data.DataSetExtensions_test.dll</output>
  2581. <built_sources></built_sources>
  2582. <library_output>net_4_x_System.Data.DataSetExtensions_test.dll</library_output>
  2583. <fx_version>4.5</fx_version>
  2584. <profile>net_4_x</profile>
  2585. <resources></resources>
  2586. <response>./../../build/deps/net_4_x_System.Data.DataSetExtensions_test.dll.response</response>
  2587. </project>
  2588. <project dir="class/System.Json.Microsoft" library="System.Json.Microsoft-net_4_x">
  2589. <boot>false</boot>
  2590. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig /d:ASPNETMVC -keyfile:../winfx.pub -delaysign -d:FEATURE_DYNAMIC -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Runtime.Serialization.dll -r:./../../class/lib/net_4_x/Microsoft.CSharp.dll</flags>
  2591. <output>System.Json.Microsoft.dll</output>
  2592. <built_sources></built_sources>
  2593. <library_output>./../../class/lib/net_4_x/System.Json.Microsoft.dll</library_output>
  2594. <fx_version>4.5</fx_version>
  2595. <profile>net_4_x</profile>
  2596. <resources>System.Json.Properties.Resources,System.Json/Properties/Resources.resx</resources>
  2597. <response>System.Json.Microsoft.dll.sources</response>
  2598. </project>
  2599. <project dir="class/System.Json.Microsoft" library="System.Json.Microsoft-tests-net_4_x">
  2600. <boot>false</boot>
  2601. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Json.Microsoft.dll /d:ASPNETMVC -keyfile:../winfx.pub -delaysign -d:FEATURE_DYNAMIC -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Runtime.Serialization.dll -r:./../../class/lib/net_4_x/Microsoft.CSharp.dll</flags>
  2602. <output>net_4_x_System.Json.Microsoft_test.dll</output>
  2603. <built_sources></built_sources>
  2604. <library_output>net_4_x_System.Json.Microsoft_test.dll</library_output>
  2605. <fx_version>4.5</fx_version>
  2606. <profile>net_4_x</profile>
  2607. <resources></resources>
  2608. <response>./../../build/deps/net_4_x_System.Json.Microsoft_test.dll.response</response>
  2609. </project>
  2610. <project dir="class/System.Threading.Tasks.Dataflow" library="System.Threading.Tasks.Dataflow-net_4_x">
  2611. <boot>false</boot>
  2612. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.dll -d:CONCURRENT_COLLECTIONS</flags>
  2613. <output>System.Threading.Tasks.Dataflow.dll</output>
  2614. <built_sources></built_sources>
  2615. <library_output>./../../class/lib/net_4_x/System.Threading.Tasks.Dataflow.dll</library_output>
  2616. <fx_version>4.5</fx_version>
  2617. <profile>net_4_x</profile>
  2618. <resources></resources>
  2619. <response>System.Threading.Tasks.Dataflow.dll.sources</response>
  2620. </project>
  2621. <project dir="class/System.Threading.Tasks.Dataflow" library="System.Threading.Tasks.Dataflow-tests-net_4_x">
  2622. <boot>false</boot>
  2623. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Threading.Tasks.Dataflow.dll</flags>
  2624. <output>net_4_x_System.Threading.Tasks.Dataflow_test.dll</output>
  2625. <built_sources></built_sources>
  2626. <library_output>net_4_x_System.Threading.Tasks.Dataflow_test.dll</library_output>
  2627. <fx_version>4.5</fx_version>
  2628. <profile>net_4_x</profile>
  2629. <resources></resources>
  2630. <response>./../../build/deps/net_4_x_System.Threading.Tasks.Dataflow_test.dll.response</response>
  2631. </project>
  2632. <project dir="class/System.ComponentModel.Composition.4.5" library="System.ComponentModel.Composition-net_4_x">
  2633. <boot>false</boot>
  2634. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -d:CLR40 -d:USE_ECMA_KEY,FEATURE_REFLECTIONCONTEXT,FEATURE_REFLECTIONFILEIO,FEATURE_SERIALIZATION,FEATURE_SLIMLOCK -nowarn:219,414 -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll</flags>
  2635. <output>System.ComponentModel.Composition.dll</output>
  2636. <built_sources></built_sources>
  2637. <library_output>./../../class/lib/net_4_x/System.ComponentModel.Composition.dll</library_output>
  2638. <fx_version>4.5</fx_version>
  2639. <profile>net_4_x</profile>
  2640. <resources>Microsoft.Internal.Strings,src/ComponentModel/Strings.resx</resources>
  2641. <response>System.ComponentModel.Composition.dll.sources</response>
  2642. </project>
  2643. <project dir="class/System.Windows" library="System.Windows-net_4_x">
  2644. <boot>false</boot>
  2645. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig -r:./../../class/lib/net_4_x/System.dll</flags>
  2646. <output>System.Windows.dll</output>
  2647. <built_sources></built_sources>
  2648. <library_output>./../../class/lib/net_4_x/System.Windows.dll</library_output>
  2649. <fx_version>4.5</fx_version>
  2650. <profile>net_4_x</profile>
  2651. <resources></resources>
  2652. <response>System.Windows.dll.sources</response>
  2653. </project>
  2654. <project dir="class/System.Xml.Serialization" library="System.Xml.Serialization-net_4_x">
  2655. <boot>false</boot>
  2656. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.ServiceModel.dll</flags>
  2657. <output>System.Xml.Serialization.dll</output>
  2658. <built_sources></built_sources>
  2659. <library_output>./../../class/lib/net_4_x/System.Xml.Serialization.dll</library_output>
  2660. <fx_version>4.5</fx_version>
  2661. <profile>net_4_x</profile>
  2662. <resources></resources>
  2663. <response>System.Xml.Serialization.dll.sources</response>
  2664. </project>
  2665. <project dir="class/Mono.Security.Providers.DotNet" library="Mono.Security.Providers.DotNet-net_4_x">
  2666. <boot>false</boot>
  2667. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -unsafe -nowarn:1030 -keyfile:../mono.pub -delaysign -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/Mono.Security.dll</flags>
  2668. <output>Mono.Security.Providers.DotNet.dll</output>
  2669. <built_sources></built_sources>
  2670. <library_output>./../../class/lib/net_4_x/Mono.Security.Providers.DotNet.dll</library_output>
  2671. <fx_version>4.5</fx_version>
  2672. <profile>net_4_x</profile>
  2673. <resources></resources>
  2674. <response>Mono.Security.Providers.DotNet.dll.sources</response>
  2675. </project>
  2676. <project dir="class/Mono.Security.Providers.OldTls" library="Mono.Security.Providers.OldTls-net_4_x">
  2677. <boot>false</boot>
  2678. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -unsafe -nowarn:1030 -keyfile:../mono.pub -delaysign -d:SECURITY_DEP -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/Mono.Security.dll</flags>
  2679. <output>Mono.Security.Providers.OldTls.dll</output>
  2680. <built_sources></built_sources>
  2681. <library_output>./../../class/lib/net_4_x/Mono.Security.Providers.OldTls.dll</library_output>
  2682. <fx_version>4.5</fx_version>
  2683. <profile>net_4_x</profile>
  2684. <resources></resources>
  2685. <response>Mono.Security.Providers.OldTls.dll.sources</response>
  2686. </project>
  2687. <project dir="class/System.DirectoryServices.Protocols" library="System.DirectoryServices.Protocols-net_4_x">
  2688. <boot>false</boot>
  2689. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.DirectoryServices.dll -r:./../../class/lib/net_4_x/System.Xml.dll</flags>
  2690. <output>System.DirectoryServices.Protocols.dll</output>
  2691. <built_sources></built_sources>
  2692. <library_output>./../../class/lib/net_4_x/System.DirectoryServices.Protocols.dll</library_output>
  2693. <fx_version>4.5</fx_version>
  2694. <profile>net_4_x</profile>
  2695. <resources></resources>
  2696. <response>System.DirectoryServices.Protocols.dll.sources</response>
  2697. </project>
  2698. <project dir="class/Microsoft.VisualC" library="Microsoft.VisualC-net_4_x">
  2699. <boot>false</boot>
  2700. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.dll</flags>
  2701. <output>Microsoft.VisualC.dll</output>
  2702. <built_sources></built_sources>
  2703. <library_output>./../../class/lib/net_4_x/Microsoft.VisualC.dll</library_output>
  2704. <fx_version>4.5</fx_version>
  2705. <profile>net_4_x</profile>
  2706. <resources></resources>
  2707. <response>Microsoft.VisualC.dll.sources</response>
  2708. </project>
  2709. <project dir="class/WebMatrix.Data" library="WebMatrix.Data-net_4_x">
  2710. <boot>false</boot>
  2711. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Data.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Configuration.dll</flags>
  2712. <output>WebMatrix.Data.dll</output>
  2713. <built_sources></built_sources>
  2714. <library_output>./../../class/lib/net_4_x/WebMatrix.Data.dll</library_output>
  2715. <fx_version>4.5</fx_version>
  2716. <profile>net_4_x</profile>
  2717. <resources></resources>
  2718. <response>WebMatrix.Data.dll.sources</response>
  2719. </project>
  2720. <project dir="class/WebMatrix.Data" library="WebMatrix.Data-tests-net_4_x">
  2721. <boot>false</boot>
  2722. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/WebMatrix.Data.dll</flags>
  2723. <output>net_4_x_WebMatrix.Data_test.dll</output>
  2724. <built_sources></built_sources>
  2725. <library_output>net_4_x_WebMatrix.Data_test.dll</library_output>
  2726. <fx_version>4.5</fx_version>
  2727. <profile>net_4_x</profile>
  2728. <resources></resources>
  2729. <response>./../../build/deps/net_4_x_WebMatrix.Data_test.dll.response</response>
  2730. </project>
  2731. <project dir="class/monodoc" library="monodoc-net_4_x">
  2732. <boot>false</boot>
  2733. <flags>/codepage:65001 /nowarn:618,612,672,809 /define:LEGACY_MODE -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig /unsafe /nowarn:169,164,162,168,219,618,612 /resource:../../docs/monodoc.xml,monodoc.xml /resource:Resources/base.css,base.css /resource:Resources/ecmaspec-html-css.xsl,ecmaspec-html-css.xsl /resource:Resources/ecmaspec-html.xsl,ecmaspec-html.xsl /resource:Resources/ecmaspec.css,ecmaspec.css /resource:Resources/helper.js,helper.js /resource:Resources/home.html,home.html /resource:Resources/Lminus.gif,Lminus.gif /resource:Resources/Lplus.gif,Lplus.gif /resource:Resources/creativecommons.png,creativecommons.png /resource:Resources/mdoc-html-format.xsl,mdoc-html-format.xsl /resource:Resources/mdoc-html-utils.xsl,mdoc-html-utils.xsl /resource:Resources/mdoc-sections-css.xsl,mdoc-sections-css.xsl /resource:Resources/mdoc-sections.xsl,mdoc-sections.xsl /resource:Resources/mono-ecma-css.xsl,mono-ecma-css.xsl /resource:Resources/mono-ecma-impl.xsl,mono-ecma-impl.xsl /resource:Resources/mono-ecma.css,mono-ecma.css /resource:Resources/mono-ecma.xsl,mono-ecma.xsl /resource:Resources/toc-html.xsl,toc-html.xsl /resource:Resources/images/bc_bg.png,bc_bg.png /resource:Resources/images/bc_separator.png,bc_separator.png /resource:Resources/images/error.png,error.png /resource:Resources/images/hatch.png,hatch.png /resource:Resources/images/headerbg.png,headerbg.png /resource:Resources/images/help.png,help.png /resource:Resources/images/house.png,house.png /resource:Resources/images/members.png,members.png /resource:Resources/images/namespace.png,namespace.png /resource:Resources/images/privclass.png,privclass.png /resource:Resources/images/privdelegate.png,privdelegate.png /resource:Resources/images/privenumeration.png,privenumeration.png /resource:Resources/images/privevent.png,privevent.png /resource:Resources/images/privextension.png,privextension.png /resource:Resources/images/privfield.png,privfield.png /resource:Resources/images/privinterface.png,privinterface.png /resource:Resources/images/privmethod.png,privmethod.png /resource:Resources/images/privproperty.png,privproperty.png /resource:Resources/images/privstructure.png,privstructure.png /resource:Resources/images/protclass.png,protclass.png /resource:Resources/images/protdelegate.png,protdelegate.png /resource:Resources/images/protenumeration.png,protenumeration.png /resource:Resources/images/protevent.png,protevent.png /resource:Resources/images/protextension.png,protextension.png /resource:Resources/images/protfield.png,protfield.png /resource:Resources/images/protinterface.png,protinterface.png /resource:Resources/images/protmethod.png,protmethod.png /resource:Resources/images/protproperty.png,protproperty.png /resource:Resources/images/protstructure.png,protstructure.png /resource:Resources/images/pubclass.png,pubclass.png /resource:Resources/images/pubdelegate.png,pubdelegate.png /resource:Resources/images/pubenumeration.png,pubenumeration.png /resource:Resources/images/pubevent.png,pubevent.png /resource:Resources/images/pubextension.png,pubextension.png /resource:Resources/images/pubfield.png,pubfield.png /resource:Resources/images/pubinterface.png,pubinterface.png /resource:Resources/images/pubmethod.png,pubmethod.png /resource:Resources/images/pubproperty.png,pubproperty.png /resource:Resources/images/pubstructure.png,pubstructure.png /resource:Resources/images/reference.png,reference.png /resource:Resources/images/treebg.png,treebg.png /publicsign -r:./../../class/lib/net_4_x/ICSharpCode.SharpZipLib.dll -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/System.Xml.Linq.dll -r:./../../class/lib/net_4_x/System.Configuration.dll</flags>
  2734. <output>monodoc.dll</output>
  2735. <built_sources></built_sources>
  2736. <library_output>./../../class/lib/net_4_x/monodoc.dll</library_output>
  2737. <fx_version>4.5</fx_version>
  2738. <profile>net_4_x</profile>
  2739. <resources></resources>
  2740. <response>monodoc.dll.sources</response>
  2741. </project>
  2742. <project dir="class/monodoc" library="monodoc-tests-net_4_x">
  2743. <boot>false</boot>
  2744. <flags>/codepage:65001 /nowarn:618,612,672,809 /define:LEGACY_MODE -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/monodoc.dll</flags>
  2745. <output>net_4_x_monodoc_test.dll</output>
  2746. <built_sources></built_sources>
  2747. <library_output>net_4_x_monodoc_test.dll</library_output>
  2748. <fx_version>4.5</fx_version>
  2749. <profile>net_4_x</profile>
  2750. <resources></resources>
  2751. <response>./../../build/deps/net_4_x_monodoc_test.dll.response</response>
  2752. </project>
  2753. <project dir="class/System.Deployment" library="System.Deployment-net_4_x">
  2754. <boot>false</boot>
  2755. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -delaysign -keyfile:../msfinal.pub</flags>
  2756. <output>System.Deployment.dll</output>
  2757. <built_sources></built_sources>
  2758. <library_output>./../../class/lib/net_4_x/System.Deployment.dll</library_output>
  2759. <fx_version>4.5</fx_version>
  2760. <profile>net_4_x</profile>
  2761. <resources></resources>
  2762. <response>System.Deployment.dll.sources</response>
  2763. </project>
  2764. <project dir="class/System.Web.Mobile" library="System.Web.Mobile-net_4_x">
  2765. <boot>false</boot>
  2766. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -delaysign -keyfile:../msfinal.pub</flags>
  2767. <output>System.Web.Mobile.dll</output>
  2768. <built_sources></built_sources>
  2769. <library_output>./../../class/lib/net_4_x/System.Web.Mobile.dll</library_output>
  2770. <fx_version>4.5</fx_version>
  2771. <profile>net_4_x</profile>
  2772. <resources></resources>
  2773. <response>System.Web.Mobile.dll.sources</response>
  2774. </project>
  2775. <project dir="class/System.Web.RegularExpressions" library="System.Web.RegularExpressions-net_4_x">
  2776. <boot>false</boot>
  2777. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -delaysign -keyfile:../msfinal.pub</flags>
  2778. <output>System.Web.RegularExpressions.dll</output>
  2779. <built_sources></built_sources>
  2780. <library_output>./../../class/lib/net_4_x/System.Web.RegularExpressions.dll</library_output>
  2781. <fx_version>4.5</fx_version>
  2782. <profile>net_4_x</profile>
  2783. <resources></resources>
  2784. <response>System.Web.RegularExpressions.dll.sources</response>
  2785. </project>
  2786. <project dir="class/System.Workflow.Activities" library="System.Workflow.Activities-net_4_x">
  2787. <boot>false</boot>
  2788. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -delaysign -keyfile:../winfx.pub</flags>
  2789. <output>System.Workflow.Activities.dll</output>
  2790. <built_sources></built_sources>
  2791. <library_output>./../../class/lib/net_4_x/System.Workflow.Activities.dll</library_output>
  2792. <fx_version>4.5</fx_version>
  2793. <profile>net_4_x</profile>
  2794. <resources></resources>
  2795. <response>System.Workflow.Activities.dll.sources</response>
  2796. </project>
  2797. <project dir="class/System.Workflow.ComponentModel" library="System.Workflow.ComponentModel-net_4_x">
  2798. <boot>false</boot>
  2799. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -delaysign -keyfile:../winfx.pub</flags>
  2800. <output>System.Workflow.ComponentModel.dll</output>
  2801. <built_sources></built_sources>
  2802. <library_output>./../../class/lib/net_4_x/System.Workflow.ComponentModel.dll</library_output>
  2803. <fx_version>4.5</fx_version>
  2804. <profile>net_4_x</profile>
  2805. <resources></resources>
  2806. <response>System.Workflow.ComponentModel.dll.sources</response>
  2807. </project>
  2808. <project dir="class/System.Workflow.Runtime" library="System.Workflow.Runtime-net_4_x">
  2809. <boot>false</boot>
  2810. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -delaysign -keyfile:../winfx.pub</flags>
  2811. <output>System.Workflow.Runtime.dll</output>
  2812. <built_sources></built_sources>
  2813. <library_output>./../../class/lib/net_4_x/System.Workflow.Runtime.dll</library_output>
  2814. <fx_version>4.5</fx_version>
  2815. <profile>net_4_x</profile>
  2816. <resources></resources>
  2817. <response>System.Workflow.Runtime.dll.sources</response>
  2818. </project>
  2819. <project dir="class/Facades/System.Collections.Concurrent" library="Facades_System.Collections.Concurrent-net_4_x">
  2820. <boot>false</boot>
  2821. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  2822. <output>System.Collections.Concurrent.dll</output>
  2823. <built_sources></built_sources>
  2824. <library_output>./../../../class/lib/net_4_x/Facades/System.Collections.Concurrent.dll</library_output>
  2825. <fx_version>4.5</fx_version>
  2826. <profile>net_4_x</profile>
  2827. <resources></resources>
  2828. <response>System.Collections.Concurrent.dll.sources</response>
  2829. </project>
  2830. <project dir="class/Facades/System.Collections" library="Facades_System.Collections-net_4_x">
  2831. <boot>false</boot>
  2832. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll -r:./../../../class/lib/net_4_x/System.Core.dll</flags>
  2833. <output>System.Collections.dll</output>
  2834. <built_sources></built_sources>
  2835. <library_output>./../../../class/lib/net_4_x/Facades/System.Collections.dll</library_output>
  2836. <fx_version>4.5</fx_version>
  2837. <profile>net_4_x</profile>
  2838. <resources></resources>
  2839. <response>System.Collections.dll.sources</response>
  2840. </project>
  2841. <project dir="class/Facades/System.ComponentModel.Annotations" library="Facades_System.ComponentModel.Annotations-net_4_x">
  2842. <boot>false</boot>
  2843. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.ComponentModel.DataAnnotations.dll</flags>
  2844. <output>System.ComponentModel.Annotations.dll</output>
  2845. <built_sources></built_sources>
  2846. <library_output>./../../../class/lib/net_4_x/Facades/System.ComponentModel.Annotations.dll</library_output>
  2847. <fx_version>4.5</fx_version>
  2848. <profile>net_4_x</profile>
  2849. <resources></resources>
  2850. <response>System.ComponentModel.Annotations.dll.sources</response>
  2851. </project>
  2852. <project dir="class/Facades/System.ComponentModel.EventBasedAsync" library="Facades_System.ComponentModel.EventBasedAsync-net_4_x">
  2853. <boot>false</boot>
  2854. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  2855. <output>System.ComponentModel.EventBasedAsync.dll</output>
  2856. <built_sources></built_sources>
  2857. <library_output>./../../../class/lib/net_4_x/Facades/System.ComponentModel.EventBasedAsync.dll</library_output>
  2858. <fx_version>4.5</fx_version>
  2859. <profile>net_4_x</profile>
  2860. <resources></resources>
  2861. <response>System.ComponentModel.EventBasedAsync.dll.sources</response>
  2862. </project>
  2863. <project dir="class/Facades/System.ComponentModel" library="Facades_System.ComponentModel-net_4_x">
  2864. <boot>false</boot>
  2865. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  2866. <output>System.ComponentModel.dll</output>
  2867. <built_sources></built_sources>
  2868. <library_output>./../../../class/lib/net_4_x/Facades/System.ComponentModel.dll</library_output>
  2869. <fx_version>4.5</fx_version>
  2870. <profile>net_4_x</profile>
  2871. <resources></resources>
  2872. <response>System.ComponentModel.dll.sources</response>
  2873. </project>
  2874. <project dir="class/Facades/System.Diagnostics.Contracts" library="Facades_System.Diagnostics.Contracts-net_4_x">
  2875. <boot>false</boot>
  2876. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699</flags>
  2877. <output>System.Diagnostics.Contracts.dll</output>
  2878. <built_sources></built_sources>
  2879. <library_output>./../../../class/lib/net_4_x/Facades/System.Diagnostics.Contracts.dll</library_output>
  2880. <fx_version>4.5</fx_version>
  2881. <profile>net_4_x</profile>
  2882. <resources></resources>
  2883. <response>System.Diagnostics.Contracts.dll.sources</response>
  2884. </project>
  2885. <project dir="class/Facades/System.Diagnostics.Debug" library="Facades_System.Diagnostics.Debug-net_4_x">
  2886. <boot>false</boot>
  2887. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  2888. <output>System.Diagnostics.Debug.dll</output>
  2889. <built_sources></built_sources>
  2890. <library_output>./../../../class/lib/net_4_x/Facades/System.Diagnostics.Debug.dll</library_output>
  2891. <fx_version>4.5</fx_version>
  2892. <profile>net_4_x</profile>
  2893. <resources></resources>
  2894. <response>System.Diagnostics.Debug.dll.sources</response>
  2895. </project>
  2896. <project dir="class/Facades/System.Diagnostics.Tracing" library="Facades_System.Diagnostics.Tracing-net_4_x">
  2897. <boot>false</boot>
  2898. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699</flags>
  2899. <output>System.Diagnostics.Tracing.dll</output>
  2900. <built_sources></built_sources>
  2901. <library_output>./../../../class/lib/net_4_x/Facades/System.Diagnostics.Tracing.dll</library_output>
  2902. <fx_version>4.5</fx_version>
  2903. <profile>net_4_x</profile>
  2904. <resources></resources>
  2905. <response>System.Diagnostics.Tracing.dll.sources</response>
  2906. </project>
  2907. <project dir="class/Facades/System.Diagnostics.Tools" library="Facades_System.Diagnostics.Tools-net_4_x">
  2908. <boot>false</boot>
  2909. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  2910. <output>System.Diagnostics.Tools.dll</output>
  2911. <built_sources></built_sources>
  2912. <library_output>./../../../class/lib/net_4_x/Facades/System.Diagnostics.Tools.dll</library_output>
  2913. <fx_version>4.5</fx_version>
  2914. <profile>net_4_x</profile>
  2915. <resources></resources>
  2916. <response>System.Diagnostics.Tools.dll.sources</response>
  2917. </project>
  2918. <project dir="class/Facades/System.Dynamic.Runtime" library="Facades_System.Dynamic.Runtime-net_4_x">
  2919. <boot>false</boot>
  2920. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.Core.dll -r:./../../../class/lib/net_4_x/System.dll</flags>
  2921. <output>System.Dynamic.Runtime.dll</output>
  2922. <built_sources></built_sources>
  2923. <library_output>./../../../class/lib/net_4_x/Facades/System.Dynamic.Runtime.dll</library_output>
  2924. <fx_version>4.5</fx_version>
  2925. <profile>net_4_x</profile>
  2926. <resources></resources>
  2927. <response>System.Dynamic.Runtime.dll.sources</response>
  2928. </project>
  2929. <project dir="class/Facades/System.Globalization" library="Facades_System.Globalization-net_4_x">
  2930. <boot>false</boot>
  2931. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699</flags>
  2932. <output>System.Globalization.dll</output>
  2933. <built_sources></built_sources>
  2934. <library_output>./../../../class/lib/net_4_x/Facades/System.Globalization.dll</library_output>
  2935. <fx_version>4.5</fx_version>
  2936. <profile>net_4_x</profile>
  2937. <resources></resources>
  2938. <response>System.Globalization.dll.sources</response>
  2939. </project>
  2940. <project dir="class/Facades/System.IO" library="Facades_System.IO-net_4_x">
  2941. <boot>false</boot>
  2942. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  2943. <output>System.IO.dll</output>
  2944. <built_sources></built_sources>
  2945. <library_output>./../../../class/lib/net_4_x/Facades/System.IO.dll</library_output>
  2946. <fx_version>4.5</fx_version>
  2947. <profile>net_4_x</profile>
  2948. <resources></resources>
  2949. <response>System.IO.dll.sources</response>
  2950. </project>
  2951. <project dir="class/Facades/System.Linq.Expressions" library="Facades_System.Linq.Expressions-net_4_x">
  2952. <boot>false</boot>
  2953. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.Core.dll</flags>
  2954. <output>System.Linq.Expressions.dll</output>
  2955. <built_sources></built_sources>
  2956. <library_output>./../../../class/lib/net_4_x/Facades/System.Linq.Expressions.dll</library_output>
  2957. <fx_version>4.5</fx_version>
  2958. <profile>net_4_x</profile>
  2959. <resources></resources>
  2960. <response>System.Linq.Expressions.dll.sources</response>
  2961. </project>
  2962. <project dir="class/Facades/System.Linq.Parallel" library="Facades_System.Linq.Parallel-net_4_x">
  2963. <boot>false</boot>
  2964. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.Core.dll</flags>
  2965. <output>System.Linq.Parallel.dll</output>
  2966. <built_sources></built_sources>
  2967. <library_output>./../../../class/lib/net_4_x/Facades/System.Linq.Parallel.dll</library_output>
  2968. <fx_version>4.5</fx_version>
  2969. <profile>net_4_x</profile>
  2970. <resources></resources>
  2971. <response>System.Linq.Parallel.dll.sources</response>
  2972. </project>
  2973. <project dir="class/Facades/System.Linq.Queryable" library="Facades_System.Linq.Queryable-net_4_x">
  2974. <boot>false</boot>
  2975. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.Core.dll</flags>
  2976. <output>System.Linq.Queryable.dll</output>
  2977. <built_sources></built_sources>
  2978. <library_output>./../../../class/lib/net_4_x/Facades/System.Linq.Queryable.dll</library_output>
  2979. <fx_version>4.5</fx_version>
  2980. <profile>net_4_x</profile>
  2981. <resources></resources>
  2982. <response>System.Linq.Queryable.dll.sources</response>
  2983. </project>
  2984. <project dir="class/Facades/System.Linq" library="Facades_System.Linq-net_4_x">
  2985. <boot>false</boot>
  2986. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.Core.dll</flags>
  2987. <output>System.Linq.dll</output>
  2988. <built_sources></built_sources>
  2989. <library_output>./../../../class/lib/net_4_x/Facades/System.Linq.dll</library_output>
  2990. <fx_version>4.5</fx_version>
  2991. <profile>net_4_x</profile>
  2992. <resources></resources>
  2993. <response>System.Linq.dll.sources</response>
  2994. </project>
  2995. <project dir="class/Facades/System.Net.NetworkInformation" library="Facades_System.Net.NetworkInformation-net_4_x">
  2996. <boot>false</boot>
  2997. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  2998. <output>System.Net.NetworkInformation.dll</output>
  2999. <built_sources></built_sources>
  3000. <library_output>./../../../class/lib/net_4_x/Facades/System.Net.NetworkInformation.dll</library_output>
  3001. <fx_version>4.5</fx_version>
  3002. <profile>net_4_x</profile>
  3003. <resources></resources>
  3004. <response>System.Net.NetworkInformation.dll.sources</response>
  3005. </project>
  3006. <project dir="class/Facades/System.Net.Primitives" library="Facades_System.Net.Primitives-net_4_x">
  3007. <boot>false</boot>
  3008. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3009. <output>System.Net.Primitives.dll</output>
  3010. <built_sources></built_sources>
  3011. <library_output>./../../../class/lib/net_4_x/Facades/System.Net.Primitives.dll</library_output>
  3012. <fx_version>4.5</fx_version>
  3013. <profile>net_4_x</profile>
  3014. <resources></resources>
  3015. <response>System.Net.Primitives.dll.sources</response>
  3016. </project>
  3017. <project dir="class/Facades/System.Net.Requests" library="Facades_System.Net.Requests-net_4_x">
  3018. <boot>false</boot>
  3019. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3020. <output>System.Net.Requests.dll</output>
  3021. <built_sources></built_sources>
  3022. <library_output>./../../../class/lib/net_4_x/Facades/System.Net.Requests.dll</library_output>
  3023. <fx_version>4.5</fx_version>
  3024. <profile>net_4_x</profile>
  3025. <resources></resources>
  3026. <response>System.Net.Requests.dll.sources</response>
  3027. </project>
  3028. <project dir="class/Facades/System.ObjectModel" library="Facades_System.ObjectModel-net_4_x">
  3029. <boot>false</boot>
  3030. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3031. <output>System.ObjectModel.dll</output>
  3032. <built_sources></built_sources>
  3033. <library_output>./../../../class/lib/net_4_x/Facades/System.ObjectModel.dll</library_output>
  3034. <fx_version>4.5</fx_version>
  3035. <profile>net_4_x</profile>
  3036. <resources></resources>
  3037. <response>System.ObjectModel.dll.sources</response>
  3038. </project>
  3039. <project dir="class/Facades/System.Reflection.Extensions" library="Facades_System.Reflection.Extensions-net_4_x">
  3040. <boot>false</boot>
  3041. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699</flags>
  3042. <output>System.Reflection.Extensions.dll</output>
  3043. <built_sources></built_sources>
  3044. <library_output>./../../../class/lib/net_4_x/Facades/System.Reflection.Extensions.dll</library_output>
  3045. <fx_version>4.5</fx_version>
  3046. <profile>net_4_x</profile>
  3047. <resources></resources>
  3048. <response>System.Reflection.Extensions.dll.sources</response>
  3049. </project>
  3050. <project dir="class/Facades/System.Reflection.Primitives" library="Facades_System.Reflection.Primitives-net_4_x">
  3051. <boot>false</boot>
  3052. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699</flags>
  3053. <output>System.Reflection.Primitives.dll</output>
  3054. <built_sources></built_sources>
  3055. <library_output>./../../../class/lib/net_4_x/Facades/System.Reflection.Primitives.dll</library_output>
  3056. <fx_version>4.5</fx_version>
  3057. <profile>net_4_x</profile>
  3058. <resources></resources>
  3059. <response>System.Reflection.Primitives.dll.sources</response>
  3060. </project>
  3061. <project dir="class/Facades/System.Reflection" library="Facades_System.Reflection-net_4_x">
  3062. <boot>false</boot>
  3063. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699</flags>
  3064. <output>System.Reflection.dll</output>
  3065. <built_sources></built_sources>
  3066. <library_output>./../../../class/lib/net_4_x/Facades/System.Reflection.dll</library_output>
  3067. <fx_version>4.5</fx_version>
  3068. <profile>net_4_x</profile>
  3069. <resources></resources>
  3070. <response>System.Reflection.dll.sources</response>
  3071. </project>
  3072. <project dir="class/Facades/System.Resources.ResourceManager" library="Facades_System.Resources.ResourceManager-net_4_x">
  3073. <boot>false</boot>
  3074. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699</flags>
  3075. <output>System.Resources.ResourceManager.dll</output>
  3076. <built_sources></built_sources>
  3077. <library_output>./../../../class/lib/net_4_x/Facades/System.Resources.ResourceManager.dll</library_output>
  3078. <fx_version>4.5</fx_version>
  3079. <profile>net_4_x</profile>
  3080. <resources></resources>
  3081. <response>System.Resources.ResourceManager.dll.sources</response>
  3082. </project>
  3083. <project dir="class/Facades/System.Runtime.Extensions" library="Facades_System.Runtime.Extensions-net_4_x">
  3084. <boot>false</boot>
  3085. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3086. <output>System.Runtime.Extensions.dll</output>
  3087. <built_sources></built_sources>
  3088. <library_output>./../../../class/lib/net_4_x/Facades/System.Runtime.Extensions.dll</library_output>
  3089. <fx_version>4.5</fx_version>
  3090. <profile>net_4_x</profile>
  3091. <resources></resources>
  3092. <response>System.Runtime.Extensions.dll.sources</response>
  3093. </project>
  3094. <project dir="class/Facades/System.Runtime.InteropServices" library="Facades_System.Runtime.InteropServices-net_4_x">
  3095. <boot>false</boot>
  3096. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll -r:./../../../class/lib/net_4_x/System.Core.dll</flags>
  3097. <output>System.Runtime.InteropServices.dll</output>
  3098. <built_sources></built_sources>
  3099. <library_output>./../../../class/lib/net_4_x/Facades/System.Runtime.InteropServices.dll</library_output>
  3100. <fx_version>4.5</fx_version>
  3101. <profile>net_4_x</profile>
  3102. <resources></resources>
  3103. <response>System.Runtime.InteropServices.dll.sources</response>
  3104. </project>
  3105. <project dir="class/Facades/System.Runtime.InteropServices.WindowsRuntime" library="Facades_System.Runtime.InteropServices.WindowsRuntime-net_4_x">
  3106. <boot>false</boot>
  3107. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699</flags>
  3108. <output>System.Runtime.InteropServices.WindowsRuntime.dll</output>
  3109. <built_sources></built_sources>
  3110. <library_output>./../../../class/lib/net_4_x/Facades/System.Runtime.InteropServices.WindowsRuntime.dll</library_output>
  3111. <fx_version>4.5</fx_version>
  3112. <profile>net_4_x</profile>
  3113. <resources></resources>
  3114. <response>System.Runtime.InteropServices.WindowsRuntime.dll.sources</response>
  3115. </project>
  3116. <project dir="class/Facades/System.Runtime.Numerics" library="Facades_System.Runtime.Numerics-net_4_x">
  3117. <boot>false</boot>
  3118. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.Numerics.dll</flags>
  3119. <output>System.Runtime.Numerics.dll</output>
  3120. <built_sources></built_sources>
  3121. <library_output>./../../../class/lib/net_4_x/Facades/System.Runtime.Numerics.dll</library_output>
  3122. <fx_version>4.5</fx_version>
  3123. <profile>net_4_x</profile>
  3124. <resources></resources>
  3125. <response>System.Runtime.Numerics.dll.sources</response>
  3126. </project>
  3127. <project dir="class/Facades/System.Runtime.Serialization.Json" library="Facades_System.Runtime.Serialization.Json-net_4_x">
  3128. <boot>false</boot>
  3129. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.Runtime.Serialization.dll</flags>
  3130. <output>System.Runtime.Serialization.Json.dll</output>
  3131. <built_sources></built_sources>
  3132. <library_output>./../../../class/lib/net_4_x/Facades/System.Runtime.Serialization.Json.dll</library_output>
  3133. <fx_version>4.5</fx_version>
  3134. <profile>net_4_x</profile>
  3135. <resources></resources>
  3136. <response>System.Runtime.Serialization.Json.dll.sources</response>
  3137. </project>
  3138. <project dir="class/Facades/System.Runtime.Serialization.Primitives" library="Facades_System.Runtime.Serialization.Primitives-net_4_x">
  3139. <boot>false</boot>
  3140. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.Runtime.Serialization.dll</flags>
  3141. <output>System.Runtime.Serialization.Primitives.dll</output>
  3142. <built_sources></built_sources>
  3143. <library_output>./../../../class/lib/net_4_x/Facades/System.Runtime.Serialization.Primitives.dll</library_output>
  3144. <fx_version>4.5</fx_version>
  3145. <profile>net_4_x</profile>
  3146. <resources></resources>
  3147. <response>System.Runtime.Serialization.Primitives.dll.sources</response>
  3148. </project>
  3149. <project dir="class/Facades/System.Runtime.Serialization.Xml" library="Facades_System.Runtime.Serialization.Xml-net_4_x">
  3150. <boot>false</boot>
  3151. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.Runtime.Serialization.dll -r:./../../../class/lib/net_4_x/System.Xml.dll</flags>
  3152. <output>System.Runtime.Serialization.Xml.dll</output>
  3153. <built_sources></built_sources>
  3154. <library_output>./../../../class/lib/net_4_x/Facades/System.Runtime.Serialization.Xml.dll</library_output>
  3155. <fx_version>4.5</fx_version>
  3156. <profile>net_4_x</profile>
  3157. <resources></resources>
  3158. <response>System.Runtime.Serialization.Xml.dll.sources</response>
  3159. </project>
  3160. <project dir="class/Facades/System.Runtime" library="Facades_System.Runtime-net_4_x">
  3161. <boot>false</boot>
  3162. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll -r:./../../../class/lib/net_4_x/System.ComponentModel.Composition.dll -r:./../../../class/lib/net_4_x/System.Core.dll</flags>
  3163. <output>System.Runtime.dll</output>
  3164. <built_sources></built_sources>
  3165. <library_output>./../../../class/lib/net_4_x/Facades/System.Runtime.dll</library_output>
  3166. <fx_version>4.5</fx_version>
  3167. <profile>net_4_x</profile>
  3168. <resources></resources>
  3169. <response>System.Runtime.dll.sources</response>
  3170. </project>
  3171. <project dir="class/Facades/System.Security.Principal" library="Facades_System.Security.Principal-net_4_x">
  3172. <boot>false</boot>
  3173. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699</flags>
  3174. <output>System.Security.Principal.dll</output>
  3175. <built_sources></built_sources>
  3176. <library_output>./../../../class/lib/net_4_x/Facades/System.Security.Principal.dll</library_output>
  3177. <fx_version>4.5</fx_version>
  3178. <profile>net_4_x</profile>
  3179. <resources></resources>
  3180. <response>System.Security.Principal.dll.sources</response>
  3181. </project>
  3182. <project dir="class/Facades/System.ServiceModel.Http" library="Facades_System.ServiceModel.Http-net_4_x">
  3183. <boot>false</boot>
  3184. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.ServiceModel.dll</flags>
  3185. <output>System.ServiceModel.Http.dll</output>
  3186. <built_sources></built_sources>
  3187. <library_output>./../../../class/lib/net_4_x/Facades/System.ServiceModel.Http.dll</library_output>
  3188. <fx_version>4.5</fx_version>
  3189. <profile>net_4_x</profile>
  3190. <resources></resources>
  3191. <response>System.ServiceModel.Http.dll.sources</response>
  3192. </project>
  3193. <project dir="class/Facades/System.ServiceModel.Primitives" library="Facades_System.ServiceModel.Primitives-net_4_x">
  3194. <boot>false</boot>
  3195. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.ServiceModel.dll -r:./../../../class/lib/net_4_x/System.Xml.dll</flags>
  3196. <output>System.ServiceModel.Primitives.dll</output>
  3197. <built_sources></built_sources>
  3198. <library_output>./../../../class/lib/net_4_x/Facades/System.ServiceModel.Primitives.dll</library_output>
  3199. <fx_version>4.5</fx_version>
  3200. <profile>net_4_x</profile>
  3201. <resources></resources>
  3202. <response>System.ServiceModel.Primitives.dll.sources</response>
  3203. </project>
  3204. <project dir="class/Facades/System.ServiceModel.Security" library="Facades_System.ServiceModel.Security-net_4_x">
  3205. <boot>false</boot>
  3206. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.ServiceModel.dll</flags>
  3207. <output>System.ServiceModel.Security.dll</output>
  3208. <built_sources></built_sources>
  3209. <library_output>./../../../class/lib/net_4_x/Facades/System.ServiceModel.Security.dll</library_output>
  3210. <fx_version>4.5</fx_version>
  3211. <profile>net_4_x</profile>
  3212. <resources></resources>
  3213. <response>System.ServiceModel.Security.dll.sources</response>
  3214. </project>
  3215. <project dir="class/Facades/System.Text.Encoding.Extensions" library="Facades_System.Text.Encoding.Extensions-net_4_x">
  3216. <boot>false</boot>
  3217. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699</flags>
  3218. <output>System.Text.Encoding.Extensions.dll</output>
  3219. <built_sources></built_sources>
  3220. <library_output>./../../../class/lib/net_4_x/Facades/System.Text.Encoding.Extensions.dll</library_output>
  3221. <fx_version>4.5</fx_version>
  3222. <profile>net_4_x</profile>
  3223. <resources></resources>
  3224. <response>System.Text.Encoding.Extensions.dll.sources</response>
  3225. </project>
  3226. <project dir="class/Facades/System.Text.Encoding" library="Facades_System.Text.Encoding-net_4_x">
  3227. <boot>false</boot>
  3228. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699</flags>
  3229. <output>System.Text.Encoding.dll</output>
  3230. <built_sources></built_sources>
  3231. <library_output>./../../../class/lib/net_4_x/Facades/System.Text.Encoding.dll</library_output>
  3232. <fx_version>4.5</fx_version>
  3233. <profile>net_4_x</profile>
  3234. <resources></resources>
  3235. <response>System.Text.Encoding.dll.sources</response>
  3236. </project>
  3237. <project dir="class/Facades/System.Text.RegularExpressions" library="Facades_System.Text.RegularExpressions-net_4_x">
  3238. <boot>false</boot>
  3239. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3240. <output>System.Text.RegularExpressions.dll</output>
  3241. <built_sources></built_sources>
  3242. <library_output>./../../../class/lib/net_4_x/Facades/System.Text.RegularExpressions.dll</library_output>
  3243. <fx_version>4.5</fx_version>
  3244. <profile>net_4_x</profile>
  3245. <resources></resources>
  3246. <response>System.Text.RegularExpressions.dll.sources</response>
  3247. </project>
  3248. <project dir="class/Facades/System.Threading.Tasks.Parallel" library="Facades_System.Threading.Tasks.Parallel-net_4_x">
  3249. <boot>false</boot>
  3250. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699</flags>
  3251. <output>System.Threading.Tasks.Parallel.dll</output>
  3252. <built_sources></built_sources>
  3253. <library_output>./../../../class/lib/net_4_x/Facades/System.Threading.Tasks.Parallel.dll</library_output>
  3254. <fx_version>4.5</fx_version>
  3255. <profile>net_4_x</profile>
  3256. <resources></resources>
  3257. <response>System.Threading.Tasks.Parallel.dll.sources</response>
  3258. </project>
  3259. <project dir="class/Facades/System.Threading.Tasks" library="Facades_System.Threading.Tasks-net_4_x">
  3260. <boot>false</boot>
  3261. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.Core.dll</flags>
  3262. <output>System.Threading.Tasks.dll</output>
  3263. <built_sources></built_sources>
  3264. <library_output>./../../../class/lib/net_4_x/Facades/System.Threading.Tasks.dll</library_output>
  3265. <fx_version>4.5</fx_version>
  3266. <profile>net_4_x</profile>
  3267. <resources></resources>
  3268. <response>System.Threading.Tasks.dll.sources</response>
  3269. </project>
  3270. <project dir="class/Facades/System.Threading.Timer" library="Facades_System.Threading.Timer-net_4_x">
  3271. <boot>false</boot>
  3272. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll -r:./../../../class/lib/net_4_x/System.Core.dll</flags>
  3273. <output>System.Threading.Timer.dll</output>
  3274. <built_sources></built_sources>
  3275. <library_output>./../../../class/lib/net_4_x/Facades/System.Threading.Timer.dll</library_output>
  3276. <fx_version>4.5</fx_version>
  3277. <profile>net_4_x</profile>
  3278. <resources></resources>
  3279. <response>System.Threading.Timer.dll.sources</response>
  3280. </project>
  3281. <project dir="class/Facades/System.Threading" library="Facades_System.Threading-net_4_x">
  3282. <boot>false</boot>
  3283. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll -r:./../../../class/lib/net_4_x/System.Core.dll</flags>
  3284. <output>System.Threading.dll</output>
  3285. <built_sources></built_sources>
  3286. <library_output>./../../../class/lib/net_4_x/Facades/System.Threading.dll</library_output>
  3287. <fx_version>4.5</fx_version>
  3288. <profile>net_4_x</profile>
  3289. <resources></resources>
  3290. <response>System.Threading.dll.sources</response>
  3291. </project>
  3292. <project dir="class/Facades/System.Xml.ReaderWriter" library="Facades_System.Xml.ReaderWriter-net_4_x">
  3293. <boot>false</boot>
  3294. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.Xml.dll</flags>
  3295. <output>System.Xml.ReaderWriter.dll</output>
  3296. <built_sources></built_sources>
  3297. <library_output>./../../../class/lib/net_4_x/Facades/System.Xml.ReaderWriter.dll</library_output>
  3298. <fx_version>4.5</fx_version>
  3299. <profile>net_4_x</profile>
  3300. <resources></resources>
  3301. <response>System.Xml.ReaderWriter.dll.sources</response>
  3302. </project>
  3303. <project dir="class/Facades/System.Xml.XDocument" library="Facades_System.Xml.XDocument-net_4_x">
  3304. <boot>false</boot>
  3305. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.Xml.Linq.dll -r:./../../../class/lib/net_4_x/System.Xml.dll</flags>
  3306. <output>System.Xml.XDocument.dll</output>
  3307. <built_sources></built_sources>
  3308. <library_output>./../../../class/lib/net_4_x/Facades/System.Xml.XDocument.dll</library_output>
  3309. <fx_version>4.5</fx_version>
  3310. <profile>net_4_x</profile>
  3311. <resources></resources>
  3312. <response>System.Xml.XDocument.dll.sources</response>
  3313. </project>
  3314. <project dir="class/Facades/System.Xml.XmlSerializer" library="Facades_System.Xml.XmlSerializer-net_4_x">
  3315. <boot>false</boot>
  3316. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.Xml.dll</flags>
  3317. <output>System.Xml.XmlSerializer.dll</output>
  3318. <built_sources></built_sources>
  3319. <library_output>./../../../class/lib/net_4_x/Facades/System.Xml.XmlSerializer.dll</library_output>
  3320. <fx_version>4.5</fx_version>
  3321. <profile>net_4_x</profile>
  3322. <resources></resources>
  3323. <response>System.Xml.XmlSerializer.dll.sources</response>
  3324. </project>
  3325. <project dir="class/Facades/System.Runtime.Handles" library="Facades_System.Runtime.Handles-net_4_x">
  3326. <boot>false</boot>
  3327. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll -r:./../../../class/lib/net_4_x/System.Core.dll</flags>
  3328. <output>System.Runtime.Handles.dll</output>
  3329. <built_sources></built_sources>
  3330. <library_output>./../../../class/lib/net_4_x/Facades/System.Runtime.Handles.dll</library_output>
  3331. <fx_version>4.5</fx_version>
  3332. <profile>net_4_x</profile>
  3333. <resources></resources>
  3334. <response>System.Runtime.Handles.dll.sources</response>
  3335. </project>
  3336. <project dir="class/Facades/System.ServiceModel.Duplex" library="Facades_System.ServiceModel.Duplex-net_4_x">
  3337. <boot>false</boot>
  3338. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.ServiceModel.dll</flags>
  3339. <output>System.ServiceModel.Duplex.dll</output>
  3340. <built_sources></built_sources>
  3341. <library_output>./../../../class/lib/net_4_x/Facades/System.ServiceModel.Duplex.dll</library_output>
  3342. <fx_version>4.5</fx_version>
  3343. <profile>net_4_x</profile>
  3344. <resources></resources>
  3345. <response>System.ServiceModel.Duplex.dll.sources</response>
  3346. </project>
  3347. <project dir="class/Facades/System.ServiceModel.NetTcp" library="Facades_System.ServiceModel.NetTcp-net_4_x">
  3348. <boot>false</boot>
  3349. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.ServiceModel.dll</flags>
  3350. <output>System.ServiceModel.NetTcp.dll</output>
  3351. <built_sources></built_sources>
  3352. <library_output>./../../../class/lib/net_4_x/Facades/System.ServiceModel.NetTcp.dll</library_output>
  3353. <fx_version>4.5</fx_version>
  3354. <profile>net_4_x</profile>
  3355. <resources></resources>
  3356. <response>System.ServiceModel.NetTcp.dll.sources</response>
  3357. </project>
  3358. <project dir="class/Facades/Microsoft.Win32.Primitives" library="Facades_Microsoft.Win32.Primitives-net_4_x">
  3359. <boot>false</boot>
  3360. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3361. <output>Microsoft.Win32.Primitives.dll</output>
  3362. <built_sources></built_sources>
  3363. <library_output>./../../../class/lib/net_4_x/Facades/Microsoft.Win32.Primitives.dll</library_output>
  3364. <fx_version>4.5</fx_version>
  3365. <profile>net_4_x</profile>
  3366. <resources></resources>
  3367. <response>Microsoft.Win32.Primitives.dll.sources</response>
  3368. </project>
  3369. <project dir="class/Facades/Microsoft.Win32.Registry" library="Facades_Microsoft.Win32.Registry-net_4_x">
  3370. <boot>false</boot>
  3371. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3372. <output>Microsoft.Win32.Registry.dll</output>
  3373. <built_sources></built_sources>
  3374. <library_output>./../../../class/lib/net_4_x/Facades/Microsoft.Win32.Registry.dll</library_output>
  3375. <fx_version>4.5</fx_version>
  3376. <profile>net_4_x</profile>
  3377. <resources></resources>
  3378. <response>Microsoft.Win32.Registry.dll.sources</response>
  3379. </project>
  3380. <project dir="class/Facades/System.AppContext" library="Facades_System.AppContext-net_4_x">
  3381. <boot>false</boot>
  3382. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3383. <output>System.AppContext.dll</output>
  3384. <built_sources></built_sources>
  3385. <library_output>./../../../class/lib/net_4_x/Facades/System.AppContext.dll</library_output>
  3386. <fx_version>4.5</fx_version>
  3387. <profile>net_4_x</profile>
  3388. <resources></resources>
  3389. <response>System.AppContext.dll.sources</response>
  3390. </project>
  3391. <project dir="class/Facades/System.Collections.NonGeneric" library="Facades_System.Collections.NonGeneric-net_4_x">
  3392. <boot>false</boot>
  3393. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3394. <output>System.Collections.NonGeneric.dll</output>
  3395. <built_sources></built_sources>
  3396. <library_output>./../../../class/lib/net_4_x/Facades/System.Collections.NonGeneric.dll</library_output>
  3397. <fx_version>4.5</fx_version>
  3398. <profile>net_4_x</profile>
  3399. <resources></resources>
  3400. <response>System.Collections.NonGeneric.dll.sources</response>
  3401. </project>
  3402. <project dir="class/Facades/System.Collections.Specialized" library="Facades_System.Collections.Specialized-net_4_x">
  3403. <boot>false</boot>
  3404. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3405. <output>System.Collections.Specialized.dll</output>
  3406. <built_sources></built_sources>
  3407. <library_output>./../../../class/lib/net_4_x/Facades/System.Collections.Specialized.dll</library_output>
  3408. <fx_version>4.5</fx_version>
  3409. <profile>net_4_x</profile>
  3410. <resources></resources>
  3411. <response>System.Collections.Specialized.dll.sources</response>
  3412. </project>
  3413. <project dir="class/Facades/System.ComponentModel.Primitives" library="Facades_System.ComponentModel.Primitives-net_4_x">
  3414. <boot>false</boot>
  3415. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3416. <output>System.ComponentModel.Primitives.dll</output>
  3417. <built_sources></built_sources>
  3418. <library_output>./../../../class/lib/net_4_x/Facades/System.ComponentModel.Primitives.dll</library_output>
  3419. <fx_version>4.5</fx_version>
  3420. <profile>net_4_x</profile>
  3421. <resources></resources>
  3422. <response>System.ComponentModel.Primitives.dll.sources</response>
  3423. </project>
  3424. <project dir="class/Facades/System.ComponentModel.TypeConverter" library="Facades_System.ComponentModel.TypeConverter-net_4_x">
  3425. <boot>false</boot>
  3426. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3427. <output>System.ComponentModel.TypeConverter.dll</output>
  3428. <built_sources></built_sources>
  3429. <library_output>./../../../class/lib/net_4_x/Facades/System.ComponentModel.TypeConverter.dll</library_output>
  3430. <fx_version>4.5</fx_version>
  3431. <profile>net_4_x</profile>
  3432. <resources></resources>
  3433. <response>System.ComponentModel.TypeConverter.dll.sources</response>
  3434. </project>
  3435. <project dir="class/Facades/System.Console" library="Facades_System.Console-net_4_x">
  3436. <boot>false</boot>
  3437. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3438. <output>System.Console.dll</output>
  3439. <built_sources></built_sources>
  3440. <library_output>./../../../class/lib/net_4_x/Facades/System.Console.dll</library_output>
  3441. <fx_version>4.5</fx_version>
  3442. <profile>net_4_x</profile>
  3443. <resources></resources>
  3444. <response>System.Console.dll.sources</response>
  3445. </project>
  3446. <project dir="class/Facades/System.Data.Common" library="Facades_System.Data.Common-net_4_x">
  3447. <boot>false</boot>
  3448. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll -r:./../../../class/lib/net_4_x/System.Data.dll</flags>
  3449. <output>System.Data.Common.dll</output>
  3450. <built_sources></built_sources>
  3451. <library_output>./../../../class/lib/net_4_x/Facades/System.Data.Common.dll</library_output>
  3452. <fx_version>4.5</fx_version>
  3453. <profile>net_4_x</profile>
  3454. <resources></resources>
  3455. <response>System.Data.Common.dll.sources</response>
  3456. </project>
  3457. <project dir="class/Facades/System.Data.SqlClient" library="Facades_System.Data.SqlClient-net_4_x">
  3458. <boot>false</boot>
  3459. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll -r:./../../../class/lib/net_4_x/System.Data.dll -r:./../../../class/lib/net_4_x/System.Xml.dll</flags>
  3460. <output>System.Data.SqlClient.dll</output>
  3461. <built_sources></built_sources>
  3462. <library_output>./../../../class/lib/net_4_x/Facades/System.Data.SqlClient.dll</library_output>
  3463. <fx_version>4.5</fx_version>
  3464. <profile>net_4_x</profile>
  3465. <resources></resources>
  3466. <response>System.Data.SqlClient.dll.sources</response>
  3467. </project>
  3468. <project dir="class/Facades/System.Diagnostics.FileVersionInfo" library="Facades_System.Diagnostics.FileVersionInfo-net_4_x">
  3469. <boot>false</boot>
  3470. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3471. <output>System.Diagnostics.FileVersionInfo.dll</output>
  3472. <built_sources></built_sources>
  3473. <library_output>./../../../class/lib/net_4_x/Facades/System.Diagnostics.FileVersionInfo.dll</library_output>
  3474. <fx_version>4.5</fx_version>
  3475. <profile>net_4_x</profile>
  3476. <resources></resources>
  3477. <response>System.Diagnostics.FileVersionInfo.dll.sources</response>
  3478. </project>
  3479. <project dir="class/Facades/System.Diagnostics.Process" library="Facades_System.Diagnostics.Process-net_4_x">
  3480. <boot>false</boot>
  3481. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3482. <output>System.Diagnostics.Process.dll</output>
  3483. <built_sources></built_sources>
  3484. <library_output>./../../../class/lib/net_4_x/Facades/System.Diagnostics.Process.dll</library_output>
  3485. <fx_version>4.5</fx_version>
  3486. <profile>net_4_x</profile>
  3487. <resources></resources>
  3488. <response>System.Diagnostics.Process.dll.sources</response>
  3489. </project>
  3490. <project dir="class/Facades/System.Diagnostics.TextWriterTraceListener" library="Facades_System.Diagnostics.TextWriterTraceListener-net_4_x">
  3491. <boot>false</boot>
  3492. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3493. <output>System.Diagnostics.TextWriterTraceListener.dll</output>
  3494. <built_sources></built_sources>
  3495. <library_output>./../../../class/lib/net_4_x/Facades/System.Diagnostics.TextWriterTraceListener.dll</library_output>
  3496. <fx_version>4.5</fx_version>
  3497. <profile>net_4_x</profile>
  3498. <resources></resources>
  3499. <response>System.Diagnostics.TextWriterTraceListener.dll.sources</response>
  3500. </project>
  3501. <project dir="class/Facades/System.Diagnostics.TraceEvent" library="Facades_System.Diagnostics.TraceEvent-net_4_x">
  3502. <boot>false</boot>
  3503. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3504. <output>System.Diagnostics.TraceEvent.dll</output>
  3505. <built_sources></built_sources>
  3506. <library_output>./../../../class/lib/net_4_x/Facades/System.Diagnostics.TraceEvent.dll</library_output>
  3507. <fx_version>4.5</fx_version>
  3508. <profile>net_4_x</profile>
  3509. <resources></resources>
  3510. <response>System.Diagnostics.TraceEvent.dll.sources</response>
  3511. </project>
  3512. <project dir="class/Facades/System.Diagnostics.TraceSource" library="Facades_System.Diagnostics.TraceSource-net_4_x">
  3513. <boot>false</boot>
  3514. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3515. <output>System.Diagnostics.TraceSource.dll</output>
  3516. <built_sources></built_sources>
  3517. <library_output>./../../../class/lib/net_4_x/Facades/System.Diagnostics.TraceSource.dll</library_output>
  3518. <fx_version>4.5</fx_version>
  3519. <profile>net_4_x</profile>
  3520. <resources></resources>
  3521. <response>System.Diagnostics.TraceSource.dll.sources</response>
  3522. </project>
  3523. <project dir="class/Facades/System.Globalization.Calendars" library="Facades_System.Globalization.Calendars-net_4_x">
  3524. <boot>false</boot>
  3525. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3526. <output>System.Globalization.Calendars.dll</output>
  3527. <built_sources></built_sources>
  3528. <library_output>./../../../class/lib/net_4_x/Facades/System.Globalization.Calendars.dll</library_output>
  3529. <fx_version>4.5</fx_version>
  3530. <profile>net_4_x</profile>
  3531. <resources></resources>
  3532. <response>System.Globalization.Calendars.dll.sources</response>
  3533. </project>
  3534. <project dir="class/Facades/System.IO.Compression.ZipFile" library="Facades_System.IO.Compression.ZipFile-net_4_x">
  3535. <boot>false</boot>
  3536. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll -r:./../../../class/lib/net_4_x/System.IO.Compression.FileSystem.dll</flags>
  3537. <output>System.IO.Compression.ZipFile.dll</output>
  3538. <built_sources></built_sources>
  3539. <library_output>./../../../class/lib/net_4_x/Facades/System.IO.Compression.ZipFile.dll</library_output>
  3540. <fx_version>4.5</fx_version>
  3541. <profile>net_4_x</profile>
  3542. <resources></resources>
  3543. <response>System.IO.Compression.ZipFile.dll.sources</response>
  3544. </project>
  3545. <project dir="class/Facades/System.IO.FileSystem" library="Facades_System.IO.FileSystem-net_4_x">
  3546. <boot>false</boot>
  3547. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3548. <output>System.IO.FileSystem.dll</output>
  3549. <built_sources></built_sources>
  3550. <library_output>./../../../class/lib/net_4_x/Facades/System.IO.FileSystem.dll</library_output>
  3551. <fx_version>4.5</fx_version>
  3552. <profile>net_4_x</profile>
  3553. <resources></resources>
  3554. <response>System.IO.FileSystem.dll.sources</response>
  3555. </project>
  3556. <project dir="class/Facades/System.IO.FileSystem.DriveInfo" library="Facades_System.IO.FileSystem.DriveInfo-net_4_x">
  3557. <boot>false</boot>
  3558. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3559. <output>System.IO.FileSystem.DriveInfo.dll</output>
  3560. <built_sources></built_sources>
  3561. <library_output>./../../../class/lib/net_4_x/Facades/System.IO.FileSystem.DriveInfo.dll</library_output>
  3562. <fx_version>4.5</fx_version>
  3563. <profile>net_4_x</profile>
  3564. <resources></resources>
  3565. <response>System.IO.FileSystem.DriveInfo.dll.sources</response>
  3566. </project>
  3567. <project dir="class/Facades/System.IO.FileSystem.Primitives" library="Facades_System.IO.FileSystem.Primitives-net_4_x">
  3568. <boot>false</boot>
  3569. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3570. <output>System.IO.FileSystem.Primitives.dll</output>
  3571. <built_sources></built_sources>
  3572. <library_output>./../../../class/lib/net_4_x/Facades/System.IO.FileSystem.Primitives.dll</library_output>
  3573. <fx_version>4.5</fx_version>
  3574. <profile>net_4_x</profile>
  3575. <resources></resources>
  3576. <response>System.IO.FileSystem.Primitives.dll.sources</response>
  3577. </project>
  3578. <project dir="class/Facades/System.IO.IsolatedStorage" library="Facades_System.IO.IsolatedStorage-net_4_x">
  3579. <boot>false</boot>
  3580. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3581. <output>System.IO.IsolatedStorage.dll</output>
  3582. <built_sources></built_sources>
  3583. <library_output>./../../../class/lib/net_4_x/Facades/System.IO.IsolatedStorage.dll</library_output>
  3584. <fx_version>4.5</fx_version>
  3585. <profile>net_4_x</profile>
  3586. <resources></resources>
  3587. <response>System.IO.IsolatedStorage.dll.sources</response>
  3588. </project>
  3589. <project dir="class/Facades/System.IO.MemoryMappedFiles" library="Facades_System.IO.MemoryMappedFiles-net_4_x">
  3590. <boot>false</boot>
  3591. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll -r:./../../../class/lib/net_4_x/System.Core.dll</flags>
  3592. <output>System.IO.MemoryMappedFiles.dll</output>
  3593. <built_sources></built_sources>
  3594. <library_output>./../../../class/lib/net_4_x/Facades/System.IO.MemoryMappedFiles.dll</library_output>
  3595. <fx_version>4.5</fx_version>
  3596. <profile>net_4_x</profile>
  3597. <resources></resources>
  3598. <response>System.IO.MemoryMappedFiles.dll.sources</response>
  3599. </project>
  3600. <project dir="class/Facades/System.IO.UnmanagedMemoryStream" library="Facades_System.IO.UnmanagedMemoryStream-net_4_x">
  3601. <boot>false</boot>
  3602. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3603. <output>System.IO.UnmanagedMemoryStream.dll</output>
  3604. <built_sources></built_sources>
  3605. <library_output>./../../../class/lib/net_4_x/Facades/System.IO.UnmanagedMemoryStream.dll</library_output>
  3606. <fx_version>4.5</fx_version>
  3607. <profile>net_4_x</profile>
  3608. <resources></resources>
  3609. <response>System.IO.UnmanagedMemoryStream.dll.sources</response>
  3610. </project>
  3611. <project dir="class/Facades/System.Net.AuthenticationManager" library="Facades_System.Net.AuthenticationManager-net_4_x">
  3612. <boot>false</boot>
  3613. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3614. <output>System.Net.AuthenticationManager.dll</output>
  3615. <built_sources></built_sources>
  3616. <library_output>./../../../class/lib/net_4_x/Facades/System.Net.AuthenticationManager.dll</library_output>
  3617. <fx_version>4.5</fx_version>
  3618. <profile>net_4_x</profile>
  3619. <resources></resources>
  3620. <response>System.Net.AuthenticationManager.dll.sources</response>
  3621. </project>
  3622. <project dir="class/Facades/System.Net.Cache" library="Facades_System.Net.Cache-net_4_x">
  3623. <boot>false</boot>
  3624. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3625. <output>System.Net.Cache.dll</output>
  3626. <built_sources></built_sources>
  3627. <library_output>./../../../class/lib/net_4_x/Facades/System.Net.Cache.dll</library_output>
  3628. <fx_version>4.5</fx_version>
  3629. <profile>net_4_x</profile>
  3630. <resources></resources>
  3631. <response>System.Net.Cache.dll.sources</response>
  3632. </project>
  3633. <project dir="class/Facades/System.Net.HttpListener" library="Facades_System.Net.HttpListener-net_4_x">
  3634. <boot>false</boot>
  3635. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3636. <output>System.Net.HttpListener.dll</output>
  3637. <built_sources></built_sources>
  3638. <library_output>./../../../class/lib/net_4_x/Facades/System.Net.HttpListener.dll</library_output>
  3639. <fx_version>4.5</fx_version>
  3640. <profile>net_4_x</profile>
  3641. <resources></resources>
  3642. <response>System.Net.HttpListener.dll.sources</response>
  3643. </project>
  3644. <project dir="class/Facades/System.Net.Mail" library="Facades_System.Net.Mail-net_4_x">
  3645. <boot>false</boot>
  3646. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3647. <output>System.Net.Mail.dll</output>
  3648. <built_sources></built_sources>
  3649. <library_output>./../../../class/lib/net_4_x/Facades/System.Net.Mail.dll</library_output>
  3650. <fx_version>4.5</fx_version>
  3651. <profile>net_4_x</profile>
  3652. <resources></resources>
  3653. <response>System.Net.Mail.dll.sources</response>
  3654. </project>
  3655. <project dir="class/Facades/System.Net.NameResolution" library="Facades_System.Net.NameResolution-net_4_x">
  3656. <boot>false</boot>
  3657. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3658. <output>System.Net.NameResolution.dll</output>
  3659. <built_sources></built_sources>
  3660. <library_output>./../../../class/lib/net_4_x/Facades/System.Net.NameResolution.dll</library_output>
  3661. <fx_version>4.5</fx_version>
  3662. <profile>net_4_x</profile>
  3663. <resources></resources>
  3664. <response>System.Net.NameResolution.dll.sources</response>
  3665. </project>
  3666. <project dir="class/Facades/System.Net.Security" library="Facades_System.Net.Security-net_4_x">
  3667. <boot>false</boot>
  3668. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3669. <output>System.Net.Security.dll</output>
  3670. <built_sources></built_sources>
  3671. <library_output>./../../../class/lib/net_4_x/Facades/System.Net.Security.dll</library_output>
  3672. <fx_version>4.5</fx_version>
  3673. <profile>net_4_x</profile>
  3674. <resources></resources>
  3675. <response>System.Net.Security.dll.sources</response>
  3676. </project>
  3677. <project dir="class/Facades/System.Net.ServicePoint" library="Facades_System.Net.ServicePoint-net_4_x">
  3678. <boot>false</boot>
  3679. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3680. <output>System.Net.ServicePoint.dll</output>
  3681. <built_sources></built_sources>
  3682. <library_output>./../../../class/lib/net_4_x/Facades/System.Net.ServicePoint.dll</library_output>
  3683. <fx_version>4.5</fx_version>
  3684. <profile>net_4_x</profile>
  3685. <resources></resources>
  3686. <response>System.Net.ServicePoint.dll.sources</response>
  3687. </project>
  3688. <project dir="class/Facades/System.Net.Sockets" library="Facades_System.Net.Sockets-net_4_x">
  3689. <boot>false</boot>
  3690. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3691. <output>System.Net.Sockets.dll</output>
  3692. <built_sources></built_sources>
  3693. <library_output>./../../../class/lib/net_4_x/Facades/System.Net.Sockets.dll</library_output>
  3694. <fx_version>4.5</fx_version>
  3695. <profile>net_4_x</profile>
  3696. <resources></resources>
  3697. <response>System.Net.Sockets.dll.sources</response>
  3698. </project>
  3699. <project dir="class/Facades/System.Net.Utilities" library="Facades_System.Net.Utilities-net_4_x">
  3700. <boot>false</boot>
  3701. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3702. <output>System.Net.Utilities.dll</output>
  3703. <built_sources></built_sources>
  3704. <library_output>./../../../class/lib/net_4_x/Facades/System.Net.Utilities.dll</library_output>
  3705. <fx_version>4.5</fx_version>
  3706. <profile>net_4_x</profile>
  3707. <resources></resources>
  3708. <response>System.Net.Utilities.dll.sources</response>
  3709. </project>
  3710. <project dir="class/Facades/System.Net.WebHeaderCollection" library="Facades_System.Net.WebHeaderCollection-net_4_x">
  3711. <boot>false</boot>
  3712. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3713. <output>System.Net.WebHeaderCollection.dll</output>
  3714. <built_sources></built_sources>
  3715. <library_output>./../../../class/lib/net_4_x/Facades/System.Net.WebHeaderCollection.dll</library_output>
  3716. <fx_version>4.5</fx_version>
  3717. <profile>net_4_x</profile>
  3718. <resources></resources>
  3719. <response>System.Net.WebHeaderCollection.dll.sources</response>
  3720. </project>
  3721. <project dir="class/Facades/System.Net.WebSockets" library="Facades_System.Net.WebSockets-net_4_x">
  3722. <boot>false</boot>
  3723. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3724. <output>System.Net.WebSockets.dll</output>
  3725. <built_sources></built_sources>
  3726. <library_output>./../../../class/lib/net_4_x/Facades/System.Net.WebSockets.dll</library_output>
  3727. <fx_version>4.5</fx_version>
  3728. <profile>net_4_x</profile>
  3729. <resources></resources>
  3730. <response>System.Net.WebSockets.dll.sources</response>
  3731. </project>
  3732. <project dir="class/Facades/System.Net.WebSockets.Client" library="Facades_System.Net.WebSockets.Client-net_4_x">
  3733. <boot>false</boot>
  3734. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3735. <output>System.Net.WebSockets.Client.dll</output>
  3736. <built_sources></built_sources>
  3737. <library_output>./../../../class/lib/net_4_x/Facades/System.Net.WebSockets.Client.dll</library_output>
  3738. <fx_version>4.5</fx_version>
  3739. <profile>net_4_x</profile>
  3740. <resources></resources>
  3741. <response>System.Net.WebSockets.Client.dll.sources</response>
  3742. </project>
  3743. <project dir="class/Facades/System.Resources.ReaderWriter" library="Facades_System.Resources.ReaderWriter-net_4_x">
  3744. <boot>false</boot>
  3745. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3746. <output>System.Resources.ReaderWriter.dll</output>
  3747. <built_sources></built_sources>
  3748. <library_output>./../../../class/lib/net_4_x/Facades/System.Resources.ReaderWriter.dll</library_output>
  3749. <fx_version>4.5</fx_version>
  3750. <profile>net_4_x</profile>
  3751. <resources></resources>
  3752. <response>System.Resources.ReaderWriter.dll.sources</response>
  3753. </project>
  3754. <project dir="class/Facades/System.Runtime.CompilerServices.VisualC" library="Facades_System.Runtime.CompilerServices.VisualC-net_4_x">
  3755. <boot>false</boot>
  3756. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3757. <output>System.Runtime.CompilerServices.VisualC.dll</output>
  3758. <built_sources></built_sources>
  3759. <library_output>./../../../class/lib/net_4_x/Facades/System.Runtime.CompilerServices.VisualC.dll</library_output>
  3760. <fx_version>4.5</fx_version>
  3761. <profile>net_4_x</profile>
  3762. <resources></resources>
  3763. <response>System.Runtime.CompilerServices.VisualC.dll.sources</response>
  3764. </project>
  3765. <project dir="class/Facades/System.Security.AccessControl" library="Facades_System.Security.AccessControl-net_4_x">
  3766. <boot>false</boot>
  3767. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3768. <output>System.Security.AccessControl.dll</output>
  3769. <built_sources></built_sources>
  3770. <library_output>./../../../class/lib/net_4_x/Facades/System.Security.AccessControl.dll</library_output>
  3771. <fx_version>4.5</fx_version>
  3772. <profile>net_4_x</profile>
  3773. <resources></resources>
  3774. <response>System.Security.AccessControl.dll.sources</response>
  3775. </project>
  3776. <project dir="class/Facades/System.Security.Claims" library="Facades_System.Security.Claims-net_4_x">
  3777. <boot>false</boot>
  3778. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3779. <output>System.Security.Claims.dll</output>
  3780. <built_sources></built_sources>
  3781. <library_output>./../../../class/lib/net_4_x/Facades/System.Security.Claims.dll</library_output>
  3782. <fx_version>4.5</fx_version>
  3783. <profile>net_4_x</profile>
  3784. <resources></resources>
  3785. <response>System.Security.Claims.dll.sources</response>
  3786. </project>
  3787. <project dir="class/Facades/System.Security.Cryptography.DeriveBytes" library="Facades_System.Security.Cryptography.DeriveBytes-net_4_x">
  3788. <boot>false</boot>
  3789. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3790. <output>System.Security.Cryptography.DeriveBytes.dll</output>
  3791. <built_sources></built_sources>
  3792. <library_output>./../../../class/lib/net_4_x/Facades/System.Security.Cryptography.DeriveBytes.dll</library_output>
  3793. <fx_version>4.5</fx_version>
  3794. <profile>net_4_x</profile>
  3795. <resources></resources>
  3796. <response>System.Security.Cryptography.DeriveBytes.dll.sources</response>
  3797. </project>
  3798. <project dir="class/Facades/System.Security.Cryptography.Encoding" library="Facades_System.Security.Cryptography.Encoding-net_4_x">
  3799. <boot>false</boot>
  3800. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3801. <output>System.Security.Cryptography.Encoding.dll</output>
  3802. <built_sources></built_sources>
  3803. <library_output>./../../../class/lib/net_4_x/Facades/System.Security.Cryptography.Encoding.dll</library_output>
  3804. <fx_version>4.5</fx_version>
  3805. <profile>net_4_x</profile>
  3806. <resources></resources>
  3807. <response>System.Security.Cryptography.Encoding.dll.sources</response>
  3808. </project>
  3809. <project dir="class/Facades/System.Security.Cryptography.Encryption" library="Facades_System.Security.Cryptography.Encryption-net_4_x">
  3810. <boot>false</boot>
  3811. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3812. <output>System.Security.Cryptography.Encryption.dll</output>
  3813. <built_sources></built_sources>
  3814. <library_output>./../../../class/lib/net_4_x/Facades/System.Security.Cryptography.Encryption.dll</library_output>
  3815. <fx_version>4.5</fx_version>
  3816. <profile>net_4_x</profile>
  3817. <resources></resources>
  3818. <response>System.Security.Cryptography.Encryption.dll.sources</response>
  3819. </project>
  3820. <project dir="class/Facades/System.Security.Cryptography.Encryption.Aes" library="Facades_System.Security.Cryptography.Encryption.Aes-net_4_x">
  3821. <boot>false</boot>
  3822. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3823. <output>System.Security.Cryptography.Encryption.Aes.dll</output>
  3824. <built_sources></built_sources>
  3825. <library_output>./../../../class/lib/net_4_x/Facades/System.Security.Cryptography.Encryption.Aes.dll</library_output>
  3826. <fx_version>4.5</fx_version>
  3827. <profile>net_4_x</profile>
  3828. <resources></resources>
  3829. <response>System.Security.Cryptography.Encryption.Aes.dll.sources</response>
  3830. </project>
  3831. <project dir="class/Facades/System.Security.Cryptography.Encryption.ECDiffieHellman" library="Facades_System.Security.Cryptography.Encryption.ECDiffieHellman-net_4_x">
  3832. <boot>false</boot>
  3833. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll -r:./../../../class/lib/net_4_x/System.Core.dll</flags>
  3834. <output>System.Security.Cryptography.Encryption.ECDiffieHellman.dll</output>
  3835. <built_sources></built_sources>
  3836. <library_output>./../../../class/lib/net_4_x/Facades/System.Security.Cryptography.Encryption.ECDiffieHellman.dll</library_output>
  3837. <fx_version>4.5</fx_version>
  3838. <profile>net_4_x</profile>
  3839. <resources></resources>
  3840. <response>System.Security.Cryptography.Encryption.ECDiffieHellman.dll.sources</response>
  3841. </project>
  3842. <project dir="class/Facades/System.Security.Cryptography.Encryption.ECDsa" library="Facades_System.Security.Cryptography.Encryption.ECDsa-net_4_x">
  3843. <boot>false</boot>
  3844. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll -r:./../../../class/lib/net_4_x/System.Core.dll</flags>
  3845. <output>System.Security.Cryptography.Encryption.ECDsa.dll</output>
  3846. <built_sources></built_sources>
  3847. <library_output>./../../../class/lib/net_4_x/Facades/System.Security.Cryptography.Encryption.ECDsa.dll</library_output>
  3848. <fx_version>4.5</fx_version>
  3849. <profile>net_4_x</profile>
  3850. <resources></resources>
  3851. <response>System.Security.Cryptography.Encryption.ECDsa.dll.sources</response>
  3852. </project>
  3853. <project dir="class/Facades/System.Security.Cryptography.Hashing" library="Facades_System.Security.Cryptography.Hashing-net_4_x">
  3854. <boot>false</boot>
  3855. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3856. <output>System.Security.Cryptography.Hashing.dll</output>
  3857. <built_sources></built_sources>
  3858. <library_output>./../../../class/lib/net_4_x/Facades/System.Security.Cryptography.Hashing.dll</library_output>
  3859. <fx_version>4.5</fx_version>
  3860. <profile>net_4_x</profile>
  3861. <resources></resources>
  3862. <response>System.Security.Cryptography.Hashing.dll.sources</response>
  3863. </project>
  3864. <project dir="class/Facades/System.Security.Cryptography.Hashing.Algorithms" library="Facades_System.Security.Cryptography.Hashing.Algorithms-net_4_x">
  3865. <boot>false</boot>
  3866. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3867. <output>System.Security.Cryptography.Hashing.Algorithms.dll</output>
  3868. <built_sources></built_sources>
  3869. <library_output>./../../../class/lib/net_4_x/Facades/System.Security.Cryptography.Hashing.Algorithms.dll</library_output>
  3870. <fx_version>4.5</fx_version>
  3871. <profile>net_4_x</profile>
  3872. <resources></resources>
  3873. <response>System.Security.Cryptography.Hashing.Algorithms.dll.sources</response>
  3874. </project>
  3875. <project dir="class/Facades/System.Security.Cryptography.RSA" library="Facades_System.Security.Cryptography.RSA-net_4_x">
  3876. <boot>false</boot>
  3877. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3878. <output>System.Security.Cryptography.RSA.dll</output>
  3879. <built_sources></built_sources>
  3880. <library_output>./../../../class/lib/net_4_x/Facades/System.Security.Cryptography.RSA.dll</library_output>
  3881. <fx_version>4.5</fx_version>
  3882. <profile>net_4_x</profile>
  3883. <resources></resources>
  3884. <response>System.Security.Cryptography.RSA.dll.sources</response>
  3885. </project>
  3886. <project dir="class/Facades/System.Security.Cryptography.RandomNumberGenerator" library="Facades_System.Security.Cryptography.RandomNumberGenerator-net_4_x">
  3887. <boot>false</boot>
  3888. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3889. <output>System.Security.Cryptography.RandomNumberGenerator.dll</output>
  3890. <built_sources></built_sources>
  3891. <library_output>./../../../class/lib/net_4_x/Facades/System.Security.Cryptography.RandomNumberGenerator.dll</library_output>
  3892. <fx_version>4.5</fx_version>
  3893. <profile>net_4_x</profile>
  3894. <resources></resources>
  3895. <response>System.Security.Cryptography.RandomNumberGenerator.dll.sources</response>
  3896. </project>
  3897. <project dir="class/Facades/System.Security.Cryptography.X509Certificates" library="Facades_System.Security.Cryptography.X509Certificates-net_4_x">
  3898. <boot>false</boot>
  3899. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3900. <output>System.Security.Cryptography.X509Certificates.dll</output>
  3901. <built_sources></built_sources>
  3902. <library_output>./../../../class/lib/net_4_x/Facades/System.Security.Cryptography.X509Certificates.dll</library_output>
  3903. <fx_version>4.5</fx_version>
  3904. <profile>net_4_x</profile>
  3905. <resources></resources>
  3906. <response>System.Security.Cryptography.X509Certificates.dll.sources</response>
  3907. </project>
  3908. <project dir="class/Facades/System.Security.Principal.Windows" library="Facades_System.Security.Principal.Windows-net_4_x">
  3909. <boot>false</boot>
  3910. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3911. <output>System.Security.Principal.Windows.dll</output>
  3912. <built_sources></built_sources>
  3913. <library_output>./../../../class/lib/net_4_x/Facades/System.Security.Principal.Windows.dll</library_output>
  3914. <fx_version>4.5</fx_version>
  3915. <profile>net_4_x</profile>
  3916. <resources></resources>
  3917. <response>System.Security.Principal.Windows.dll.sources</response>
  3918. </project>
  3919. <project dir="class/Facades/System.Threading.Thread" library="Facades_System.Threading.Thread-net_4_x">
  3920. <boot>false</boot>
  3921. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3922. <output>System.Threading.Thread.dll</output>
  3923. <built_sources></built_sources>
  3924. <library_output>./../../../class/lib/net_4_x/Facades/System.Threading.Thread.dll</library_output>
  3925. <fx_version>4.5</fx_version>
  3926. <profile>net_4_x</profile>
  3927. <resources></resources>
  3928. <response>System.Threading.Thread.dll.sources</response>
  3929. </project>
  3930. <project dir="class/Facades/System.Threading.ThreadPool" library="Facades_System.Threading.ThreadPool-net_4_x">
  3931. <boot>false</boot>
  3932. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3933. <output>System.Threading.ThreadPool.dll</output>
  3934. <built_sources></built_sources>
  3935. <library_output>./../../../class/lib/net_4_x/Facades/System.Threading.ThreadPool.dll</library_output>
  3936. <fx_version>4.5</fx_version>
  3937. <profile>net_4_x</profile>
  3938. <resources></resources>
  3939. <response>System.Threading.ThreadPool.dll.sources</response>
  3940. </project>
  3941. <project dir="class/Facades/System.Xml.XPath" library="Facades_System.Xml.XPath-net_4_x">
  3942. <boot>false</boot>
  3943. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll -r:./../../../class/lib/net_4_x/System.Xml.dll</flags>
  3944. <output>System.Xml.XPath.dll</output>
  3945. <built_sources></built_sources>
  3946. <library_output>./../../../class/lib/net_4_x/Facades/System.Xml.XPath.dll</library_output>
  3947. <fx_version>4.5</fx_version>
  3948. <profile>net_4_x</profile>
  3949. <resources></resources>
  3950. <response>System.Xml.XPath.dll.sources</response>
  3951. </project>
  3952. <project dir="class/Facades/System.Xml.XmlDocument" library="Facades_System.Xml.XmlDocument-net_4_x">
  3953. <boot>false</boot>
  3954. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll -r:./../../../class/lib/net_4_x/System.Xml.dll</flags>
  3955. <output>System.Xml.XmlDocument.dll</output>
  3956. <built_sources></built_sources>
  3957. <library_output>./../../../class/lib/net_4_x/Facades/System.Xml.XmlDocument.dll</library_output>
  3958. <fx_version>4.5</fx_version>
  3959. <profile>net_4_x</profile>
  3960. <resources></resources>
  3961. <response>System.Xml.XmlDocument.dll.sources</response>
  3962. </project>
  3963. <project dir="class/Facades/System.Xml.Xsl.Primitives" library="Facades_System.Xml.Xsl.Primitives-net_4_x">
  3964. <boot>false</boot>
  3965. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll -r:./../../../class/lib/net_4_x/System.Xml.dll</flags>
  3966. <output>System.Xml.Xsl.Primitives.dll</output>
  3967. <built_sources></built_sources>
  3968. <library_output>./../../../class/lib/net_4_x/Facades/System.Xml.Xsl.Primitives.dll</library_output>
  3969. <fx_version>4.5</fx_version>
  3970. <profile>net_4_x</profile>
  3971. <resources></resources>
  3972. <response>System.Xml.Xsl.Primitives.dll.sources</response>
  3973. </project>
  3974. <project dir="class/Facades/Microsoft.Win32.Registry.AccessControl" library="Facades_Microsoft.Win32.Registry.AccessControl-net_4_x">
  3975. <boot>false</boot>
  3976. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3977. <output>Microsoft.Win32.Registry.AccessControl.dll</output>
  3978. <built_sources></built_sources>
  3979. <library_output>./../../../class/lib/net_4_x/Facades/Microsoft.Win32.Registry.AccessControl.dll</library_output>
  3980. <fx_version>4.5</fx_version>
  3981. <profile>net_4_x</profile>
  3982. <resources></resources>
  3983. <response>Microsoft.Win32.Registry.AccessControl.dll.sources</response>
  3984. </project>
  3985. <project dir="class/Facades/System.Diagnostics.StackTrace" library="Facades_System.Diagnostics.StackTrace-net_4_x">
  3986. <boot>false</boot>
  3987. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3988. <output>System.Diagnostics.StackTrace.dll</output>
  3989. <built_sources></built_sources>
  3990. <library_output>./../../../class/lib/net_4_x/Facades/System.Diagnostics.StackTrace.dll</library_output>
  3991. <fx_version>4.5</fx_version>
  3992. <profile>net_4_x</profile>
  3993. <resources></resources>
  3994. <response>System.Diagnostics.StackTrace.dll.sources</response>
  3995. </project>
  3996. <project dir="class/Facades/System.Globalization.Extensions" library="Facades_System.Globalization.Extensions-net_4_x">
  3997. <boot>false</boot>
  3998. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  3999. <output>System.Globalization.Extensions.dll</output>
  4000. <built_sources></built_sources>
  4001. <library_output>./../../../class/lib/net_4_x/Facades/System.Globalization.Extensions.dll</library_output>
  4002. <fx_version>4.5</fx_version>
  4003. <profile>net_4_x</profile>
  4004. <resources></resources>
  4005. <response>System.Globalization.Extensions.dll.sources</response>
  4006. </project>
  4007. <project dir="class/Facades/System.IO.FileSystem.AccessControl" library="Facades_System.IO.FileSystem.AccessControl-net_4_x">
  4008. <boot>false</boot>
  4009. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  4010. <output>System.IO.FileSystem.AccessControl.dll</output>
  4011. <built_sources></built_sources>
  4012. <library_output>./../../../class/lib/net_4_x/Facades/System.IO.FileSystem.AccessControl.dll</library_output>
  4013. <fx_version>4.5</fx_version>
  4014. <profile>net_4_x</profile>
  4015. <resources></resources>
  4016. <response>System.IO.FileSystem.AccessControl.dll.sources</response>
  4017. </project>
  4018. <project dir="class/Facades/System.Private.CoreLib.InteropServices" library="Facades_System.Private.CoreLib.InteropServices-net_4_x">
  4019. <boot>false</boot>
  4020. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  4021. <output>System.Private.CoreLib.InteropServices.dll</output>
  4022. <built_sources></built_sources>
  4023. <library_output>./../../../class/lib/net_4_x/Facades/System.Private.CoreLib.InteropServices.dll</library_output>
  4024. <fx_version>4.5</fx_version>
  4025. <profile>net_4_x</profile>
  4026. <resources></resources>
  4027. <response>System.Private.CoreLib.InteropServices.dll.sources</response>
  4028. </project>
  4029. <project dir="class/Facades/System.Private.CoreLib.Threading" library="Facades_System.Private.CoreLib.Threading-net_4_x">
  4030. <boot>false</boot>
  4031. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  4032. <output>System.Private.CoreLib.Threading.dll</output>
  4033. <built_sources></built_sources>
  4034. <library_output>./../../../class/lib/net_4_x/Facades/System.Private.CoreLib.Threading.dll</library_output>
  4035. <fx_version>4.5</fx_version>
  4036. <profile>net_4_x</profile>
  4037. <resources></resources>
  4038. <response>System.Private.CoreLib.Threading.dll.sources</response>
  4039. </project>
  4040. <project dir="class/Facades/System.Reflection.TypeExtensions" library="Facades_System.Reflection.TypeExtensions-net_4_x">
  4041. <boot>false</boot>
  4042. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  4043. <output>System.Reflection.TypeExtensions.dll</output>
  4044. <built_sources></built_sources>
  4045. <library_output>./../../../class/lib/net_4_x/Facades/System.Reflection.TypeExtensions.dll</library_output>
  4046. <fx_version>4.5</fx_version>
  4047. <profile>net_4_x</profile>
  4048. <resources></resources>
  4049. <response>System.Reflection.TypeExtensions.dll.sources</response>
  4050. </project>
  4051. <project dir="class/Facades/System.Security.SecureString" library="Facades_System.Security.SecureString-net_4_x">
  4052. <boot>false</boot>
  4053. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  4054. <output>System.Security.SecureString.dll</output>
  4055. <built_sources></built_sources>
  4056. <library_output>./../../../class/lib/net_4_x/Facades/System.Security.SecureString.dll</library_output>
  4057. <fx_version>4.5</fx_version>
  4058. <profile>net_4_x</profile>
  4059. <resources></resources>
  4060. <response>System.Security.SecureString.dll.sources</response>
  4061. </project>
  4062. <project dir="class/Facades/System.Threading.AccessControl" library="Facades_System.Threading.AccessControl-net_4_x">
  4063. <boot>false</boot>
  4064. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  4065. <output>System.Threading.AccessControl.dll</output>
  4066. <built_sources></built_sources>
  4067. <library_output>./../../../class/lib/net_4_x/Facades/System.Threading.AccessControl.dll</library_output>
  4068. <fx_version>4.5</fx_version>
  4069. <profile>net_4_x</profile>
  4070. <resources></resources>
  4071. <response>System.Threading.AccessControl.dll.sources</response>
  4072. </project>
  4073. <project dir="class/Facades/System.Threading.Overlapped" library="Facades_System.Threading.Overlapped-net_4_x">
  4074. <boot>false</boot>
  4075. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  4076. <output>System.Threading.Overlapped.dll</output>
  4077. <built_sources></built_sources>
  4078. <library_output>./../../../class/lib/net_4_x/Facades/System.Threading.Overlapped.dll</library_output>
  4079. <fx_version>4.5</fx_version>
  4080. <profile>net_4_x</profile>
  4081. <resources></resources>
  4082. <response>System.Threading.Overlapped.dll.sources</response>
  4083. </project>
  4084. <project dir="class/Facades/System.Xml.XPath.XDocument" library="Facades_System.Xml.XPath.XDocument-net_4_x">
  4085. <boot>false</boot>
  4086. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll -r:./../../../class/lib/net_4_x/System.Xml.Linq.dll</flags>
  4087. <output>System.Xml.XPath.XDocument.dll</output>
  4088. <built_sources></built_sources>
  4089. <library_output>./../../../class/lib/net_4_x/Facades/System.Xml.XPath.XDocument.dll</library_output>
  4090. <fx_version>4.5</fx_version>
  4091. <profile>net_4_x</profile>
  4092. <resources></resources>
  4093. <response>System.Xml.XPath.XDocument.dll.sources</response>
  4094. </project>
  4095. <project dir="class/Facades/System.Reflection.Emit.ILGeneration" library="Facades_System.Reflection.Emit.ILGeneration-net_4_x">
  4096. <boot>false</boot>
  4097. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699</flags>
  4098. <output>System.Reflection.Emit.ILGeneration.dll</output>
  4099. <built_sources></built_sources>
  4100. <library_output>./../../../class/lib/net_4_x/Facades/System.Reflection.Emit.ILGeneration.dll</library_output>
  4101. <fx_version>4.5</fx_version>
  4102. <profile>net_4_x</profile>
  4103. <resources></resources>
  4104. <response>System.Reflection.Emit.ILGeneration.dll.sources</response>
  4105. </project>
  4106. <project dir="class/Facades/System.Reflection.Emit.Lightweight" library="Facades_System.Reflection.Emit.Lightweight-net_4_x">
  4107. <boot>false</boot>
  4108. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699</flags>
  4109. <output>System.Reflection.Emit.Lightweight.dll</output>
  4110. <built_sources></built_sources>
  4111. <library_output>./../../../class/lib/net_4_x/Facades/System.Reflection.Emit.Lightweight.dll</library_output>
  4112. <fx_version>4.5</fx_version>
  4113. <profile>net_4_x</profile>
  4114. <resources></resources>
  4115. <response>System.Reflection.Emit.Lightweight.dll.sources</response>
  4116. </project>
  4117. <project dir="class/Facades/System.Reflection.Emit" library="Facades_System.Reflection.Emit-net_4_x">
  4118. <boot>false</boot>
  4119. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699</flags>
  4120. <output>System.Reflection.Emit.dll</output>
  4121. <built_sources></built_sources>
  4122. <library_output>./../../../class/lib/net_4_x/Facades/System.Reflection.Emit.dll</library_output>
  4123. <fx_version>4.5</fx_version>
  4124. <profile>net_4_x</profile>
  4125. <resources></resources>
  4126. <response>System.Reflection.Emit.dll.sources</response>
  4127. </project>
  4128. <project dir="class/Facades/System.Diagnostics.PerformanceCounter" library="Facades_System.Diagnostics.PerformanceCounter-net_4_x">
  4129. <boot>false</boot>
  4130. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  4131. <output>System.Diagnostics.PerformanceCounter.dll</output>
  4132. <built_sources></built_sources>
  4133. <library_output>./../../../class/lib/net_4_x/Facades/System.Diagnostics.PerformanceCounter.dll</library_output>
  4134. <fx_version>4.5</fx_version>
  4135. <profile>net_4_x</profile>
  4136. <resources></resources>
  4137. <response>System.Diagnostics.PerformanceCounter.dll.sources</response>
  4138. </project>
  4139. <project dir="class/Facades/System.IO.FileSystem.Watcher" library="Facades_System.IO.FileSystem.Watcher-net_4_x">
  4140. <boot>false</boot>
  4141. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll</flags>
  4142. <output>System.IO.FileSystem.Watcher.dll</output>
  4143. <built_sources></built_sources>
  4144. <library_output>./../../../class/lib/net_4_x/Facades/System.IO.FileSystem.Watcher.dll</library_output>
  4145. <fx_version>4.5</fx_version>
  4146. <profile>net_4_x</profile>
  4147. <resources></resources>
  4148. <response>System.IO.FileSystem.Watcher.dll.sources</response>
  4149. </project>
  4150. <project dir="class/Facades/System.IO.Pipes" library="Facades_System.IO.Pipes-net_4_x">
  4151. <boot>false</boot>
  4152. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll -r:./../../../class/lib/net_4_x/System.Core.dll</flags>
  4153. <output>System.IO.Pipes.dll</output>
  4154. <built_sources></built_sources>
  4155. <library_output>./../../../class/lib/net_4_x/Facades/System.IO.Pipes.dll</library_output>
  4156. <fx_version>4.5</fx_version>
  4157. <profile>net_4_x</profile>
  4158. <resources></resources>
  4159. <response>System.IO.Pipes.dll.sources</response>
  4160. </project>
  4161. <project dir="class/Facades/System.Security.Cryptography.ProtectedData" library="Facades_System.Security.Cryptography.ProtectedData-net_4_x">
  4162. <boot>false</boot>
  4163. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll -r:./../../../class/lib/net_4_x/System.Security.dll</flags>
  4164. <output>System.Security.Cryptography.ProtectedData.dll</output>
  4165. <built_sources></built_sources>
  4166. <library_output>./../../../class/lib/net_4_x/Facades/System.Security.Cryptography.ProtectedData.dll</library_output>
  4167. <fx_version>4.5</fx_version>
  4168. <profile>net_4_x</profile>
  4169. <resources></resources>
  4170. <response>System.Security.Cryptography.ProtectedData.dll.sources</response>
  4171. </project>
  4172. <project dir="class/Facades/System.ServiceProcess.ServiceController" library="Facades_System.ServiceProcess.ServiceController-net_4_x">
  4173. <boot>false</boot>
  4174. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll -r:./../../../class/lib/net_4_x/System.ServiceProcess.dll</flags>
  4175. <output>System.ServiceProcess.ServiceController.dll</output>
  4176. <built_sources></built_sources>
  4177. <library_output>./../../../class/lib/net_4_x/Facades/System.ServiceProcess.ServiceController.dll</library_output>
  4178. <fx_version>4.5</fx_version>
  4179. <profile>net_4_x</profile>
  4180. <resources></resources>
  4181. <response>System.ServiceProcess.ServiceController.dll.sources</response>
  4182. </project>
  4183. <project dir="class/Facades/System.Net.Http.WebRequestHandler" library="Facades_System.Net.Http.WebRequestHandler-net_4_x">
  4184. <boot>false</boot>
  4185. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 -r:./../../../class/lib/net_4_x/System.dll -r:./../../../class/lib/net_4_x/System.Net.Http.WebRequest.dll -r:./../../../class/lib/net_4_x/System.Net.Http.dll</flags>
  4186. <output>System.Net.Http.WebRequestHandler.dll</output>
  4187. <built_sources></built_sources>
  4188. <library_output>./../../../class/lib/net_4_x/Facades/System.Net.Http.WebRequestHandler.dll</library_output>
  4189. <fx_version>4.5</fx_version>
  4190. <profile>net_4_x</profile>
  4191. <resources></resources>
  4192. <response>System.Net.Http.WebRequestHandler.dll.sources</response>
  4193. </project>
  4194. <project dir="nunit24/NUnitFramework/framework" library="NUnit.Framework-net_4_x">
  4195. <boot>false</boot>
  4196. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig /d:StronglyNamedAssembly -warn:1 /publicsign -r:./../../../class/lib/net_4_x/System.Xml.dll -r:./../../../class/lib/net_4_x/System.dll</flags>
  4197. <output>nunit.framework.dll</output>
  4198. <built_sources></built_sources>
  4199. <library_output>./../../../class/lib/net_4_x/nunit.framework.dll</library_output>
  4200. <fx_version>4.5</fx_version>
  4201. <profile>net_4_x</profile>
  4202. <resources></resources>
  4203. <response>NUnit.Framework.dll.sources</response>
  4204. </project>
  4205. <project dir="nunit24/NUnitCore/interfaces" library="nunit.core.interfaces-net_4_x">
  4206. <boot>false</boot>
  4207. <flags>/codepage:65001 /d:StronglyNamedAssembly /publicsign -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../../class/lib/net_4_x/nunit.framework.dll -r:./../../../class/lib/net_4_x/System.dll</flags>
  4208. <output>nunit.core.interfaces.dll</output>
  4209. <built_sources></built_sources>
  4210. <library_output>./../../../class/lib/net_4_x/nunit.core.interfaces.dll</library_output>
  4211. <fx_version>4.5</fx_version>
  4212. <profile>net_4_x</profile>
  4213. <resources></resources>
  4214. <response>nunit.core.interfaces.dll.sources</response>
  4215. </project>
  4216. <project dir="nunit24/NUnitCore/core" library="nunit.core-net_4_x">
  4217. <boot>false</boot>
  4218. <flags>/codepage:65001 /d:StronglyNamedAssembly -warn:1 /publicsign -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../../class/lib/net_4_x/nunit.framework.dll -r:./../../../class/lib/net_4_x/nunit.core.interfaces.dll -r:./../../../class/lib/net_4_x/System.dll</flags>
  4219. <output>nunit.core.dll</output>
  4220. <built_sources></built_sources>
  4221. <library_output>./../../../class/lib/net_4_x/nunit.core.dll</library_output>
  4222. <fx_version>4.5</fx_version>
  4223. <profile>net_4_x</profile>
  4224. <resources></resources>
  4225. <response>nunit.core.dll.sources</response>
  4226. </project>
  4227. <project dir="nunit24/ClientUtilities/util" library="nunit.util-net_4_x">
  4228. <boot>false</boot>
  4229. <flags>/codepage:65001 /resource:Transform.resources,NUnit.Util.Transform.resources /d:MONO /d:StronglyNamedAssembly /publicsign -warn:1 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../../class/lib/net_4_x/nunit.core.dll -r:./../../../class/lib/net_4_x/nunit.core.interfaces.dll -r:./../../../class/lib/net_4_x/System.dll -r:./../../../class/lib/net_4_x/System.Xml.dll -r:./../../../class/lib/net_4_x/System.Runtime.Remoting.dll</flags>
  4230. <output>nunit.util.dll</output>
  4231. <built_sources></built_sources>
  4232. <library_output>./../../../class/lib/net_4_x/nunit.util.dll</library_output>
  4233. <fx_version>4.5</fx_version>
  4234. <profile>net_4_x</profile>
  4235. <resources></resources>
  4236. <response>nunit.util.dll.sources</response>
  4237. </project>
  4238. <project dir="nunit24/NUnitMocks/mocks" library="nunit.mocks-net_4_x">
  4239. <boot>false</boot>
  4240. <flags>/codepage:65001 /d:StronglyNamedAssembly /publicsign -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../../class/lib/net_4_x/nunit.framework.dll -r:./../../../class/lib/net_4_x/System.dll</flags>
  4241. <output>nunit.mocks.dll</output>
  4242. <built_sources></built_sources>
  4243. <library_output>./../../../class/lib/net_4_x/nunit.mocks.dll</library_output>
  4244. <fx_version>4.5</fx_version>
  4245. <profile>net_4_x</profile>
  4246. <resources></resources>
  4247. <response>nunit.mocks.dll.sources</response>
  4248. </project>
  4249. <project dir="nunit24/NUnitExtensions/framework" library="nunit.framework.extensions-net_4_x">
  4250. <boot>false</boot>
  4251. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig /d:StronglyNamedAssembly /publicsign -r:./../../../class/lib/net_4_x/System.Xml.dll -r:./../../../class/lib/net_4_x/System.dll</flags>
  4252. <output>nunit.framework.extensions.dll</output>
  4253. <built_sources></built_sources>
  4254. <library_output>./../../../class/lib/net_4_x/nunit.framework.extensions.dll</library_output>
  4255. <fx_version>4.5</fx_version>
  4256. <profile>net_4_x</profile>
  4257. <resources></resources>
  4258. <response>nunit.framework.extensions.dll.sources</response>
  4259. </project>
  4260. <project dir="nunit24/NUnitExtensions/core" library="nunit.core.extensions-net_4_x">
  4261. <boot>false</boot>
  4262. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig /d:StronglyNamedAssembly /publicsign -r:./../../../class/lib/net_4_x/nunit.core.dll -r:./../../../class/lib/net_4_x/nunit.core.interfaces.dll -r:./../../../class/lib/net_4_x/System.Xml.dll -r:./../../../class/lib/net_4_x/System.dll</flags>
  4263. <output>nunit.core.extensions.dll</output>
  4264. <built_sources></built_sources>
  4265. <library_output>./../../../class/lib/net_4_x/nunit.core.extensions.dll</library_output>
  4266. <fx_version>4.5</fx_version>
  4267. <profile>net_4_x</profile>
  4268. <resources></resources>
  4269. <response>nunit.core.extensions.dll.sources</response>
  4270. </project>
  4271. <project dir="nunit24/ConsoleRunner/nunit-console" library="nunit-console-runner-net_4_x">
  4272. <boot>false</boot>
  4273. <flags>/codepage:65001 /d:MONO /d:StronglyNamedAssembly /publicsign -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../../class/lib/net_4_x/nunit.core.dll -r:./../../../class/lib/net_4_x/nunit.core.interfaces.dll -r:./../../../class/lib/net_4_x/nunit.util.dll -r:./../../../class/lib/net_4_x/System.dll -r:./../../../class/lib/net_4_x/System.Xml.dll</flags>
  4274. <output>nunit-console-runner.dll</output>
  4275. <built_sources></built_sources>
  4276. <library_output>./../../../class/lib/net_4_x/nunit-console-runner.dll</library_output>
  4277. <fx_version>4.5</fx_version>
  4278. <profile>net_4_x</profile>
  4279. <resources></resources>
  4280. <response>nunit-console-runner.dll.sources</response>
  4281. </project>
  4282. <project dir="nunit24/ConsoleRunner/nunit-console-exe" library="nunit-console-net_4_x">
  4283. <boot></boot>
  4284. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:nunit.framework -r:nunit.util -r:nunit.core -r:nunit-console-runner</flags>
  4285. <output>nunit-console.exe</output>
  4286. <built_sources></built_sources>
  4287. <library_output>./../../../class/lib/net_4_x/nunit-console.exe</library_output>
  4288. <fx_version>4.5</fx_version>
  4289. <profile>net_4_x</profile>
  4290. <resources></resources>
  4291. <response>nunit-console.exe.sources</response>
  4292. </project>
  4293. <project dir="ilasm" library="ilasm-net_4_x">
  4294. <boot></boot>
  4295. <flags>/codepage:65001 /lib:../class/lib/net_4_x /r:../class/lib/net_4_x/PEAPI.dll /r:Mono.CompilerServices.SymbolWriter.dll /r:Mono.Security.dll -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig</flags>
  4296. <output>ilasm.exe</output>
  4297. <built_sources>ILParser.cs</built_sources>
  4298. <library_output>./../class/lib/net_4_x/ilasm.exe</library_output>
  4299. <fx_version>4.5</fx_version>
  4300. <profile>net_4_x</profile>
  4301. <resources></resources>
  4302. <response>ilasm.exe.sources</response>
  4303. </project>
  4304. <project dir="tools/gacutil" library="gacutil-net_4_x">
  4305. <boot></boot>
  4306. <flags>/codepage:65001 -unsafe -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:Mono.Security</flags>
  4307. <output>gacutil.exe</output>
  4308. <built_sources></built_sources>
  4309. <library_output>./../../class/lib/net_4_x/gacutil.exe</library_output>
  4310. <fx_version>4.5</fx_version>
  4311. <profile>net_4_x</profile>
  4312. <resources></resources>
  4313. <response>gacutil.exe.sources</response>
  4314. </project>
  4315. <project dir="tools/culevel" library="culevel-net_4_x">
  4316. <boot></boot>
  4317. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:System -r:System.Xml</flags>
  4318. <output>culevel.exe</output>
  4319. <built_sources></built_sources>
  4320. <library_output>./../../class/lib/net_4_x/culevel.exe</library_output>
  4321. <fx_version>4.5</fx_version>
  4322. <profile>net_4_x</profile>
  4323. <resources></resources>
  4324. <response>culevel.exe.sources</response>
  4325. </project>
  4326. <project dir="tools/cil-stringreplacer" library="cil-stringreplacer-net_4_x">
  4327. <boot></boot>
  4328. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:System -r:Mono.Cecil</flags>
  4329. <output>cil-stringreplacer.exe</output>
  4330. <built_sources></built_sources>
  4331. <library_output>./../../class/lib/net_4_x/cil-stringreplacer.exe</library_output>
  4332. <fx_version>4.5</fx_version>
  4333. <profile>net_4_x</profile>
  4334. <resources></resources>
  4335. <response>cil-stringreplacer.exe.sources</response>
  4336. </project>
  4337. <project dir="tools/commoncryptogenerator" library="commoncryptogenerator-net_4_x">
  4338. <boot></boot>
  4339. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig</flags>
  4340. <output>commoncryptogenerator.exe</output>
  4341. <built_sources></built_sources>
  4342. <library_output>./../../class/lib/net_4_x/commoncryptogenerator.exe</library_output>
  4343. <fx_version>4.5</fx_version>
  4344. <profile>net_4_x</profile>
  4345. <resources></resources>
  4346. <response>commoncryptogenerator.exe.sources</response>
  4347. </project>
  4348. <project dir="tools/al" library="al-net_4_x">
  4349. <boot></boot>
  4350. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:System -r:System.Core -r:Mono.Security -r:System.Security -r:Mono.CompilerServices.SymbolWriter</flags>
  4351. <output>al.exe</output>
  4352. <built_sources></built_sources>
  4353. <library_output>./../../class/lib/net_4_x/al.exe</library_output>
  4354. <fx_version>4.5</fx_version>
  4355. <profile>net_4_x</profile>
  4356. <resources></resources>
  4357. <response>al.exe.sources</response>
  4358. </project>
  4359. <project dir="tools/linker" library="monolinker-net_4_x">
  4360. <boot></boot>
  4361. <flags>/codepage:65001 -resource:Descriptors/mscorlib.xml -resource:Descriptors/System.xml -resource:Descriptors/System.Core.xml -resource:Descriptors/System.Drawing.xml -resource:Descriptors/System.Web.xml -resource:Descriptors/Mono.Posix.xml -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:System -r:System.Core -r:System.Xml -r:Mono.Cecil</flags>
  4362. <output>monolinker.exe</output>
  4363. <built_sources></built_sources>
  4364. <library_output>./../../class/lib/net_4_x/monolinker.exe</library_output>
  4365. <fx_version>4.5</fx_version>
  4366. <profile>net_4_x</profile>
  4367. <resources></resources>
  4368. <response>monolinker.exe.sources</response>
  4369. </project>
  4370. <project dir="tools/tuner" library="Mono.Tuner-net_4_x">
  4371. <boot>false</boot>
  4372. <flags>/codepage:65001 -r:./../../class/lib/net_4_x/monolinker.exe -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../class/lib/net_4_x/System.dll -r:./../../class/lib/net_4_x/System.Core.dll -r:./../../class/lib/net_4_x/System.Xml.dll -r:./../../class/lib/net_4_x/Mono.Cecil.dll</flags>
  4373. <output>Mono.Tuner.dll</output>
  4374. <built_sources></built_sources>
  4375. <library_output>./../../class/lib/net_4_x/Mono.Tuner.dll</library_output>
  4376. <fx_version>4.5</fx_version>
  4377. <profile>net_4_x</profile>
  4378. <resources></resources>
  4379. <response>Mono.Tuner.dll.sources</response>
  4380. </project>
  4381. <project dir="tools/culevel" library="culevel-net_4_x">
  4382. <boot></boot>
  4383. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:System -r:System.Xml</flags>
  4384. <output>culevel.exe</output>
  4385. <built_sources></built_sources>
  4386. <library_output>./../../class/lib/net_4_x/culevel.exe</library_output>
  4387. <fx_version>4.5</fx_version>
  4388. <profile>net_4_x</profile>
  4389. <resources></resources>
  4390. <response>culevel.exe.sources</response>
  4391. </project>
  4392. <project dir="tools/genxs" library="genxs-net_4_x">
  4393. <boot></boot>
  4394. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:System.Xml</flags>
  4395. <output>genxs.exe</output>
  4396. <built_sources></built_sources>
  4397. <library_output>./../../class/lib/net_4_x/genxs.exe</library_output>
  4398. <fx_version>4.5</fx_version>
  4399. <profile>net_4_x</profile>
  4400. <resources></resources>
  4401. <response>genxs.exe.sources</response>
  4402. </project>
  4403. <project dir="tools/mkbundle" library="mkbundle-net_4_x">
  4404. <boot></boot>
  4405. <flags>/codepage:65001 -resource:template.c -resource:template_z.c -resource:template_main.c -d:STATIC,NO_SYMBOL_WRITER,NO_AUTHENTICODE -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:System.Xml -r:System -r:System.Core</flags>
  4406. <output>mkbundle.exe</output>
  4407. <built_sources></built_sources>
  4408. <library_output>./../../class/lib/net_4_x/mkbundle.exe</library_output>
  4409. <fx_version>4.5</fx_version>
  4410. <profile>net_4_x</profile>
  4411. <resources></resources>
  4412. <response>mkbundle.exe.sources</response>
  4413. </project>
  4414. <project dir="tools/monop" library="monop-net_4_x">
  4415. <boot></boot>
  4416. <flags>/codepage:65001 -d:NO_AUTHENTICODE,STATIC,NO_SYMBOL_WRITER -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:System</flags>
  4417. <output>monop.exe</output>
  4418. <built_sources></built_sources>
  4419. <library_output>./../../class/lib/net_4_x/monop.exe</library_output>
  4420. <fx_version>4.5</fx_version>
  4421. <profile>net_4_x</profile>
  4422. <resources></resources>
  4423. <response>monop.exe.sources</response>
  4424. </project>
  4425. <project dir="tools/mono-service" library="mono-service-net_4_x">
  4426. <boot></boot>
  4427. <flags>/codepage:65001 -unsafe -publicsign -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:System.ServiceProcess -r:Mono.Posix -r:System</flags>
  4428. <output>mono-service.exe</output>
  4429. <built_sources></built_sources>
  4430. <library_output>./../../class/lib/net_4_x/mono-service.exe</library_output>
  4431. <fx_version>4.5</fx_version>
  4432. <profile>net_4_x</profile>
  4433. <resources></resources>
  4434. <response>mono-service.exe.sources</response>
  4435. </project>
  4436. <project dir="tools/mono-xsd" library="xsd-net_4_x">
  4437. <boot></boot>
  4438. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:System.Xml -r:System.Data -r:System</flags>
  4439. <output>xsd.exe</output>
  4440. <built_sources></built_sources>
  4441. <library_output>./../../class/lib/net_4_x/xsd.exe</library_output>
  4442. <fx_version>4.5</fx_version>
  4443. <profile>net_4_x</profile>
  4444. <resources></resources>
  4445. <response>xsd.exe.sources</response>
  4446. </project>
  4447. <project dir="tools/resgen" library="resgen-net_4_x">
  4448. <boot></boot>
  4449. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:System -r:System.Xml -r:System.Core</flags>
  4450. <output>resgen.exe</output>
  4451. <built_sources></built_sources>
  4452. <library_output>./../../class/lib/net_4_x/resgen.exe</library_output>
  4453. <fx_version>4.5</fx_version>
  4454. <profile>net_4_x</profile>
  4455. <resources></resources>
  4456. <response>resgen.exe.sources</response>
  4457. </project>
  4458. <project dir="tools/gacutil" library="gacutil-net_4_x">
  4459. <boot></boot>
  4460. <flags>/codepage:65001 -unsafe -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:Mono.Security</flags>
  4461. <output>gacutil.exe</output>
  4462. <built_sources></built_sources>
  4463. <library_output>./../../class/lib/net_4_x/gacutil.exe</library_output>
  4464. <fx_version>4.5</fx_version>
  4465. <profile>net_4_x</profile>
  4466. <resources></resources>
  4467. <response>gacutil.exe.sources</response>
  4468. </project>
  4469. <project dir="tools/wsdl" library="wsdl-net_4_x">
  4470. <boot></boot>
  4471. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:System.Xml -r:System.Web.Services -r:System</flags>
  4472. <output>wsdl.exe</output>
  4473. <built_sources></built_sources>
  4474. <library_output>./../../class/lib/net_4_x/wsdl.exe</library_output>
  4475. <fx_version>4.5</fx_version>
  4476. <profile>net_4_x</profile>
  4477. <resources></resources>
  4478. <response>wsdl.exe.sources</response>
  4479. </project>
  4480. <project dir="tools/xbuild" library="xbuild-net_4_x">
  4481. <boot></boot>
  4482. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:Microsoft.Build.Framework -r:Microsoft.Build.Utilities.v4.0 -r:Microsoft.Build.Engine -r:Microsoft.Build.Tasks.v4.0 -r:System -r:System.Core</flags>
  4483. <output>xbuild.exe</output>
  4484. <built_sources></built_sources>
  4485. <library_output>./../../class/lib/net_4_x/xbuild.exe</library_output>
  4486. <fx_version>4.5</fx_version>
  4487. <profile>net_4_x</profile>
  4488. <resources></resources>
  4489. <response>xbuild.exe.sources</response>
  4490. </project>
  4491. <project dir="tools/csharp" library="csharp-net_4_x">
  4492. <boot></boot>
  4493. <flags>/codepage:65001 -unsafe -nowarn:3021 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:Mono.CSharp -r:Mono.Posix -r:Mono.Management -r:System</flags>
  4494. <output>csharp.exe</output>
  4495. <built_sources></built_sources>
  4496. <library_output>./../../class/lib/net_4_x/csharp.exe</library_output>
  4497. <fx_version>4.5</fx_version>
  4498. <profile>net_4_x</profile>
  4499. <resources></resources>
  4500. <response>csharp.exe.sources</response>
  4501. </project>
  4502. <project dir="tools/corcompare" library="mono-api-info-net_4_x">
  4503. <boot></boot>
  4504. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:Mono.Cecil -r:System.Xml -r:System.Core -r:System</flags>
  4505. <output>mono-api-info.exe</output>
  4506. <built_sources></built_sources>
  4507. <library_output>./../../class/lib/net_4_x/mono-api-info.exe</library_output>
  4508. <fx_version>4.5</fx_version>
  4509. <profile>net_4_x</profile>
  4510. <resources></resources>
  4511. <response>mono-api-info.exe.sources</response>
  4512. </project>
  4513. <project dir="tools/mono-api-html" library="mono-api-html-net_4_x">
  4514. <boot></boot>
  4515. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:Mono.Cecil -r:System.Xml -r:System.Core -r:System -r:System.Xml.Linq</flags>
  4516. <output>mono-api-html.exe</output>
  4517. <built_sources></built_sources>
  4518. <library_output>./../../class/lib/net_4_x/mono-api-html.exe</library_output>
  4519. <fx_version>4.5</fx_version>
  4520. <profile>net_4_x</profile>
  4521. <resources></resources>
  4522. <response>mono-api-html.exe.sources</response>
  4523. </project>
  4524. <project dir="tools/compiler-tester" library="compiler-tester-net_4_x">
  4525. <boot></boot>
  4526. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:System -r:System.Core -r:System.Xml</flags>
  4527. <output>compiler-tester.exe</output>
  4528. <built_sources></built_sources>
  4529. <library_output>./../../class/lib/net_4_x/compiler-tester.exe</library_output>
  4530. <fx_version>4.5</fx_version>
  4531. <profile>net_4_x</profile>
  4532. <resources></resources>
  4533. <response>compiler-tester.exe.sources</response>
  4534. </project>
  4535. <project dir="tools/mono-xmltool" library="mono-xmltool-net_4_x">
  4536. <boot></boot>
  4537. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:System.Xml -r:Commons.Xml.Relaxng</flags>
  4538. <output>mono-xmltool.exe</output>
  4539. <built_sources></built_sources>
  4540. <library_output>./../../class/lib/net_4_x/mono-xmltool.exe</library_output>
  4541. <fx_version>4.5</fx_version>
  4542. <profile>net_4_x</profile>
  4543. <resources></resources>
  4544. <response>mono-xmltool.exe.sources</response>
  4545. </project>
  4546. <project dir="tools/mono-shlib-cop" library="mono-shlib-cop-net_4_x">
  4547. <boot></boot>
  4548. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:Mono.Posix -r:System -r:System.Xml</flags>
  4549. <output>mono-shlib-cop.exe</output>
  4550. <built_sources></built_sources>
  4551. <library_output>./../../class/lib/net_4_x/mono-shlib-cop.exe</library_output>
  4552. <fx_version>4.5</fx_version>
  4553. <profile>net_4_x</profile>
  4554. <resources></resources>
  4555. <response>mono-shlib-cop.exe.sources</response>
  4556. </project>
  4557. <project dir="tools/sgen" library="sgen-net_4_x">
  4558. <boot></boot>
  4559. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:System.Xml -r:System</flags>
  4560. <output>sgen.exe</output>
  4561. <built_sources></built_sources>
  4562. <library_output>./../../class/lib/net_4_x/sgen.exe</library_output>
  4563. <fx_version>4.5</fx_version>
  4564. <profile>net_4_x</profile>
  4565. <resources></resources>
  4566. <response>sgen.exe.sources</response>
  4567. </project>
  4568. <project dir="tools/mconfig" library="mconfig-net_4_x">
  4569. <boot></boot>
  4570. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:System.Xml -r:System</flags>
  4571. <output>mconfig.exe</output>
  4572. <built_sources></built_sources>
  4573. <library_output>./../../class/lib/net_4_x/mconfig.exe</library_output>
  4574. <fx_version>4.5</fx_version>
  4575. <profile>net_4_x</profile>
  4576. <resources></resources>
  4577. <response>mconfig.exe.sources</response>
  4578. </project>
  4579. <project dir="tools/installutil" library="installutil-net_4_x">
  4580. <boot></boot>
  4581. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:System.Configuration.Install -r:System</flags>
  4582. <output>installutil.exe</output>
  4583. <built_sources></built_sources>
  4584. <library_output>./../../class/lib/net_4_x/installutil.exe</library_output>
  4585. <fx_version>4.5</fx_version>
  4586. <profile>net_4_x</profile>
  4587. <resources></resources>
  4588. <response>installutil.exe.sources</response>
  4589. </project>
  4590. <project dir="tools/nunitreport" library="nunitreport-net_4_x">
  4591. <boot></boot>
  4592. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:System.Xml</flags>
  4593. <output>nunitreport.exe</output>
  4594. <built_sources></built_sources>
  4595. <library_output>./../../class/lib/net_4_x/nunitreport.exe</library_output>
  4596. <fx_version>4.5</fx_version>
  4597. <profile>net_4_x</profile>
  4598. <resources></resources>
  4599. <response>nunitreport.exe.sources</response>
  4600. </project>
  4601. <project dir="tools/pdb2mdb" library="pdb2mdb-net_4_x">
  4602. <boot></boot>
  4603. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:Mono.Cecil -r:Mono.CompilerServices.SymbolWriter -r:System.Core</flags>
  4604. <output>pdb2mdb.exe</output>
  4605. <built_sources></built_sources>
  4606. <library_output>./../../class/lib/net_4_x/pdb2mdb.exe</library_output>
  4607. <fx_version>4.5</fx_version>
  4608. <profile>net_4_x</profile>
  4609. <resources></resources>
  4610. <response>pdb2mdb.exe.sources</response>
  4611. </project>
  4612. <project dir="tools/SqlSharp" library="sqlsharp-net_4_x">
  4613. <boot></boot>
  4614. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:System -r:System.Xml -r:System.Data</flags>
  4615. <output>sqlsharp.exe</output>
  4616. <built_sources></built_sources>
  4617. <library_output>./../../class/lib/net_4_x/sqlsharp.exe</library_output>
  4618. <fx_version>4.5</fx_version>
  4619. <profile>net_4_x</profile>
  4620. <resources></resources>
  4621. <response>sqlsharp.exe.sources</response>
  4622. </project>
  4623. <project dir="tools/sqlmetal" library="sqlmetal-net_4_x">
  4624. <boot></boot>
  4625. <flags>/codepage:65001 -d:MONO_STRICT -keyfile:../../class/System.Data.Linq/src/DbMetal/../DbLinq.snk -resource:../../class/System.Data.Linq/src/DbMetal/Language/EnglishWords.txt,DbMetal.Language.EnglishWords.txt -resource:../../class/System.Data.Linq/src/DbMetal/Language/FrenchWords.txt,DbMetal.Language.FrenchWords.txt -resource:../../class/System.Data.Linq/src/DbMetal/Language/GermanWords.txt,DbMetal.Language.GermanWords.txt -publicsign -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:System.Configuration -r:System.Core -r:System.Data -r:System.Data.Linq -r:System.Xml -r:System</flags>
  4626. <output>sqlmetal.exe</output>
  4627. <built_sources></built_sources>
  4628. <library_output>./../../class/lib/net_4_x/sqlmetal.exe</library_output>
  4629. <fx_version>4.5</fx_version>
  4630. <profile>net_4_x</profile>
  4631. <resources></resources>
  4632. <response>sqlmetal.exe.sources</response>
  4633. </project>
  4634. <project dir="tools/svcutil" library="svcutil-net_4_x">
  4635. <boot></boot>
  4636. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:System.Core -r:System.Runtime.Serialization -r:System.ServiceModel -r:System.Web.Services -r:System.Configuration -r:System -r:System.Xml</flags>
  4637. <output>svcutil.exe</output>
  4638. <built_sources></built_sources>
  4639. <library_output>./../../class/lib/net_4_x/svcutil.exe</library_output>
  4640. <fx_version>4.5</fx_version>
  4641. <profile>net_4_x</profile>
  4642. <resources></resources>
  4643. <response>svcutil.exe.sources</response>
  4644. </project>
  4645. <project dir="tools/ictool" library="ictool-net_4_x">
  4646. <boot></boot>
  4647. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:System.Xml</flags>
  4648. <output>ictool.exe</output>
  4649. <built_sources></built_sources>
  4650. <library_output>./../../class/lib/net_4_x/ictool.exe</library_output>
  4651. <fx_version>4.5</fx_version>
  4652. <profile>net_4_x</profile>
  4653. <resources></resources>
  4654. <response>ictool.exe.sources</response>
  4655. </project>
  4656. <project dir="tools/disco" library="disco-net_4_x">
  4657. <boot></boot>
  4658. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:System.Xml -r:System.Web.Services -r:System</flags>
  4659. <output>disco.exe</output>
  4660. <built_sources></built_sources>
  4661. <library_output>./../../class/lib/net_4_x/disco.exe</library_output>
  4662. <fx_version>4.5</fx_version>
  4663. <profile>net_4_x</profile>
  4664. <resources></resources>
  4665. <response>disco.exe.sources</response>
  4666. </project>
  4667. <project dir="tools/soapsuds" library="soapsuds-net_4_x">
  4668. <boot></boot>
  4669. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:System.Runtime.Remoting -r:System</flags>
  4670. <output>soapsuds.exe</output>
  4671. <built_sources></built_sources>
  4672. <library_output>./../../class/lib/net_4_x/soapsuds.exe</library_output>
  4673. <fx_version>4.5</fx_version>
  4674. <profile>net_4_x</profile>
  4675. <resources></resources>
  4676. <response>soapsuds.exe.sources</response>
  4677. </project>
  4678. <project dir="tools/browsercaps-updater" library="browsercaps-updater-net_4_x">
  4679. <boot></boot>
  4680. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:System</flags>
  4681. <output>browsercaps-updater.exe</output>
  4682. <built_sources></built_sources>
  4683. <library_output>./../../class/lib/net_4_x/browsercaps-updater.exe</library_output>
  4684. <fx_version>4.5</fx_version>
  4685. <profile>net_4_x</profile>
  4686. <resources></resources>
  4687. <response>browsercaps-updater.exe.sources</response>
  4688. </project>
  4689. <project dir="tools/cil-strip" library="mono-cil-strip-net_4_x">
  4690. <boot></boot>
  4691. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:System</flags>
  4692. <output>mono-cil-strip.exe</output>
  4693. <built_sources></built_sources>
  4694. <library_output>./../../class/lib/net_4_x/mono-cil-strip.exe</library_output>
  4695. <fx_version>4.5</fx_version>
  4696. <profile>net_4_x</profile>
  4697. <resources></resources>
  4698. <response>mono-cil-strip.exe.sources</response>
  4699. </project>
  4700. <project dir="tools/macpack" library="macpack-net_4_x">
  4701. <boot></boot>
  4702. <flags>/codepage:65001 /resource:LOADER /resource:PLIST -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig</flags>
  4703. <output>macpack.exe</output>
  4704. <built_sources></built_sources>
  4705. <library_output>./../../class/lib/net_4_x/macpack.exe</library_output>
  4706. <fx_version>4.5</fx_version>
  4707. <profile>net_4_x</profile>
  4708. <resources></resources>
  4709. <response>macpack.exe.sources</response>
  4710. </project>
  4711. <project dir="tools/dtd2rng" library="dtd2rng-net_4_x">
  4712. <boot></boot>
  4713. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:System.Xml -r:Commons.Xml.Relaxng</flags>
  4714. <output>dtd2rng.exe</output>
  4715. <built_sources></built_sources>
  4716. <library_output>./../../class/lib/net_4_x/dtd2rng.exe</library_output>
  4717. <fx_version>4.5</fx_version>
  4718. <profile>net_4_x</profile>
  4719. <resources></resources>
  4720. <response>dtd2rng.exe.sources</response>
  4721. </project>
  4722. <project dir="tools/dtd2xsd" library="dtd2xsd-net_4_x">
  4723. <boot></boot>
  4724. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:System.Xml</flags>
  4725. <output>dtd2xsd.exe</output>
  4726. <built_sources></built_sources>
  4727. <library_output>./../../class/lib/net_4_x/dtd2xsd.exe</library_output>
  4728. <fx_version>4.5</fx_version>
  4729. <profile>net_4_x</profile>
  4730. <resources></resources>
  4731. <response>dtd2xsd.exe.sources</response>
  4732. </project>
  4733. <project dir="tools/mdoc" library="mdoc-net_4_x">
  4734. <boot></boot>
  4735. <flags>/codepage:65001 /resource:../../class/monodoc/Resources/mdoc-html-format.xsl,mdoc-html-format.xsl /resource:../../class/monodoc/Resources/mdoc-html-utils.xsl,mdoc-html-utils.xsl /resource:../../class/monodoc/Resources/mdoc-sections-css.xsl,mdoc-sections-css.xsl /resource:../../class/monodoc/Resources/mono-ecma-css.xsl,mono-ecma-css.xsl /resource:Resources/defaulttemplate.xsl,defaulttemplate.xsl /resource:Resources/monodoc-ecma.xsd,monodoc-ecma.xsd /resource:Resources/msitomsx.xsl,msitomsx.xsl /resource:Resources/overview.xsl,overview.xsl /resource:Resources/stylesheet.xsl,stylesheet.xsl -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:monodoc -r:System -r:System.Xml -r:System.Core -r:Mono.Cecil -r:ICSharpCode.SharpZipLib -r:System.Xml.Linq -r:System.Web</flags>
  4736. <output>mdoc.exe</output>
  4737. <built_sources></built_sources>
  4738. <library_output>./../../class/lib/net_4_x/mdoc.exe</library_output>
  4739. <fx_version>4.5</fx_version>
  4740. <profile>net_4_x</profile>
  4741. <resources></resources>
  4742. <response>mdoc.exe.sources</response>
  4743. </project>
  4744. <project dir="tools/mod" library="mod-net_4_x">
  4745. <boot></boot>
  4746. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:monodoc</flags>
  4747. <output>mod.exe</output>
  4748. <built_sources></built_sources>
  4749. <library_output>./../../class/lib/net_4_x/mod.exe</library_output>
  4750. <fx_version>4.5</fx_version>
  4751. <profile>net_4_x</profile>
  4752. <resources></resources>
  4753. <response>mod.exe.sources</response>
  4754. </project>
  4755. <project dir="tools/installvst" library="installvst-net_4_x">
  4756. <boot></boot>
  4757. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:System.Xml</flags>
  4758. <output>installvst.exe</output>
  4759. <built_sources></built_sources>
  4760. <library_output>./../../class/lib/net_4_x/installvst.exe</library_output>
  4761. <fx_version>4.5</fx_version>
  4762. <profile>net_4_x</profile>
  4763. <resources></resources>
  4764. <response>installvst.exe.sources</response>
  4765. </project>
  4766. <project dir="tools/lc" library="lc-net_4_x">
  4767. <boot></boot>
  4768. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:System -r:System.Core</flags>
  4769. <output>lc.exe</output>
  4770. <built_sources></built_sources>
  4771. <library_output>./../../class/lib/net_4_x/lc.exe</library_output>
  4772. <fx_version>4.5</fx_version>
  4773. <profile>net_4_x</profile>
  4774. <resources></resources>
  4775. <response>lc.exe.sources</response>
  4776. </project>
  4777. <project dir="tools/mono-configuration-crypto/lib" library="Mono.Configuration.Crypto-net_4_x">
  4778. <boot>false</boot>
  4779. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:./../../../class/lib/net_4_x/System.dll -r:./../../../class/lib/net_4_x/Mono.Security.dll -r:./../../../class/lib/net_4_x/System.Security.dll -r:./../../../class/lib/net_4_x/System.Configuration.dll -r:./../../../class/lib/net_4_x/System.Xml.dll</flags>
  4780. <output>Mono.Configuration.Crypto.dll</output>
  4781. <built_sources></built_sources>
  4782. <library_output>./../../../class/lib/net_4_x/Mono.Configuration.Crypto.dll</library_output>
  4783. <fx_version>4.5</fx_version>
  4784. <profile>net_4_x</profile>
  4785. <resources></resources>
  4786. <response>Mono.Configuration.Crypto.dll.sources</response>
  4787. </project>
  4788. <project dir="tools/mono-configuration-crypto/cli" library="mono-configuration-crypto-net_4_x">
  4789. <boot></boot>
  4790. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:Mono.Security -r:System.Security -r:System.Configuration -r:System -r:Mono.Configuration.Crypto</flags>
  4791. <output>mono-configuration-crypto.exe</output>
  4792. <built_sources></built_sources>
  4793. <library_output>./../../../class/lib/net_4_x/mono-configuration-crypto.exe</library_output>
  4794. <fx_version>4.5</fx_version>
  4795. <profile>net_4_x</profile>
  4796. <resources></resources>
  4797. <response>mono-configuration-crypto.exe.sources</response>
  4798. </project>
  4799. <project dir="tools/ccrewrite" library="ccrewrite-net_4_x">
  4800. <boot></boot>
  4801. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:Mono.CodeContracts -r:System -r:System.Core</flags>
  4802. <output>ccrewrite.exe</output>
  4803. <built_sources></built_sources>
  4804. <library_output>./../../class/lib/net_4_x/ccrewrite.exe</library_output>
  4805. <fx_version>4.5</fx_version>
  4806. <profile>net_4_x</profile>
  4807. <resources></resources>
  4808. <response>ccrewrite.exe.sources</response>
  4809. </project>
  4810. <project dir="tools/cccheck" library="cccheck-net_4_x">
  4811. <boot></boot>
  4812. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:Mono.CodeContracts -r:System</flags>
  4813. <output>cccheck.exe</output>
  4814. <built_sources></built_sources>
  4815. <library_output>./../../class/lib/net_4_x/cccheck.exe</library_output>
  4816. <fx_version>4.5</fx_version>
  4817. <profile>net_4_x</profile>
  4818. <resources></resources>
  4819. <response>cccheck.exe.sources</response>
  4820. </project>
  4821. <project dir="tools/mdbrebase" library="mdbrebase-net_4_x">
  4822. <boot></boot>
  4823. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:System -r:Mono.CompilerServices.SymbolWriter</flags>
  4824. <output>mdbrebase.exe</output>
  4825. <built_sources></built_sources>
  4826. <library_output>./../../class/lib/net_4_x/mdbrebase.exe</library_output>
  4827. <fx_version>4.5</fx_version>
  4828. <profile>net_4_x</profile>
  4829. <resources></resources>
  4830. <response>mdbrebase.exe.sources</response>
  4831. </project>
  4832. <project dir="tools/ikdasm" library="ikdasm-net_4_x">
  4833. <boot></boot>
  4834. <flags>/codepage:65001 -d:NO_SYMBOL_WRITER -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:System -r:System.Core -r:System.Security</flags>
  4835. <output>ikdasm.exe</output>
  4836. <built_sources></built_sources>
  4837. <library_output>./../../class/lib/net_4_x/ikdasm.exe</library_output>
  4838. <fx_version>4.5</fx_version>
  4839. <profile>net_4_x</profile>
  4840. <resources></resources>
  4841. <response>ikdasm.exe.sources</response>
  4842. </project>
  4843. <project dir="tools/mono-symbolicate" library="mono-symbolicate-net_4_x">
  4844. <boot></boot>
  4845. <flags>/codepage:65001 /D:NO_AUTHENTICODE -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:Mono.Cecil -r:Mono.Cecil.Mdb -r:System.Xml -r:System.Core -r:System</flags>
  4846. <output>mono-symbolicate.exe</output>
  4847. <built_sources></built_sources>
  4848. <library_output>./../../class/lib/net_4_x/mono-symbolicate.exe</library_output>
  4849. <fx_version>4.5</fx_version>
  4850. <profile>net_4_x</profile>
  4851. <resources></resources>
  4852. <response>mono-symbolicate.exe.sources</response>
  4853. </project>
  4854. <project dir="tools/linker-analyzer" library="linkeranalyzer-net_4_x">
  4855. <boot></boot>
  4856. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -optimize /noconfig -r:System -r:System.Xml</flags>
  4857. <output>linkeranalyzer.exe</output>
  4858. <built_sources></built_sources>
  4859. <library_output>./../../class/lib/net_4_x/linkeranalyzer.exe</library_output>
  4860. <fx_version>4.5</fx_version>
  4861. <profile>net_4_x</profile>
  4862. <resources></resources>
  4863. <response>linkeranalyzer.exe.sources</response>
  4864. </project>
  4865. <project dir="class/Microsoft.Build.Framework" library="Microsoft.Build.Framework-xbuild_12">
  4866. <boot>false</boot>
  4867. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -d:XBUILD_12 -optimize /noconfig -r:./../../class/lib/xbuild_12/../net_4_x/System.dll</flags>
  4868. <output>Microsoft.Build.Framework.dll</output>
  4869. <built_sources></built_sources>
  4870. <library_output>./../../class/lib/xbuild_12/Microsoft.Build.Framework.dll</library_output>
  4871. <fx_version>4.5</fx_version>
  4872. <profile>xbuild_12</profile>
  4873. <resources></resources>
  4874. <response>Microsoft.Build.Framework.dll.sources</response>
  4875. </project>
  4876. <project dir="class/Microsoft.Build.Framework" library="Microsoft.Build.Framework-tests-xbuild_12">
  4877. <boot>false</boot>
  4878. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -d:XBUILD_12 -optimize -r:./../../class/lib/xbuild_12/Microsoft.Build.Framework.dll</flags>
  4879. <output>xbuild_12_Microsoft.Build.Framework_test.dll</output>
  4880. <built_sources></built_sources>
  4881. <library_output>xbuild_12_Microsoft.Build.Framework_test.dll</library_output>
  4882. <fx_version>4.5</fx_version>
  4883. <profile>xbuild_12</profile>
  4884. <resources></resources>
  4885. <response>./../../build/deps/xbuild_12_Microsoft.Build.Framework_test.dll.response</response>
  4886. </project>
  4887. <project dir="class/Microsoft.Build.Utilities" library="Microsoft.Build.Utilities-xbuild_12">
  4888. <boot>false</boot>
  4889. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -d:XBUILD_12 -optimize /noconfig -r:./../../class/lib/xbuild_12/../net_4_x/System.dll -r:./../../class/lib/xbuild_12/../net_4_x/System.Core.dll -r:./../../class/lib/xbuild_12/../net_4_x/System.Xml.dll -r:./../../class/lib/xbuild_12/Microsoft.Build.Framework.dll</flags>
  4890. <output>Microsoft.Build.Utilities.v12.0.dll</output>
  4891. <built_sources></built_sources>
  4892. <library_output>./../../class/lib/xbuild_12/Microsoft.Build.Utilities.v12.0.dll</library_output>
  4893. <fx_version>4.5</fx_version>
  4894. <profile>xbuild_12</profile>
  4895. <resources></resources>
  4896. <response>Microsoft.Build.Utilities.dll.sources</response>
  4897. </project>
  4898. <project dir="class/Microsoft.Build.Utilities" library="Microsoft.Build.Utilities-tests-xbuild_12">
  4899. <boot>false</boot>
  4900. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -d:XBUILD_12 -optimize -r:./../../class/lib/xbuild_12/Microsoft.Build.Utilities.v12.0.dll -resource:Test/Microsoft.Build.Utilities/Strings.resources</flags>
  4901. <output>xbuild_12_Microsoft.Build.Utilities_test.dll</output>
  4902. <built_sources></built_sources>
  4903. <library_output>xbuild_12_Microsoft.Build.Utilities_test.dll</library_output>
  4904. <fx_version>4.5</fx_version>
  4905. <profile>xbuild_12</profile>
  4906. <resources></resources>
  4907. <response>./../../build/deps/xbuild_12_Microsoft.Build.Utilities_test.dll.response</response>
  4908. </project>
  4909. <project dir="class/Microsoft.Build.Engine" library="Microsoft.Build.Engine-xbuild_12">
  4910. <boot>false</boot>
  4911. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -d:XBUILD_12 -optimize /noconfig -r:./../../class/lib/xbuild_12/../net_4_x/System.dll -r:./../../class/lib/xbuild_12/../net_4_x/System.Core.dll -r:./../../class/lib/xbuild_12/../net_4_x/System.Xml.dll -r:./../../class/lib/xbuild_12/Microsoft.Build.Framework.dll -r:./../../class/lib/xbuild_12/Microsoft.Build.Utilities.v12.0.dll</flags>
  4912. <output>Microsoft.Build.Engine.dll</output>
  4913. <built_sources></built_sources>
  4914. <library_output>./../../class/lib/xbuild_12/Microsoft.Build.Engine.dll</library_output>
  4915. <fx_version>4.5</fx_version>
  4916. <profile>xbuild_12</profile>
  4917. <resources></resources>
  4918. <response>Microsoft.Build.Engine.dll.sources</response>
  4919. </project>
  4920. <project dir="class/Microsoft.Build.Engine" library="Microsoft.Build.Engine-tests-xbuild_12">
  4921. <boot>false</boot>
  4922. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -d:XBUILD_12 -optimize -r:./../../class/lib/xbuild_12/Microsoft.Build.Engine.dll</flags>
  4923. <output>xbuild_12_Microsoft.Build.Engine_test.dll</output>
  4924. <built_sources></built_sources>
  4925. <library_output>xbuild_12_Microsoft.Build.Engine_test.dll</library_output>
  4926. <fx_version>4.5</fx_version>
  4927. <profile>xbuild_12</profile>
  4928. <resources></resources>
  4929. <response>./../../build/deps/xbuild_12_Microsoft.Build.Engine_test.dll.response</response>
  4930. </project>
  4931. <project dir="class/Mono.XBuild.Tasks" library="Mono.XBuild.Tasks-xbuild_12">
  4932. <boot>false</boot>
  4933. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -d:XBUILD_12 -optimize /noconfig -r:./../../class/lib/xbuild_12/../net_4_x/System.dll -r:./../../class/lib/xbuild_12/../net_4_x/System.Xml.dll</flags>
  4934. <output>Mono.XBuild.Tasks.dll</output>
  4935. <built_sources></built_sources>
  4936. <library_output>./../../class/lib/xbuild_12/Mono.XBuild.Tasks.dll</library_output>
  4937. <fx_version>4.5</fx_version>
  4938. <profile>xbuild_12</profile>
  4939. <resources></resources>
  4940. <response>Mono.XBuild.Tasks.dll.sources</response>
  4941. </project>
  4942. <project dir="class/Mono.XBuild.Tasks" library="Mono.XBuild.Tasks-tests-xbuild_12">
  4943. <boot>false</boot>
  4944. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -d:XBUILD_12 -optimize -r:./../../class/lib/xbuild_12/Mono.XBuild.Tasks.dll</flags>
  4945. <output>xbuild_12_Mono.XBuild.Tasks_test.dll</output>
  4946. <built_sources></built_sources>
  4947. <library_output>xbuild_12_Mono.XBuild.Tasks_test.dll</library_output>
  4948. <fx_version>4.5</fx_version>
  4949. <profile>xbuild_12</profile>
  4950. <resources></resources>
  4951. <response>./../../build/deps/xbuild_12_Mono.XBuild.Tasks_test.dll.response</response>
  4952. </project>
  4953. <project dir="class/Microsoft.Build.Tasks" library="Microsoft.Build.Tasks-xbuild_12">
  4954. <boot>false</boot>
  4955. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -d:XBUILD_12 -optimize /noconfig -r:./../../class/lib/xbuild_12/../net_4_x/System.dll -r:./../../class/lib/xbuild_12/../net_4_x/System.Core.dll -r:./../../class/lib/xbuild_12/../net_4_x/System.Xml.dll -r:./../../class/lib/xbuild_12/../net_4_x/System.Windows.Forms.dll -r:./../../class/lib/xbuild_12/Microsoft.Build.Utilities.v12.0.dll -r:./../../class/lib/xbuild_12/Microsoft.Build.Framework.dll -r:./../../class/lib/xbuild_12/Microsoft.Build.Engine.dll -r:./../../class/lib/xbuild_12/Mono.XBuild.Tasks.dll</flags>
  4956. <output>Microsoft.Build.Tasks.v12.0.dll</output>
  4957. <built_sources></built_sources>
  4958. <library_output>./../../class/lib/xbuild_12/Microsoft.Build.Tasks.v12.0.dll</library_output>
  4959. <fx_version>4.5</fx_version>
  4960. <profile>xbuild_12</profile>
  4961. <resources></resources>
  4962. <response>Microsoft.Build.Tasks.dll.sources</response>
  4963. </project>
  4964. <project dir="class/Microsoft.Build.Tasks" library="Microsoft.Build.Tasks-tests-xbuild_12">
  4965. <boot>false</boot>
  4966. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -d:XBUILD_12 -optimize -r:./../../class/lib/xbuild_12/Microsoft.Build.Tasks.v12.0.dll</flags>
  4967. <output>xbuild_12_Microsoft.Build.Tasks_test.dll</output>
  4968. <built_sources></built_sources>
  4969. <library_output>xbuild_12_Microsoft.Build.Tasks_test.dll</library_output>
  4970. <fx_version>4.5</fx_version>
  4971. <profile>xbuild_12</profile>
  4972. <resources></resources>
  4973. <response>./../../build/deps/xbuild_12_Microsoft.Build.Tasks_test.dll.response</response>
  4974. </project>
  4975. <project dir="class/Microsoft.Build" library="Microsoft.Build-xbuild_12">
  4976. <boot>false</boot>
  4977. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -d:XBUILD_12 -optimize /noconfig /d:MICROSOFT_BUILD_DLL -r:./../../class/lib/xbuild_12/../net_4_x/System.dll -r:./../../class/lib/xbuild_12/../net_4_x/System.Core.dll -r:./../../class/lib/xbuild_12/../net_4_x/System.Xml.dll -r:./../../class/lib/xbuild_12/Microsoft.Build.Engine.dll -r:./../../class/lib/xbuild_12/Microsoft.Build.Framework.dll</flags>
  4978. <output>Microsoft.Build.dll</output>
  4979. <built_sources>Microsoft.Build.Internal/ExpressionParser.cs</built_sources>
  4980. <library_output>./../../class/lib/xbuild_12/Microsoft.Build.dll</library_output>
  4981. <fx_version>4.5</fx_version>
  4982. <profile>xbuild_12</profile>
  4983. <resources></resources>
  4984. <response>Microsoft.Build.dll.sources</response>
  4985. </project>
  4986. <project dir="class/Microsoft.Build" library="Microsoft.Build-tests-xbuild_12">
  4987. <boot>false</boot>
  4988. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -d:XBUILD_12 -optimize -r:./../../class/lib/xbuild_12/Microsoft.Build.dll /d:MICROSOFT_BUILD_DLL -r:./../../class/lib/xbuild_12/../net_4_x/System.dll -r:./../../class/lib/xbuild_12/../net_4_x/System.Core.dll -r:./../../class/lib/xbuild_12/../net_4_x/System.Xml.dll -r:./../../class/lib/xbuild_12/Microsoft.Build.Engine.dll -r:./../../class/lib/xbuild_12/Microsoft.Build.Framework.dll</flags>
  4989. <output>xbuild_12_Microsoft.Build_test.dll</output>
  4990. <built_sources>Microsoft.Build.Internal/ExpressionParser.cs</built_sources>
  4991. <library_output>xbuild_12_Microsoft.Build_test.dll</library_output>
  4992. <fx_version>4.5</fx_version>
  4993. <profile>xbuild_12</profile>
  4994. <resources></resources>
  4995. <response>./../../build/deps/xbuild_12_Microsoft.Build_test.dll.response</response>
  4996. </project>
  4997. <project dir="tools/xbuild" library="xbuild-xbuild_12">
  4998. <boot></boot>
  4999. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -d:XBUILD_12 -optimize /noconfig -r:Microsoft.Build.Framework -r:Microsoft.Build.Utilities.v12.0 -r:Microsoft.Build.Engine -r:Microsoft.Build.Tasks.v12.0 -r:../net_4_x/System -r:../net_4_x/System.Core</flags>
  5000. <output>xbuild.exe</output>
  5001. <built_sources></built_sources>
  5002. <library_output>./../../class/lib/xbuild_12/xbuild.exe</library_output>
  5003. <fx_version>4.5</fx_version>
  5004. <profile>xbuild_12</profile>
  5005. <resources></resources>
  5006. <response>xbuild.exe.sources</response>
  5007. </project>
  5008. <project dir="class/Microsoft.Build.Framework" library="Microsoft.Build.Framework-xbuild_14">
  5009. <boot>false</boot>
  5010. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -d:XBUILD_12 -d:XBUILD_14 -optimize /noconfig -r:./../../class/lib/xbuild_14/../net_4_x/System.dll</flags>
  5011. <output>Microsoft.Build.Framework.dll</output>
  5012. <built_sources></built_sources>
  5013. <library_output>./../../class/lib/xbuild_14/Microsoft.Build.Framework.dll</library_output>
  5014. <fx_version>4.5</fx_version>
  5015. <profile>xbuild_14</profile>
  5016. <resources></resources>
  5017. <response>Microsoft.Build.Framework.dll.sources</response>
  5018. </project>
  5019. <project dir="class/Microsoft.Build.Framework" library="Microsoft.Build.Framework-tests-xbuild_14">
  5020. <boot>false</boot>
  5021. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -d:XBUILD_12 -d:XBUILD_14 -optimize -r:./../../class/lib/xbuild_14/Microsoft.Build.Framework.dll</flags>
  5022. <output>xbuild_14_Microsoft.Build.Framework_test.dll</output>
  5023. <built_sources></built_sources>
  5024. <library_output>xbuild_14_Microsoft.Build.Framework_test.dll</library_output>
  5025. <fx_version>4.5</fx_version>
  5026. <profile>xbuild_14</profile>
  5027. <resources></resources>
  5028. <response>./../../build/deps/xbuild_14_Microsoft.Build.Framework_test.dll.response</response>
  5029. </project>
  5030. <project dir="class/Microsoft.Build.Utilities" library="Microsoft.Build.Utilities-xbuild_14">
  5031. <boot>false</boot>
  5032. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -d:XBUILD_12 -d:XBUILD_14 -optimize /noconfig -r:./../../class/lib/xbuild_14/../net_4_x/System.dll -r:./../../class/lib/xbuild_14/../net_4_x/System.Core.dll -r:./../../class/lib/xbuild_14/../net_4_x/System.Xml.dll -r:./../../class/lib/xbuild_14/Microsoft.Build.Framework.dll</flags>
  5033. <output>Microsoft.Build.Utilities.Core.dll</output>
  5034. <built_sources></built_sources>
  5035. <library_output>./../../class/lib/xbuild_14/Microsoft.Build.Utilities.Core.dll</library_output>
  5036. <fx_version>4.5</fx_version>
  5037. <profile>xbuild_14</profile>
  5038. <resources></resources>
  5039. <response>Microsoft.Build.Utilities.dll.sources</response>
  5040. </project>
  5041. <project dir="class/Microsoft.Build.Utilities" library="Microsoft.Build.Utilities-tests-xbuild_14">
  5042. <boot>false</boot>
  5043. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -d:XBUILD_12 -d:XBUILD_14 -optimize -r:./../../class/lib/xbuild_14/Microsoft.Build.Utilities.Core.dll -resource:Test/Microsoft.Build.Utilities/Strings.resources</flags>
  5044. <output>xbuild_14_Microsoft.Build.Utilities_test.dll</output>
  5045. <built_sources></built_sources>
  5046. <library_output>xbuild_14_Microsoft.Build.Utilities_test.dll</library_output>
  5047. <fx_version>4.5</fx_version>
  5048. <profile>xbuild_14</profile>
  5049. <resources></resources>
  5050. <response>./../../build/deps/xbuild_14_Microsoft.Build.Utilities_test.dll.response</response>
  5051. </project>
  5052. <project dir="class/Microsoft.Build.Engine" library="Microsoft.Build.Engine-xbuild_14">
  5053. <boot>false</boot>
  5054. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -d:XBUILD_12 -d:XBUILD_14 -optimize /noconfig -r:./../../class/lib/xbuild_14/../net_4_x/System.dll -r:./../../class/lib/xbuild_14/../net_4_x/System.Core.dll -r:./../../class/lib/xbuild_14/../net_4_x/System.Xml.dll -r:./../../class/lib/xbuild_14/Microsoft.Build.Framework.dll -r:./../../class/lib/xbuild_14/Microsoft.Build.Utilities.Core.dll</flags>
  5055. <output>Microsoft.Build.Engine.dll</output>
  5056. <built_sources></built_sources>
  5057. <library_output>./../../class/lib/xbuild_14/Microsoft.Build.Engine.dll</library_output>
  5058. <fx_version>4.5</fx_version>
  5059. <profile>xbuild_14</profile>
  5060. <resources></resources>
  5061. <response>Microsoft.Build.Engine.dll.sources</response>
  5062. </project>
  5063. <project dir="class/Microsoft.Build.Engine" library="Microsoft.Build.Engine-tests-xbuild_14">
  5064. <boot>false</boot>
  5065. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -d:XBUILD_12 -d:XBUILD_14 -optimize -r:./../../class/lib/xbuild_14/Microsoft.Build.Engine.dll</flags>
  5066. <output>xbuild_14_Microsoft.Build.Engine_test.dll</output>
  5067. <built_sources></built_sources>
  5068. <library_output>xbuild_14_Microsoft.Build.Engine_test.dll</library_output>
  5069. <fx_version>4.5</fx_version>
  5070. <profile>xbuild_14</profile>
  5071. <resources></resources>
  5072. <response>./../../build/deps/xbuild_14_Microsoft.Build.Engine_test.dll.response</response>
  5073. </project>
  5074. <project dir="class/Mono.XBuild.Tasks" library="Mono.XBuild.Tasks-xbuild_14">
  5075. <boot>false</boot>
  5076. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -d:XBUILD_12 -d:XBUILD_14 -optimize /noconfig -r:./../../class/lib/xbuild_14/../net_4_x/System.dll -r:./../../class/lib/xbuild_14/../net_4_x/System.Xml.dll</flags>
  5077. <output>Mono.XBuild.Tasks.dll</output>
  5078. <built_sources></built_sources>
  5079. <library_output>./../../class/lib/xbuild_14/Mono.XBuild.Tasks.dll</library_output>
  5080. <fx_version>4.5</fx_version>
  5081. <profile>xbuild_14</profile>
  5082. <resources></resources>
  5083. <response>Mono.XBuild.Tasks.dll.sources</response>
  5084. </project>
  5085. <project dir="class/Mono.XBuild.Tasks" library="Mono.XBuild.Tasks-tests-xbuild_14">
  5086. <boot>false</boot>
  5087. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -d:XBUILD_12 -d:XBUILD_14 -optimize -r:./../../class/lib/xbuild_14/Mono.XBuild.Tasks.dll</flags>
  5088. <output>xbuild_14_Mono.XBuild.Tasks_test.dll</output>
  5089. <built_sources></built_sources>
  5090. <library_output>xbuild_14_Mono.XBuild.Tasks_test.dll</library_output>
  5091. <fx_version>4.5</fx_version>
  5092. <profile>xbuild_14</profile>
  5093. <resources></resources>
  5094. <response>./../../build/deps/xbuild_14_Mono.XBuild.Tasks_test.dll.response</response>
  5095. </project>
  5096. <project dir="class/Microsoft.Build.Tasks" library="Microsoft.Build.Tasks-xbuild_14">
  5097. <boot>false</boot>
  5098. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -d:XBUILD_12 -d:XBUILD_14 -optimize /noconfig -r:./../../class/lib/xbuild_14/../net_4_x/System.dll -r:./../../class/lib/xbuild_14/../net_4_x/System.Core.dll -r:./../../class/lib/xbuild_14/../net_4_x/System.Xml.dll -r:./../../class/lib/xbuild_14/../net_4_x/System.Windows.Forms.dll -r:./../../class/lib/xbuild_14/Microsoft.Build.Utilities.Core.dll -r:./../../class/lib/xbuild_14/Microsoft.Build.Framework.dll -r:./../../class/lib/xbuild_14/Microsoft.Build.Engine.dll -r:./../../class/lib/xbuild_14/Mono.XBuild.Tasks.dll</flags>
  5099. <output>Microsoft.Build.Tasks.Core.dll</output>
  5100. <built_sources></built_sources>
  5101. <library_output>./../../class/lib/xbuild_14/Microsoft.Build.Tasks.Core.dll</library_output>
  5102. <fx_version>4.5</fx_version>
  5103. <profile>xbuild_14</profile>
  5104. <resources></resources>
  5105. <response>Microsoft.Build.Tasks.dll.sources</response>
  5106. </project>
  5107. <project dir="class/Microsoft.Build.Tasks" library="Microsoft.Build.Tasks-tests-xbuild_14">
  5108. <boot>false</boot>
  5109. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -d:XBUILD_12 -d:XBUILD_14 -optimize -r:./../../class/lib/xbuild_14/Microsoft.Build.Tasks.Core.dll</flags>
  5110. <output>xbuild_14_Microsoft.Build.Tasks_test.dll</output>
  5111. <built_sources></built_sources>
  5112. <library_output>xbuild_14_Microsoft.Build.Tasks_test.dll</library_output>
  5113. <fx_version>4.5</fx_version>
  5114. <profile>xbuild_14</profile>
  5115. <resources></resources>
  5116. <response>./../../build/deps/xbuild_14_Microsoft.Build.Tasks_test.dll.response</response>
  5117. </project>
  5118. <project dir="class/Microsoft.Build" library="Microsoft.Build-xbuild_14">
  5119. <boot>false</boot>
  5120. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -d:XBUILD_12 -d:XBUILD_14 -optimize /noconfig /d:MICROSOFT_BUILD_DLL -r:./../../class/lib/xbuild_14/../net_4_x/System.dll -r:./../../class/lib/xbuild_14/../net_4_x/System.Core.dll -r:./../../class/lib/xbuild_14/../net_4_x/System.Xml.dll -r:./../../class/lib/xbuild_14/Microsoft.Build.Engine.dll -r:./../../class/lib/xbuild_14/Microsoft.Build.Framework.dll</flags>
  5121. <output>Microsoft.Build.dll</output>
  5122. <built_sources>Microsoft.Build.Internal/ExpressionParser.cs</built_sources>
  5123. <library_output>./../../class/lib/xbuild_14/Microsoft.Build.dll</library_output>
  5124. <fx_version>4.5</fx_version>
  5125. <profile>xbuild_14</profile>
  5126. <resources></resources>
  5127. <response>Microsoft.Build.dll.sources</response>
  5128. </project>
  5129. <project dir="class/Microsoft.Build" library="Microsoft.Build-tests-xbuild_14">
  5130. <boot>false</boot>
  5131. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -d:XBUILD_12 -d:XBUILD_14 -optimize -r:./../../class/lib/xbuild_14/Microsoft.Build.dll /d:MICROSOFT_BUILD_DLL -r:./../../class/lib/xbuild_14/../net_4_x/System.dll -r:./../../class/lib/xbuild_14/../net_4_x/System.Core.dll -r:./../../class/lib/xbuild_14/../net_4_x/System.Xml.dll -r:./../../class/lib/xbuild_14/Microsoft.Build.Engine.dll -r:./../../class/lib/xbuild_14/Microsoft.Build.Framework.dll</flags>
  5132. <output>xbuild_14_Microsoft.Build_test.dll</output>
  5133. <built_sources>Microsoft.Build.Internal/ExpressionParser.cs</built_sources>
  5134. <library_output>xbuild_14_Microsoft.Build_test.dll</library_output>
  5135. <fx_version>4.5</fx_version>
  5136. <profile>xbuild_14</profile>
  5137. <resources></resources>
  5138. <response>./../../build/deps/xbuild_14_Microsoft.Build_test.dll.response</response>
  5139. </project>
  5140. <project dir="tools/xbuild" library="xbuild-xbuild_14">
  5141. <boot></boot>
  5142. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -r:./../../class/lib/net_4_x/mscorlib.dll -debug -d:XBUILD_12 -d:XBUILD_14 -optimize /noconfig -r:Microsoft.Build.Framework -r:Microsoft.Build.Utilities.Core -r:Microsoft.Build.Engine -r:Microsoft.Build.Tasks.Core -r:../net_4_x/System -r:../net_4_x/System.Core</flags>
  5143. <output>xbuild.exe</output>
  5144. <built_sources></built_sources>
  5145. <library_output>./../../class/lib/xbuild_14/xbuild.exe</library_output>
  5146. <fx_version>4.5</fx_version>
  5147. <profile>xbuild_14</profile>
  5148. <resources></resources>
  5149. <response>xbuild.exe.sources</response>
  5150. </project>
  5151. </root>