order.xml 400 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <root>
  3. <project dir="mcs" library="basic-basic">
  4. <boot></boot>
  5. <flags>/codepage:65001 -d:STATIC,NO_SYMBOL_WRITER,NO_AUTHENTICODE -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 -r:System -r:System.Core -r:System.Xml</flags>
  6. <output>basic.exe</output>
  7. <built_sources></built_sources>
  8. <library_output>./../class/lib/basic/basic.exe</library_output>
  9. <fx_version>4.0</fx_version>
  10. <profile>basic</profile>
  11. <response>mcs.exe.sources</response>
  12. </project>
  13. <project dir="class/corlib" library="corlib-basic">
  14. <boot>true</boot>
  15. <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_REMOTING,MONO_COM,FEATURE_COMINTEROP,FEATURE_ROLE_BASED_SECURITY -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_REMOTING,MONO_COM,FEATURE_COMINTEROP,FEATURE_ROLE_BASED_SECURITY -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>
  16. <output>mscorlib.dll</output>
  17. <built_sources></built_sources>
  18. <library_output>./../../class/lib/basic/mscorlib.dll</library_output>
  19. <fx_version>4.0</fx_version>
  20. <profile>basic</profile>
  21. <response>corlib.dll.sources</response>
  22. </project>
  23. <project dir="class/System" library="System-basic">
  24. <boot>true</boot>
  25. <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 -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 -r:PrebuiltSystem=./../../class/lib/basic/secxml/System.dll -r:System.Configuration.dll -d:CONFIGURATION_DEP -r:System.Xml -r:MonoSecurity=Mono.Security</flags>
  26. <output>System.dll</output>
  27. <built_sources></built_sources>
  28. <library_output>./../../class/lib/basic/System.dll</library_output>
  29. <fx_version>4.0</fx_version>
  30. <profile>basic</profile>
  31. <response>./../../build/deps/basic_System.dll.sources</response>
  32. </project>
  33. <project dir="class/System.XML" library="System.Xml-basic">
  34. <boot>true</boot>
  35. <flags>/codepage:65001 -lib:./../../class/lib/basic/bare -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 -r:mscorlib.dll -nowarn:219,414,649,1717 -unsafe -d:ASYNC -r:System.Configuration.dll -d:CONFIGURATION_DEP -r:System</flags>
  36. <output>System.Xml.dll</output>
  37. <built_sources></built_sources>
  38. <library_output>./../../class/lib/basic/System.Xml.dll</library_output>
  39. <fx_version>4.0</fx_version>
  40. <profile>basic</profile>
  41. <response>System.Xml.dll.sources</response>
  42. </project>
  43. <project dir="class/System" library="System-basic">
  44. <boot>true</boot>
  45. <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 -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 -r:PrebuiltSystem=./../../class/lib/basic/secxml/System.dll -r:System.Configuration.dll -d:CONFIGURATION_DEP -r:System.Xml -r:MonoSecurity=Mono.Security</flags>
  46. <output>System.dll</output>
  47. <built_sources></built_sources>
  48. <library_output>./../../class/lib/basic/System.dll</library_output>
  49. <fx_version>4.0</fx_version>
  50. <profile>basic</profile>
  51. <response>./../../build/deps/basic_System.dll.sources</response>
  52. </project>
  53. <project dir="class/Mono.Security" library="Mono.Security-basic">
  54. <boot>true</boot>
  55. <flags>/codepage:65001 -lib:./../../class/lib/basic/bare -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 -r:System</flags>
  56. <output>Mono.Security.dll</output>
  57. <built_sources></built_sources>
  58. <library_output>./../../class/lib/basic/Mono.Security.dll</library_output>
  59. <fx_version>4.0</fx_version>
  60. <profile>basic</profile>
  61. <response>Mono.Security.dll.sources</response>
  62. </project>
  63. <project dir="class/System.Core" library="System.Core-basic">
  64. <boot>true</boot>
  65. <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:System</flags>
  66. <output>System.Core.dll</output>
  67. <built_sources></built_sources>
  68. <library_output>./../../class/lib/basic/System.Core.dll</library_output>
  69. <fx_version>4.0</fx_version>
  70. <profile>basic</profile>
  71. <response>./../../build/deps/basic_System.Core.dll.sources</response>
  72. </project>
  73. <project dir="class/corlib" library="corlib-build">
  74. <boot>true</boot>
  75. <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_REMOTING,MONO_COM,FEATURE_COMINTEROP,FEATURE_ROLE_BASED_SECURITY -d:NET_4_0 -d:NET_4_5 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/build -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_REMOTING,MONO_COM,FEATURE_COMINTEROP,FEATURE_ROLE_BASED_SECURITY -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>
  76. <output>mscorlib.dll</output>
  77. <built_sources></built_sources>
  78. <library_output>./../../class/lib/build/mscorlib.dll</library_output>
  79. <fx_version>4.5</fx_version>
  80. <profile>build</profile>
  81. <response>corlib.dll.sources</response>
  82. </project>
  83. <project dir="class/System" library="System-build">
  84. <boot>false</boot>
  85. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/build -r:mscorlib.dll -optimize /noconfig -nowarn:618 -d:CONFIGURATION_2_0 -d:FEATURE_PAL,SYSTEM_NAMESPACE,MONO,PLATFORM_UNIX -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 -r:PrebuiltSystem=./../../class/lib/build/secxml/System.dll -r:System.Configuration.dll -d:CONFIGURATION_DEP -r:System.Xml -r:MonoSecurity=Mono.Security</flags>
  86. <output>System.dll</output>
  87. <built_sources></built_sources>
  88. <library_output>./../../class/lib/build/System.dll</library_output>
  89. <fx_version>4.5</fx_version>
  90. <profile>build</profile>
  91. <response>System.dll.sources</response>
  92. </project>
  93. <project dir="class/System" library="System-bare-build">
  94. <boot>false</boot>
  95. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/build -r:mscorlib.dll -optimize /noconfig -nowarn:618 -d:CONFIGURATION_2_0 -d:FEATURE_PAL,SYSTEM_NAMESPACE,MONO,PLATFORM_UNIX -unsafe -resource:resources/Asterisk.wav -resource:resources/Beep.wav -resource:resources/Exclamation.wav -resource:resources/Hand.wav -resource:resources/Question.wav</flags>
  96. <output>System.dll</output>
  97. <built_sources></built_sources>
  98. <library_output>./../../class/lib/build/bare/System.dll</library_output>
  99. <fx_version>4.5</fx_version>
  100. <profile>build</profile>
  101. <response>System.dll.sources</response>
  102. </project>
  103. <project dir="class/System" library="System-secxml-build">
  104. <boot>false</boot>
  105. <flags>/codepage:65001 -lib:./../../class/lib/build/bare -d:NET_4_0 -d:NET_4_5 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/build -r:mscorlib.dll -optimize /noconfig -nowarn:618 -d:CONFIGURATION_2_0 -d:FEATURE_PAL,SYSTEM_NAMESPACE,MONO,PLATFORM_UNIX -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 -r:PrebuiltSystem=./../../class/lib/build/bare/System.dll -r:System.Xml -r:MonoSecurity=Mono.Security</flags>
  106. <output>System.dll</output>
  107. <built_sources></built_sources>
  108. <library_output>./../../class/lib/build/secxml/System.dll</library_output>
  109. <fx_version>4.5</fx_version>
  110. <profile>build</profile>
  111. <response>System.dll.sources</response>
  112. </project>
  113. <project dir="class/System.XML" library="System.Xml-build">
  114. <boot>false</boot>
  115. <flags>/codepage:65001 -lib:./../../class/lib/build/bare -d:NET_4_0 -d:NET_4_5 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/build -r:mscorlib.dll -optimize /noconfig -r:mscorlib.dll -nowarn:219,414,649,1717 -unsafe -d:ASYNC -r:System.Configuration.dll -d:CONFIGURATION_DEP -r:System</flags>
  116. <output>System.Xml.dll</output>
  117. <built_sources></built_sources>
  118. <library_output>./../../class/lib/build/System.Xml.dll</library_output>
  119. <fx_version>4.5</fx_version>
  120. <profile>build</profile>
  121. <response>System.Xml.dll.sources</response>
  122. </project>
  123. <project dir="class/System.XML" library="System.Xml-bare-build">
  124. <boot>false</boot>
  125. <flags>/codepage:65001 -lib:./../../class/lib/build/bare -d:NET_4_0 -d:NET_4_5 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/build -r:mscorlib.dll -optimize /noconfig -r:mscorlib.dll -nowarn:219,414,649,1717 -unsafe -d:ASYNC -r:System</flags>
  126. <output>System.Xml.dll</output>
  127. <built_sources></built_sources>
  128. <library_output>./../../class/lib/build/bare/System.Xml.dll</library_output>
  129. <fx_version>4.5</fx_version>
  130. <profile>build</profile>
  131. <response>System.Xml.dll.sources</response>
  132. </project>
  133. <project dir="class/System" library="System-build">
  134. <boot>false</boot>
  135. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/build -r:mscorlib.dll -optimize /noconfig -nowarn:618 -d:CONFIGURATION_2_0 -d:FEATURE_PAL,SYSTEM_NAMESPACE,MONO,PLATFORM_UNIX -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 -r:PrebuiltSystem=./../../class/lib/build/secxml/System.dll -r:System.Configuration.dll -d:CONFIGURATION_DEP -r:System.Xml -r:MonoSecurity=Mono.Security</flags>
  136. <output>System.dll</output>
  137. <built_sources></built_sources>
  138. <library_output>./../../class/lib/build/System.dll</library_output>
  139. <fx_version>4.5</fx_version>
  140. <profile>build</profile>
  141. <response>System.dll.sources</response>
  142. </project>
  143. <project dir="class/System" library="System-bare-build">
  144. <boot>false</boot>
  145. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/build -r:mscorlib.dll -optimize /noconfig -nowarn:618 -d:CONFIGURATION_2_0 -d:FEATURE_PAL,SYSTEM_NAMESPACE,MONO,PLATFORM_UNIX -unsafe -resource:resources/Asterisk.wav -resource:resources/Beep.wav -resource:resources/Exclamation.wav -resource:resources/Hand.wav -resource:resources/Question.wav</flags>
  146. <output>System.dll</output>
  147. <built_sources></built_sources>
  148. <library_output>./../../class/lib/build/bare/System.dll</library_output>
  149. <fx_version>4.5</fx_version>
  150. <profile>build</profile>
  151. <response>System.dll.sources</response>
  152. </project>
  153. <project dir="class/System" library="System-secxml-build">
  154. <boot>false</boot>
  155. <flags>/codepage:65001 -lib:./../../class/lib/build/bare -d:NET_4_0 -d:NET_4_5 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/build -r:mscorlib.dll -optimize /noconfig -nowarn:618 -d:CONFIGURATION_2_0 -d:FEATURE_PAL,SYSTEM_NAMESPACE,MONO,PLATFORM_UNIX -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 -r:PrebuiltSystem=./../../class/lib/build/bare/System.dll -r:System.Xml -r:MonoSecurity=Mono.Security</flags>
  156. <output>System.dll</output>
  157. <built_sources></built_sources>
  158. <library_output>./../../class/lib/build/secxml/System.dll</library_output>
  159. <fx_version>4.5</fx_version>
  160. <profile>build</profile>
  161. <response>System.dll.sources</response>
  162. </project>
  163. <project dir="class/Mono.Security" library="Mono.Security-build">
  164. <boot>false</boot>
  165. <flags>/codepage:65001 -lib:./../../class/lib/build/bare -d:NET_4_0 -d:NET_4_5 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/build -r:mscorlib.dll -optimize /noconfig -unsafe -nowarn:1030 -r:System</flags>
  166. <output>Mono.Security.dll</output>
  167. <built_sources></built_sources>
  168. <library_output>./../../class/lib/build/Mono.Security.dll</library_output>
  169. <fx_version>4.5</fx_version>
  170. <profile>build</profile>
  171. <response>Mono.Security.dll.sources</response>
  172. </project>
  173. <project dir="class/Mono.Posix" library="Mono.Posix-build">
  174. <boot>true</boot>
  175. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/build -r:mscorlib.dll -optimize /noconfig /unsafe /r:mscorlib.dll /nowarn:0618,612 -r:System</flags>
  176. <output>Mono.Posix.dll</output>
  177. <built_sources></built_sources>
  178. <library_output>./../../class/lib/build/Mono.Posix.dll</library_output>
  179. <fx_version>4.5</fx_version>
  180. <profile>build</profile>
  181. <response>Mono.Posix.dll.sources</response>
  182. </project>
  183. <project dir="class/System.Core" library="System.Core-build">
  184. <boot>false</boot>
  185. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/build -r: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:System -r:Mono.Posix</flags>
  186. <output>System.Core.dll</output>
  187. <built_sources></built_sources>
  188. <library_output>./../../class/lib/build/System.Core.dll</library_output>
  189. <fx_version>4.5</fx_version>
  190. <profile>build</profile>
  191. <response>./../../build/deps/build_System.Core.dll.sources</response>
  192. </project>
  193. <project dir="class/System.Core" library="System.Core-plaincore-build">
  194. <boot>false</boot>
  195. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/build -r: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:System -r:Mono.Posix</flags>
  196. <output>System.Core.dll</output>
  197. <built_sources></built_sources>
  198. <library_output>./../../class/lib/build/plaincore/System.Core.dll</library_output>
  199. <fx_version>4.5</fx_version>
  200. <profile>build</profile>
  201. <response>./../../build/deps/build_System.Core.dll.sources</response>
  202. </project>
  203. <project dir="mcs" library="mcs-build">
  204. <boot></boot>
  205. <flags>/codepage:65001 -lib:./../class/lib/build -debug -d:STATIC,NO_SYMBOL_WRITER,NO_AUTHENTICODE -d:NET_4_0 -d:NET_4_5 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../class/lib/build -r:mscorlib.dll -optimize /noconfig -r:System -r:System.Core -r:System.Xml</flags>
  206. <output>mcs.exe</output>
  207. <built_sources></built_sources>
  208. <library_output>mcs.exe</library_output>
  209. <fx_version>4.5</fx_version>
  210. <profile>build</profile>
  211. <response>mcs.exe.sources</response>
  212. </project>
  213. <project dir="tools/gacutil" library="gacutil-build">
  214. <boot></boot>
  215. <flags>/codepage:65001 -r:Mono.Security.dll -unsafe -d:NET_4_0 -d:NET_4_5 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/build -r:mscorlib.dll -optimize /noconfig</flags>
  216. <output>gacutil.exe</output>
  217. <built_sources></built_sources>
  218. <library_output>./../../class/lib/build/gacutil.exe</library_output>
  219. <fx_version>4.5</fx_version>
  220. <profile>build</profile>
  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 -lib:./../../class/lib/build -r:mscorlib.dll -optimize /noconfig</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. <response>culevel.exe.sources</response>
  232. </project>
  233. <project dir="mcs" library="mcs-net_4_x">
  234. <boot></boot>
  235. <flags>/codepage:65001 -lib:./../class/lib/build -debug -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 -lib:./../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -r:System -r:System.Core -r:System.Xml</flags>
  236. <output>mcs.exe</output>
  237. <built_sources></built_sources>
  238. <library_output>mcs.exe</library_output>
  239. <fx_version>4.5</fx_version>
  240. <profile>net_4_x</profile>
  241. <response>mcs.exe.sources</response>
  242. </project>
  243. <project dir="class/corlib" library="corlib-net_4_x">
  244. <boot>true</boot>
  245. <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_REMOTING,MONO_COM,FEATURE_COMINTEROP,FEATURE_ROLE_BASED_SECURITY -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -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_REMOTING,MONO_COM,FEATURE_COMINTEROP,FEATURE_ROLE_BASED_SECURITY -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>
  246. <output>mscorlib.dll</output>
  247. <built_sources></built_sources>
  248. <library_output>./../../class/lib/net_4_x/mscorlib.dll</library_output>
  249. <fx_version>4.5</fx_version>
  250. <profile>net_4_x</profile>
  251. <response>./../../build/deps/net_4_x_corlib.dll.sources</response>
  252. </project>
  253. <project dir="class/corlib" library="corlib-tests-net_4_x">
  254. <boot>false</boot>
  255. <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_REMOTING,MONO_COM,FEATURE_COMINTEROP,FEATURE_ROLE_BASED_SECURITY -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -debug -optimize -r:./../../class/lib/net_4_x/mscorlib.dll -debug -nowarn:168,219,618,672 -unsafe -r:Mono.Posix.dll -r:System.Core.dll -define:MONO_DATACONVERTER_STATIC_METHODS -resource:Test/resources/Resources.resources</flags>
  256. <output>corlib_test_net_4_x.dll</output>
  257. <built_sources></built_sources>
  258. <library_output>corlib_test_net_4_x.dll</library_output>
  259. <fx_version>4.5</fx_version>
  260. <profile>net_4_x</profile>
  261. <response>./../../build/deps/corlib_test_net_4_x.dll.response</response>
  262. </project>
  263. <project dir="class/System" library="System-net_4_x">
  264. <boot>false</boot>
  265. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -nowarn:618 -d:CONFIGURATION_2_0 -d:FEATURE_PAL,SYSTEM_NAMESPACE,MONO,PLATFORM_UNIX -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 -r:PrebuiltSystem=./../../class/lib/net_4_x/secxml/System.dll -r:System.Configuration.dll -d:CONFIGURATION_DEP -r:System.Xml -r:MonoSecurity=Mono.Security</flags>
  266. <output>System.dll</output>
  267. <built_sources></built_sources>
  268. <library_output>./../../class/lib/net_4_x/System.dll</library_output>
  269. <fx_version>4.5</fx_version>
  270. <profile>net_4_x</profile>
  271. <response>System.dll.sources</response>
  272. </project>
  273. <project dir="class/System" library="System-tests-net_4_x">
  274. <boot>false</boot>
  275. <flags>/codepage:65001 -lib:./../../class/lib/net_4_x/bare -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/secxml/System.dll -r:System.Drawing.dll -r:Mono.Security.dll -r:System.Data -r:System.Xml.dll -r:System.Core.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 -r:System.Configuration</flags>
  276. <output>System_test_net_4_x.dll</output>
  277. <built_sources></built_sources>
  278. <library_output>System_test_net_4_x.dll</library_output>
  279. <fx_version>4.5</fx_version>
  280. <profile>net_4_x</profile>
  281. <response>./../../build/deps/System_test_net_4_x.dll.response</response>
  282. </project>
  283. <project dir="class/System" library="System-bare-net_4_x">
  284. <boot>false</boot>
  285. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -nowarn:618 -d:CONFIGURATION_2_0 -d:FEATURE_PAL,SYSTEM_NAMESPACE,MONO,PLATFORM_UNIX -unsafe -resource:resources/Asterisk.wav -resource:resources/Beep.wav -resource:resources/Exclamation.wav -resource:resources/Hand.wav -resource:resources/Question.wav</flags>
  286. <output>System.dll</output>
  287. <built_sources></built_sources>
  288. <library_output>./../../class/lib/net_4_x/bare/System.dll</library_output>
  289. <fx_version>4.5</fx_version>
  290. <profile>net_4_x</profile>
  291. <response>System.dll.sources</response>
  292. </project>
  293. <project dir="class/System" library="System-tests-net_4_x">
  294. <boot>false</boot>
  295. <flags>/codepage:65001 -lib:./../../class/lib/net_4_x/bare -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/secxml/System.dll -r:System.Drawing.dll -r:Mono.Security.dll -r:System.Data -r:System.Xml.dll -r:System.Core.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 -r:System.Configuration</flags>
  296. <output>System_test_net_4_x.dll</output>
  297. <built_sources></built_sources>
  298. <library_output>System_test_net_4_x.dll</library_output>
  299. <fx_version>4.5</fx_version>
  300. <profile>net_4_x</profile>
  301. <response>./../../build/deps/System_test_net_4_x.dll.response</response>
  302. </project>
  303. <project dir="class/System" library="System-secxml-net_4_x">
  304. <boot>false</boot>
  305. <flags>/codepage:65001 -lib:./../../class/lib/net_4_x/bare -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -nowarn:618 -d:CONFIGURATION_2_0 -d:FEATURE_PAL,SYSTEM_NAMESPACE,MONO,PLATFORM_UNIX -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 -r:PrebuiltSystem=./../../class/lib/net_4_x/bare/System.dll -r:System.Xml -r:MonoSecurity=Mono.Security</flags>
  306. <output>System.dll</output>
  307. <built_sources></built_sources>
  308. <library_output>./../../class/lib/net_4_x/secxml/System.dll</library_output>
  309. <fx_version>4.5</fx_version>
  310. <profile>net_4_x</profile>
  311. <response>System.dll.sources</response>
  312. </project>
  313. <project dir="class/System" library="System-tests-net_4_x">
  314. <boot>false</boot>
  315. <flags>/codepage:65001 -lib:./../../class/lib/net_4_x/bare -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/secxml/System.dll -r:System.Drawing.dll -r:Mono.Security.dll -r:System.Data -r:System.Xml.dll -r:System.Core.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 -r:System.Configuration</flags>
  316. <output>System_test_net_4_x.dll</output>
  317. <built_sources></built_sources>
  318. <library_output>System_test_net_4_x.dll</library_output>
  319. <fx_version>4.5</fx_version>
  320. <profile>net_4_x</profile>
  321. <response>./../../build/deps/System_test_net_4_x.dll.response</response>
  322. </project>
  323. <project dir="class/System.XML" library="System.Xml-net_4_x">
  324. <boot>false</boot>
  325. <flags>/codepage:65001 -lib:./../../class/lib/net_4_x/bare -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -r:mscorlib.dll -nowarn:219,414,649,1717 -unsafe -d:ASYNC -r:System.Configuration.dll -d:CONFIGURATION_DEP -r:System</flags>
  326. <output>System.Xml.dll</output>
  327. <built_sources></built_sources>
  328. <library_output>./../../class/lib/net_4_x/System.Xml.dll</library_output>
  329. <fx_version>4.5</fx_version>
  330. <profile>net_4_x</profile>
  331. <response>System.Xml.dll.sources</response>
  332. </project>
  333. <project dir="class/System.XML" library="System.Xml-tests-net_4_x">
  334. <boot>false</boot>
  335. <flags>/codepage:65001 -lib:./../../class/lib/net_4_x/bare -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/bare/System.Xml.dll -r:mscorlib.dll -nowarn:219,414,649,1717 -unsafe -d:ASYNC -r:System -nowarn:0618 -nowarn:219 -nowarn:169 -r:System.Data.dll -r:System.Core.dll</flags>
  336. <output>System.Xml_test_net_4_x.dll</output>
  337. <built_sources></built_sources>
  338. <library_output>System.Xml_test_net_4_x.dll</library_output>
  339. <fx_version>4.5</fx_version>
  340. <profile>net_4_x</profile>
  341. <response>./../../build/deps/System.Xml_test_net_4_x.dll.response</response>
  342. </project>
  343. <project dir="class/System.XML" library="System.Xml-bare-net_4_x">
  344. <boot>false</boot>
  345. <flags>/codepage:65001 -lib:./../../class/lib/net_4_x/bare -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -r:mscorlib.dll -nowarn:219,414,649,1717 -unsafe -d:ASYNC -r:System</flags>
  346. <output>System.Xml.dll</output>
  347. <built_sources></built_sources>
  348. <library_output>./../../class/lib/net_4_x/bare/System.Xml.dll</library_output>
  349. <fx_version>4.5</fx_version>
  350. <profile>net_4_x</profile>
  351. <response>System.Xml.dll.sources</response>
  352. </project>
  353. <project dir="class/System.XML" library="System.Xml-tests-net_4_x">
  354. <boot>false</boot>
  355. <flags>/codepage:65001 -lib:./../../class/lib/net_4_x/bare -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/bare/System.Xml.dll -r:mscorlib.dll -nowarn:219,414,649,1717 -unsafe -d:ASYNC -r:System -nowarn:0618 -nowarn:219 -nowarn:169 -r:System.Data.dll -r:System.Core.dll</flags>
  356. <output>System.Xml_test_net_4_x.dll</output>
  357. <built_sources></built_sources>
  358. <library_output>System.Xml_test_net_4_x.dll</library_output>
  359. <fx_version>4.5</fx_version>
  360. <profile>net_4_x</profile>
  361. <response>./../../build/deps/System.Xml_test_net_4_x.dll.response</response>
  362. </project>
  363. <project dir="class/Mono.CompilerServices.SymbolWriter" library="Mono.CompilerServices.SymbolWriter-net_4_x">
  364. <boot>true</boot>
  365. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -lib:./../../class/lib/net_4_x/bare -r:System</flags>
  366. <output>Mono.CompilerServices.SymbolWriter.dll</output>
  367. <built_sources></built_sources>
  368. <library_output>./../../class/lib/net_4_x/Mono.CompilerServices.SymbolWriter.dll</library_output>
  369. <fx_version>4.5</fx_version>
  370. <profile>net_4_x</profile>
  371. <response>Mono.CompilerServices.SymbolWriter.dll.sources</response>
  372. </project>
  373. <project dir="class/Mono.Posix" library="Mono.Posix-net_4_x">
  374. <boot>true</boot>
  375. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /unsafe /r:mscorlib.dll /nowarn:0618,612 -r:System</flags>
  376. <output>Mono.Posix.dll</output>
  377. <built_sources></built_sources>
  378. <library_output>./../../class/lib/net_4_x/Mono.Posix.dll</library_output>
  379. <fx_version>4.5</fx_version>
  380. <profile>net_4_x</profile>
  381. <response>Mono.Posix.dll.sources</response>
  382. </project>
  383. <project dir="class/Mono.Posix" library="Mono.Posix-tests-net_4_x">
  384. <boot>false</boot>
  385. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/Mono.Posix.dll /r:Mono.Posix.dll /r:System.dll /nowarn:0219,0618</flags>
  386. <output>Mono.Posix_test_net_4_x.dll</output>
  387. <built_sources></built_sources>
  388. <library_output>Mono.Posix_test_net_4_x.dll</library_output>
  389. <fx_version>4.5</fx_version>
  390. <profile>net_4_x</profile>
  391. <response>./../../build/deps/Mono.Posix_test_net_4_x.dll.response</response>
  392. </project>
  393. <project dir="class/System.Core" library="System.Core-net_4_x">
  394. <boot>false</boot>
  395. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r: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:System -r:Mono.Posix</flags>
  396. <output>System.Core.dll</output>
  397. <built_sources></built_sources>
  398. <library_output>./../../class/lib/net_4_x/System.Core.dll</library_output>
  399. <fx_version>4.5</fx_version>
  400. <profile>net_4_x</profile>
  401. <response>./../../build/deps/net_4_x_System.Core.dll.sources</response>
  402. </project>
  403. <project dir="class/System.Core" library="System.Core-tests-net_4_x">
  404. <boot>false</boot>
  405. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r: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:System -r:Mono.Posix</flags>
  406. <output>System.Core_test_net_4_x.dll</output>
  407. <built_sources></built_sources>
  408. <library_output>System.Core_test_net_4_x.dll</library_output>
  409. <fx_version>4.5</fx_version>
  410. <profile>net_4_x</profile>
  411. <response>./../../build/deps/System.Core_test_net_4_x.dll.response</response>
  412. </project>
  413. <project dir="class/System.Core" library="System.Core-plaincore-net_4_x">
  414. <boot>false</boot>
  415. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r: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:System -r:Mono.Posix</flags>
  416. <output>System.Core.dll</output>
  417. <built_sources></built_sources>
  418. <library_output>./../../class/lib/net_4_x/plaincore/System.Core.dll</library_output>
  419. <fx_version>4.5</fx_version>
  420. <profile>net_4_x</profile>
  421. <response>./../../build/deps/net_4_x_System.Core.dll.sources</response>
  422. </project>
  423. <project dir="class/System.Core" library="System.Core-tests-net_4_x">
  424. <boot>false</boot>
  425. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r: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:System -r:Mono.Posix</flags>
  426. <output>System.Core_test_net_4_x.dll</output>
  427. <built_sources></built_sources>
  428. <library_output>System.Core_test_net_4_x.dll</library_output>
  429. <fx_version>4.5</fx_version>
  430. <profile>net_4_x</profile>
  431. <response>./../../build/deps/System.Core_test_net_4_x.dll.response</response>
  432. </project>
  433. <project dir="class/Mono.Security" library="Mono.Security-net_4_x">
  434. <boot>false</boot>
  435. <flags>/codepage:65001 -lib:./../../class/lib/net_4_x/bare -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -unsafe -nowarn:1030 -r:System</flags>
  436. <output>Mono.Security.dll</output>
  437. <built_sources></built_sources>
  438. <library_output>./../../class/lib/net_4_x/Mono.Security.dll</library_output>
  439. <fx_version>4.5</fx_version>
  440. <profile>net_4_x</profile>
  441. <response>Mono.Security.dll.sources</response>
  442. </project>
  443. <project dir="class/Mono.Security" library="Mono.Security-tests-net_4_x">
  444. <boot>false</boot>
  445. <flags>/codepage:65001 -lib:./../../class/lib/net_4_x/bare -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/Mono.Security.dll -unsafe -nowarn:1030 -r:System -nowarn:169,219,618,672</flags>
  446. <output>Mono.Security_test_net_4_x.dll</output>
  447. <built_sources></built_sources>
  448. <library_output>Mono.Security_test_net_4_x.dll</library_output>
  449. <fx_version>4.5</fx_version>
  450. <profile>net_4_x</profile>
  451. <response>./../../build/deps/Mono.Security_test_net_4_x.dll.response</response>
  452. </project>
  453. <project dir="class/System.Security" library="System.Security-net_4_x">
  454. <boot>false</boot>
  455. <flags>/codepage:65001 -lib:./../../class/lib/net_4_x/secxml -lib:./../../class/lib/net_4_x/bare -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -nowarn:618 -d:SECURITY_DEP -r:mscorlib.dll -nowarn:414 -r:System -r:System.Xml -r:Mono.Security</flags>
  456. <output>System.Security.dll</output>
  457. <built_sources></built_sources>
  458. <library_output>./../../class/lib/net_4_x/System.Security.dll</library_output>
  459. <fx_version>4.5</fx_version>
  460. <profile>net_4_x</profile>
  461. <response>System.Security.dll.sources</response>
  462. </project>
  463. <project dir="class/System.Security" library="System.Security-tests-net_4_x">
  464. <boot>false</boot>
  465. <flags>/codepage:65001 -lib:./../../class/lib/net_4_x/secxml -lib:./../../class/lib/net_4_x/bare -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Security.dll -nowarn:618 -d:SECURITY_DEP -r:mscorlib.dll -nowarn:414 -r:System -r:System.Xml -r:Mono.Security -nowarn:168,169,183,219,414</flags>
  466. <output>System.Security_test_net_4_x.dll</output>
  467. <built_sources></built_sources>
  468. <library_output>System.Security_test_net_4_x.dll</library_output>
  469. <fx_version>4.5</fx_version>
  470. <profile>net_4_x</profile>
  471. <response>./../../build/deps/System.Security_test_net_4_x.dll.response</response>
  472. </project>
  473. <project dir="class/System.Configuration" library="System.Configuration-net_4_x">
  474. <boot>false</boot>
  475. <flags>/codepage:65001 -lib:./../../class/lib/net_4_x/secxml -lib:./../../class/lib/net_4_x/bare -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -r:mscorlib.dll -nowarn:618 -r:System -r:System.Xml -r:System.Security</flags>
  476. <output>System.Configuration.dll</output>
  477. <built_sources></built_sources>
  478. <library_output>./../../class/lib/net_4_x/System.Configuration.dll</library_output>
  479. <fx_version>4.5</fx_version>
  480. <profile>net_4_x</profile>
  481. <response>System.Configuration.dll.sources</response>
  482. </project>
  483. <project dir="class/System.Configuration" library="System.Configuration-tests-net_4_x">
  484. <boot>false</boot>
  485. <flags>/codepage:65001 -lib:./../../class/lib/net_4_x/secxml -lib:./../../class/lib/net_4_x/bare -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Configuration.dll -r:mscorlib.dll -nowarn:618 -r:System -r:System.Xml -r:System.Security</flags>
  486. <output>System.Configuration_test_net_4_x.dll</output>
  487. <built_sources></built_sources>
  488. <library_output>System.Configuration_test_net_4_x.dll</library_output>
  489. <fx_version>4.5</fx_version>
  490. <profile>net_4_x</profile>
  491. <response>./../../build/deps/System.Configuration_test_net_4_x.dll.response</response>
  492. </project>
  493. <project dir="tools/resgen" library="resgen-net_4_x">
  494. <boot></boot>
  495. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  496. <output>resgen.exe</output>
  497. <built_sources></built_sources>
  498. <library_output>./../../class/lib/net_4_x/resgen.exe</library_output>
  499. <fx_version>4.5</fx_version>
  500. <profile>net_4_x</profile>
  501. <response>resgen.exe.sources</response>
  502. </project>
  503. <project dir="class/System.Drawing" library="System.Drawing-net_4_x">
  504. <boot>false</boot>
  505. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /unsafe /r:mscorlib.dll -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:System</flags>
  506. <output>System.Drawing.dll</output>
  507. <built_sources></built_sources>
  508. <library_output>./../../class/lib/net_4_x/System.Drawing.dll</library_output>
  509. <fx_version>4.5</fx_version>
  510. <profile>net_4_x</profile>
  511. <response>System.Drawing.dll.sources</response>
  512. </project>
  513. <project dir="class/System.Drawing" library="System.Drawing-tests-net_4_x">
  514. <boot>false</boot>
  515. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Drawing.dll /unsafe /r:mscorlib.dll -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:System -define:TEST -resource:Test/resources/indexed.png,indexed.png -r:System.Drawing.dll -r:System.Runtime.Serialization.Formatters.Soap.dll -r:System.Xml.dll -nowarn:0618 -nowarn:219 -nowarn:169</flags>
  516. <output>System.Drawing_test_net_4_x.dll</output>
  517. <built_sources></built_sources>
  518. <library_output>System.Drawing_test_net_4_x.dll</library_output>
  519. <fx_version>4.5</fx_version>
  520. <profile>net_4_x</profile>
  521. <response>./../../build/deps/System.Drawing_test_net_4_x.dll.response</response>
  522. </project>
  523. <project dir="class/System.Transactions" library="System.Transactions-net_4_x">
  524. <boot>false</boot>
  525. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /r:mscorlib.dll -r:System -r:System.Configuration</flags>
  526. <output>System.Transactions.dll</output>
  527. <built_sources></built_sources>
  528. <library_output>./../../class/lib/net_4_x/System.Transactions.dll</library_output>
  529. <fx_version>4.5</fx_version>
  530. <profile>net_4_x</profile>
  531. <response>System.Transactions.dll.sources</response>
  532. </project>
  533. <project dir="class/System.Transactions" library="System.Transactions-tests-net_4_x">
  534. <boot>false</boot>
  535. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Transactions.dll /r:mscorlib.dll -r:System -r:System.Configuration</flags>
  536. <output>System.Transactions_test_net_4_x.dll</output>
  537. <built_sources></built_sources>
  538. <library_output>System.Transactions_test_net_4_x.dll</library_output>
  539. <fx_version>4.5</fx_version>
  540. <profile>net_4_x</profile>
  541. <response>./../../build/deps/System.Transactions_test_net_4_x.dll.response</response>
  542. </project>
  543. <project dir="class/System.EnterpriseServices" library="System.EnterpriseServices-net_4_x">
  544. <boot>false</boot>
  545. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /nowarn:0168 /nowarn:0162 /r:mscorlib.dll -r:System.Transactions</flags>
  546. <output>System.EnterpriseServices.dll</output>
  547. <built_sources></built_sources>
  548. <library_output>./../../class/lib/net_4_x/System.EnterpriseServices.dll</library_output>
  549. <fx_version>4.5</fx_version>
  550. <profile>net_4_x</profile>
  551. <response>System.EnterpriseServices.dll.sources</response>
  552. </project>
  553. <project dir="class/Mono.Data.Tds" library="Mono.Data.Tds-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 -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /r:mscorlib.dll -r:System -r:System.Xml -r:Mono.Security</flags>
  556. <output>Mono.Data.Tds.dll</output>
  557. <built_sources></built_sources>
  558. <library_output>./../../class/lib/net_4_x/Mono.Data.Tds.dll</library_output>
  559. <fx_version>4.5</fx_version>
  560. <profile>net_4_x</profile>
  561. <response>Mono.Data.Tds.dll.sources</response>
  562. </project>
  563. <project dir="class/Mono.Data.Tds" library="Mono.Data.Tds-tests-net_4_x">
  564. <boot>false</boot>
  565. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/Mono.Data.Tds.dll /r:System.dll /r:System.Net.dll</flags>
  566. <output>Mono.Data.Tds_test_net_4_x.dll</output>
  567. <built_sources></built_sources>
  568. <library_output>Mono.Data.Tds_test_net_4_x.dll</library_output>
  569. <fx_version>4.5</fx_version>
  570. <profile>net_4_x</profile>
  571. <response>./../../build/deps/Mono.Data.Tds_test_net_4_x.dll.response</response>
  572. </project>
  573. <project dir="class/System.Numerics" library="System.Numerics-net_4_x">
  574. <boot>false</boot>
  575. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /unsafe -d:MONO -r:System</flags>
  576. <output>System.Numerics.dll</output>
  577. <built_sources></built_sources>
  578. <library_output>./../../class/lib/net_4_x/System.Numerics.dll</library_output>
  579. <fx_version>4.5</fx_version>
  580. <profile>net_4_x</profile>
  581. <response>System.Numerics.dll.sources</response>
  582. </project>
  583. <project dir="class/System.Numerics" library="System.Numerics-tests-net_4_x">
  584. <boot>false</boot>
  585. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Numerics.dll /unsafe -d:MONO -r:System</flags>
  586. <output>System.Numerics_test_net_4_x.dll</output>
  587. <built_sources></built_sources>
  588. <library_output>System.Numerics_test_net_4_x.dll</library_output>
  589. <fx_version>4.5</fx_version>
  590. <profile>net_4_x</profile>
  591. <response>./../../build/deps/System.Numerics_test_net_4_x.dll.response</response>
  592. </project>
  593. <project dir="class/System.Numerics.Vectors" library="System.Numerics.Vectors-net_4_x">
  594. <boot>false</boot>
  595. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -r:System</flags>
  596. <output>System.Numerics.Vectors.dll</output>
  597. <built_sources></built_sources>
  598. <library_output>./../../class/lib/net_4_x/System.Numerics.Vectors.dll</library_output>
  599. <fx_version>4.5</fx_version>
  600. <profile>net_4_x</profile>
  601. <response>System.Numerics.Vectors.dll.sources</response>
  602. </project>
  603. <project dir="class/System.Data" library="System.Data-net_4_x">
  604. <boot>false</boot>
  605. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -nowarn:169,219,414,649 -d:PLATFORM_UNIX -d:USEOFFSET -d:MONO_PARTIAL_DATA_IMPORT -unsafe -r:System -r:System.Xml -r:System.Core -r:System.Numerics -r:System.EnterpriseServices -r:Mono.Data.Tds -r:System.Configuration -r:System.Transactions</flags>
  606. <output>System.Data.dll</output>
  607. <built_sources>gen_OdbcConnection.cs gen_OleDbConnection.cs gen_OdbcParameter.cs gen_OleDbParameter.cs gen_OdbcParameterCollection.cs gen_OleDbParameterCollection.cs</built_sources>
  608. <library_output>./../../class/lib/net_4_x/System.Data.dll</library_output>
  609. <fx_version>4.5</fx_version>
  610. <profile>net_4_x</profile>
  611. <response>./../../build/deps/net_4_x_System.Data.dll.sources</response>
  612. </project>
  613. <project dir="class/System.Data" library="System.Data-tests-net_4_x">
  614. <boot>false</boot>
  615. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r: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:System -r:System.Xml -r:System.Core -r:System.Numerics -r:System.EnterpriseServices -r:Mono.Data.Tds -r:System.Configuration -r:System.Transactions -r:System.Core.dll -r:Mono.Data.Sqlite.dll -nowarn:618,169,612,219,168</flags>
  616. <output>System.Data_test_net_4_x.dll</output>
  617. <built_sources>gen_OdbcConnection.cs gen_OleDbConnection.cs gen_OdbcParameter.cs gen_OleDbParameter.cs gen_OdbcParameterCollection.cs gen_OleDbParameterCollection.cs</built_sources>
  618. <library_output>System.Data_test_net_4_x.dll</library_output>
  619. <fx_version>4.5</fx_version>
  620. <profile>net_4_x</profile>
  621. <response>./../../build/deps/System.Data_test_net_4_x.dll.response</response>
  622. </project>
  623. <project dir="class/System.ComponentModel.DataAnnotations" library="System.ComponentModel.DataAnnotations-net_4_x">
  624. <boot>false</boot>
  625. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -nowarn:414 -r:System -r:System.Core -r:System.Data -r:System.Xml</flags>
  626. <output>System.ComponentModel.DataAnnotations.dll</output>
  627. <built_sources></built_sources>
  628. <library_output>./../../class/lib/net_4_x/System.ComponentModel.DataAnnotations.dll</library_output>
  629. <fx_version>4.5</fx_version>
  630. <profile>net_4_x</profile>
  631. <response>System.ComponentModel.DataAnnotations.dll.sources</response>
  632. </project>
  633. <project dir="class/System.ComponentModel.DataAnnotations" library="System.ComponentModel.DataAnnotations-tests-net_4_x">
  634. <boot>false</boot>
  635. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.ComponentModel.DataAnnotations.dll -nowarn:414 -r:System -r:System.Core -r:System.Data -r:System.Xml</flags>
  636. <output>System.ComponentModel.DataAnnotations_test_net_4_x.dll</output>
  637. <built_sources></built_sources>
  638. <library_output>System.ComponentModel.DataAnnotations_test_net_4_x.dll</library_output>
  639. <fx_version>4.5</fx_version>
  640. <profile>net_4_x</profile>
  641. <response>./../../build/deps/System.ComponentModel.DataAnnotations_test_net_4_x.dll.response</response>
  642. </project>
  643. <project dir="class/Accessibility" library="Accessibility-net_4_x">
  644. <boot>false</boot>
  645. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /r:mscorlib.dll</flags>
  646. <output>Accessibility.dll</output>
  647. <built_sources></built_sources>
  648. <library_output>./../../class/lib/net_4_x/Accessibility.dll</library_output>
  649. <fx_version>4.5</fx_version>
  650. <profile>net_4_x</profile>
  651. <response>Accessibility.dll.sources</response>
  652. </project>
  653. <project dir="class/Mono.WebBrowser" library="Mono.WebBrowser-net_4_x">
  654. <boot>false</boot>
  655. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -warn:1 -r:System</flags>
  656. <output>Mono.WebBrowser.dll</output>
  657. <built_sources></built_sources>
  658. <library_output>./../../class/lib/net_4_x/Mono.WebBrowser.dll</library_output>
  659. <fx_version>4.5</fx_version>
  660. <profile>net_4_x</profile>
  661. <response>Mono.WebBrowser.dll.sources</response>
  662. </project>
  663. <project dir="class/System.Runtime.Serialization.Formatters.Soap" library="System.Runtime.Serialization.Formatters.Soap-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 -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /r:mscorlib.dll -r:System.Xml</flags>
  666. <output>System.Runtime.Serialization.Formatters.Soap.dll</output>
  667. <built_sources></built_sources>
  668. <library_output>./../../class/lib/net_4_x/System.Runtime.Serialization.Formatters.Soap.dll</library_output>
  669. <fx_version>4.5</fx_version>
  670. <profile>net_4_x</profile>
  671. <response>System.Runtime.Serialization.Formatters.Soap.dll.sources</response>
  672. </project>
  673. <project dir="class/System.Runtime.Serialization.Formatters.Soap" library="System.Runtime.Serialization.Formatters.Soap-tests-net_4_x">
  674. <boot>false</boot>
  675. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Runtime.Serialization.Formatters.Soap.dll /r:mscorlib.dll -r:System.Xml -r:System.dll -nowarn:0618 -nowarn:219 -nowarn:169</flags>
  676. <output>System.Runtime.Serialization.Formatters.Soap_test_net_4_x.dll</output>
  677. <built_sources></built_sources>
  678. <library_output>System.Runtime.Serialization.Formatters.Soap_test_net_4_x.dll</library_output>
  679. <fx_version>4.5</fx_version>
  680. <profile>net_4_x</profile>
  681. <response>./../../build/deps/System.Runtime.Serialization.Formatters.Soap_test_net_4_x.dll.response</response>
  682. </project>
  683. <project dir="class/System.Windows.Forms" library="System.Windows.Forms-net_4_x">
  684. <boot>false</boot>
  685. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /unsafe /r:mscorlib.dll @System.Windows.Forms.dll.resources -nowarn:618,612,809 -r:System -r:System.Xml -r:System.Drawing -r:Accessibility -r:System.Data -r:Mono.Posix -r:Mono.WebBrowser -r:System.Configuration -r:System.Runtime.Serialization.Formatters.Soap</flags>
  686. <output>System.Windows.Forms.dll</output>
  687. <built_sources></built_sources>
  688. <library_output>./../../class/lib/net_4_x/System.Windows.Forms.dll</library_output>
  689. <fx_version>4.5</fx_version>
  690. <profile>net_4_x</profile>
  691. <response>System.Windows.Forms.dll.sources</response>
  692. </project>
  693. <project dir="class/System.Windows.Forms" library="System.Windows.Forms-tests-net_4_x">
  694. <boot>false</boot>
  695. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Windows.Forms.dll /r:System.Data.dll /r:System.Drawing.dll /r:Accessibility.dll -r:System.dll -r:System.Xml.dll -r:System.Runtime.Serialization.Formatters.Soap -resource:Test/resources/a.cur,a.cur -resource:Test/resources/32x32.ico,32x32.ico -nowarn:618,612</flags>
  696. <output>System.Windows.Forms_test_net_4_x.dll</output>
  697. <built_sources></built_sources>
  698. <library_output>System.Windows.Forms_test_net_4_x.dll</library_output>
  699. <fx_version>4.5</fx_version>
  700. <profile>net_4_x</profile>
  701. <response>./../../build/deps/System.Windows.Forms_test_net_4_x.dll.response</response>
  702. </project>
  703. <project dir="class/Mono.Data.Sqlite" library="Mono.Data.Sqlite-net_4_x">
  704. <boot>false</boot>
  705. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r: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:System -r:System.Data -r:System.Transactions -r:System.Xml</flags>
  706. <output>Mono.Data.Sqlite.dll</output>
  707. <built_sources></built_sources>
  708. <library_output>./../../class/lib/net_4_x/Mono.Data.Sqlite.dll</library_output>
  709. <fx_version>4.5</fx_version>
  710. <profile>net_4_x</profile>
  711. <response>Mono.Data.Sqlite.dll.sources</response>
  712. </project>
  713. <project dir="class/Mono.Data.Sqlite" library="Mono.Data.Sqlite-tests-net_4_x">
  714. <boot>false</boot>
  715. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r: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:System -r:System.Data -r:System.Transactions -r:System.Xml /nowarn:618</flags>
  716. <output>Mono.Data.Sqlite_test_net_4_x.dll</output>
  717. <built_sources></built_sources>
  718. <library_output>Mono.Data.Sqlite_test_net_4_x.dll</library_output>
  719. <fx_version>4.5</fx_version>
  720. <profile>net_4_x</profile>
  721. <response>./../../build/deps/Mono.Data.Sqlite_test_net_4_x.dll.response</response>
  722. </project>
  723. <project dir="class/System.Web.ApplicationServices" library="System.Web.ApplicationServices-net_4_x">
  724. <boot>false</boot>
  725. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -d:SYSTEM_WEB_APPLICATIONSERVICES -r:System -r:System.Configuration</flags>
  726. <output>System.Web.ApplicationServices.dll</output>
  727. <built_sources></built_sources>
  728. <library_output>./../../class/lib/net_4_x/System.Web.ApplicationServices.dll</library_output>
  729. <fx_version>4.5</fx_version>
  730. <profile>net_4_x</profile>
  731. <response>System.Web.ApplicationServices.dll.sources</response>
  732. </project>
  733. <project dir="class/Novell.Directory.Ldap" library="Novell.Directory.Ldap-net_4_x">
  734. <boot>false</boot>
  735. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -warn:1 -nowarn:612 -r:mscorlib.dll -r:System.dll -r:Mono.Security.dll /res:Novell.Directory.Ldap.Utilclass/ResultCodeMessages.resources -r:System -r:Mono.Security</flags>
  736. <output>Novell.Directory.Ldap.dll</output>
  737. <built_sources></built_sources>
  738. <library_output>./../../class/lib/net_4_x/Novell.Directory.Ldap.dll</library_output>
  739. <fx_version>4.5</fx_version>
  740. <profile>net_4_x</profile>
  741. <response>Novell.Directory.Ldap.dll.sources</response>
  742. </project>
  743. <project dir="class/Novell.Directory.Ldap" library="Novell.Directory.Ldap-tests-net_4_x">
  744. <boot>false</boot>
  745. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/Novell.Directory.Ldap.dll</flags>
  746. <output>Novell.Directory.Ldap_test_net_4_x.dll</output>
  747. <built_sources></built_sources>
  748. <library_output>Novell.Directory.Ldap_test_net_4_x.dll</library_output>
  749. <fx_version>4.5</fx_version>
  750. <profile>net_4_x</profile>
  751. <response>./../../build/deps/Novell.Directory.Ldap_test_net_4_x.dll.response</response>
  752. </project>
  753. <project dir="class/System.DirectoryServices" library="System.DirectoryServices-net_4_x">
  754. <boot>false</boot>
  755. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /r:mscorlib.dll -r:System -r:Novell.Directory.Ldap</flags>
  756. <output>System.DirectoryServices.dll</output>
  757. <built_sources></built_sources>
  758. <library_output>./../../class/lib/net_4_x/System.DirectoryServices.dll</library_output>
  759. <fx_version>4.5</fx_version>
  760. <profile>net_4_x</profile>
  761. <response>System.DirectoryServices.dll.sources</response>
  762. </project>
  763. <project dir="class/System.DirectoryServices" library="System.DirectoryServices-tests-net_4_x">
  764. <boot>false</boot>
  765. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.DirectoryServices.dll /r:mscorlib.dll -r:System -r:Novell.Directory.Ldap -nowarn:0618 -nowarn:219 -nowarn:169</flags>
  766. <output>System.DirectoryServices_test_net_4_x.dll</output>
  767. <built_sources></built_sources>
  768. <library_output>System.DirectoryServices_test_net_4_x.dll</library_output>
  769. <fx_version>4.5</fx_version>
  770. <profile>net_4_x</profile>
  771. <response>./../../build/deps/System.DirectoryServices_test_net_4_x.dll.response</response>
  772. </project>
  773. <project dir="class/System.Web" library="System.Web-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 -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -unsafe -nowarn:612,618 -r:mscorlib.dll -d:INSIDE_SYSTEM_WEB -nowarn:618 -r:System.Configuration.dll -r:Mono.Data.Sqlite.dll -r:System.Web.ApplicationServices.dll /resource:resources/TranslationResources.resources /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 -lib:./../../class/lib/net_4_x/plaindesign -r:System -r:System.Core -r:System.Drawing -r:System.Data -r:System.Xml -r:System.EnterpriseServices -r:System.Runtime.Serialization.Formatters.Soap -r:System.ComponentModel.DataAnnotations -r:System.Web.Services -r:System.Design</flags>
  776. <output>System.Web.dll</output>
  777. <built_sources>System.Web/UplevelHelper.cs</built_sources>
  778. <library_output>./../../class/lib/net_4_x/System.Web.dll</library_output>
  779. <fx_version>4.5</fx_version>
  780. <profile>net_4_x</profile>
  781. <response>System.Web.dll.sources</response>
  782. </project>
  783. <project dir="class/System.Web" library="System.Web-tests-net_4_x">
  784. <boot>false</boot>
  785. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/plainweb/System.Web.dll -unsafe -nowarn:612,618 -r:mscorlib.dll -d:INSIDE_SYSTEM_WEB -nowarn:618 -r:System.Configuration.dll -r:Mono.Data.Sqlite.dll -r:System.Web.ApplicationServices.dll /resource:resources/TranslationResources.resources /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:System -r:System.Core -r:System.Drawing -r:System.Data -r:System.Xml -r:System.EnterpriseServices -r:System.Runtime.Serialization.Formatters.Soap -r:System.ComponentModel.DataAnnotations -doc:System.Web_test_net_4_x.xml -nowarn:219,169,1591 -r:SystemWebTestShim.dll /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>
  786. <output>System.Web_test_net_4_x.dll</output>
  787. <built_sources>System.Web/UplevelHelper.cs</built_sources>
  788. <library_output>System.Web_test_net_4_x.dll</library_output>
  789. <fx_version>4.5</fx_version>
  790. <profile>net_4_x</profile>
  791. <response>./../../build/deps/System.Web_test_net_4_x.dll.response</response>
  792. </project>
  793. <project dir="class/System.Web" library="System.Web-plainweb-net_4_x">
  794. <boot>false</boot>
  795. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -unsafe -nowarn:612,618 -r:mscorlib.dll -d:INSIDE_SYSTEM_WEB -nowarn:618 -r:System.Configuration.dll -r:Mono.Data.Sqlite.dll -r:System.Web.ApplicationServices.dll /resource:resources/TranslationResources.resources /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:System -r:System.Core -r:System.Drawing -r:System.Data -r:System.Xml -r:System.EnterpriseServices -r:System.Runtime.Serialization.Formatters.Soap -r:System.ComponentModel.DataAnnotations</flags>
  796. <output>System.Web.dll</output>
  797. <built_sources>System.Web/UplevelHelper.cs</built_sources>
  798. <library_output>./../../class/lib/net_4_x/plainweb/System.Web.dll</library_output>
  799. <fx_version>4.5</fx_version>
  800. <profile>net_4_x</profile>
  801. <response>System.Web.dll.sources</response>
  802. </project>
  803. <project dir="class/System.Web" library="System.Web-tests-net_4_x">
  804. <boot>false</boot>
  805. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/plainweb/System.Web.dll -unsafe -nowarn:612,618 -r:mscorlib.dll -d:INSIDE_SYSTEM_WEB -nowarn:618 -r:System.Configuration.dll -r:Mono.Data.Sqlite.dll -r:System.Web.ApplicationServices.dll /resource:resources/TranslationResources.resources /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:System -r:System.Core -r:System.Drawing -r:System.Data -r:System.Xml -r:System.EnterpriseServices -r:System.Runtime.Serialization.Formatters.Soap -r:System.ComponentModel.DataAnnotations -doc:System.Web_test_net_4_x.xml -nowarn:219,169,1591 -r:SystemWebTestShim.dll /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>
  806. <output>System.Web_test_net_4_x.dll</output>
  807. <built_sources>System.Web/UplevelHelper.cs</built_sources>
  808. <library_output>System.Web_test_net_4_x.dll</library_output>
  809. <fx_version>4.5</fx_version>
  810. <profile>net_4_x</profile>
  811. <response>./../../build/deps/System.Web_test_net_4_x.dll.response</response>
  812. </project>
  813. <project dir="class/System.Web.Services" library="System.Web.Services-net_4_x">
  814. <boot>false</boot>
  815. <flags>/codepage:65001 -lib:./../../class/lib/net_4_x/plainweb -lib:./../../class/lib/net_4_x/plaindesign -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r: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:System -r:System.EnterpriseServices -r:System.Xml -r:System.Data -r:System.Web -r:System.Design -r:System.DirectoryServices -r:System.Configuration</flags>
  816. <output>System.Web.Services.dll</output>
  817. <built_sources></built_sources>
  818. <library_output>./../../class/lib/net_4_x/System.Web.Services.dll</library_output>
  819. <fx_version>4.5</fx_version>
  820. <profile>net_4_x</profile>
  821. <response>System.Web.Services.dll.sources</response>
  822. </project>
  823. <project dir="class/System.Web.Services" library="System.Web.Services-tests-net_4_x">
  824. <boot>false</boot>
  825. <flags>/codepage:65001 -lib:./../../class/lib/net_4_x/plainweb -lib:./../../class/lib/net_4_x/plaindesign -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r: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:System -r:System.EnterpriseServices -r:System.Xml -r:System.Data -r:System.Web -r:System.Design -r:System.DirectoryServices -r:System.Configuration -nowarn:618</flags>
  826. <output>System.Web.Services_test_net_4_x.dll</output>
  827. <built_sources></built_sources>
  828. <library_output>System.Web.Services_test_net_4_x.dll</library_output>
  829. <fx_version>4.5</fx_version>
  830. <profile>net_4_x</profile>
  831. <response>./../../build/deps/System.Web.Services_test_net_4_x.dll.response</response>
  832. </project>
  833. <project dir="class/System.Design" library="System.Design-net_4_x">
  834. <boot>false</boot>
  835. <flags>/codepage:65001 -lib:./../../class/lib/net_4_x/plainweb -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -r:mscorlib.dll -r:System -r:System.Xml -r:System.Web -r:System.Windows.Forms -r:System.Drawing -r:Accessibility -r:System.Data -r:System.Configuration</flags>
  836. <output>System.Design.dll</output>
  837. <built_sources></built_sources>
  838. <library_output>./../../class/lib/net_4_x/System.Design.dll</library_output>
  839. <fx_version>4.5</fx_version>
  840. <profile>net_4_x</profile>
  841. <response>System.Design.dll.sources</response>
  842. </project>
  843. <project dir="class/System.Design" library="System.Design-tests-net_4_x">
  844. <boot>false</boot>
  845. <flags>/codepage:65001 -lib:./../../class/lib/net_4_x/plainweb -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Design.dll /r:System.dll -r:System.Drawing.dll -r:System.Windows.Forms</flags>
  846. <output>System.Design_test_net_4_x.dll</output>
  847. <built_sources></built_sources>
  848. <library_output>System.Design_test_net_4_x.dll</library_output>
  849. <fx_version>4.5</fx_version>
  850. <profile>net_4_x</profile>
  851. <response>./../../build/deps/System.Design_test_net_4_x.dll.response</response>
  852. </project>
  853. <project dir="class/System.Runtime.Remoting" library="System.Runtime.Remoting-net_4_x">
  854. <boot>false</boot>
  855. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /r:mscorlib.dll -r:System -r:System.Web -r:System.Xml -r:System.Runtime.Serialization.Formatters.Soap</flags>
  856. <output>System.Runtime.Remoting.dll</output>
  857. <built_sources></built_sources>
  858. <library_output>./../../class/lib/net_4_x/System.Runtime.Remoting.dll</library_output>
  859. <fx_version>4.5</fx_version>
  860. <profile>net_4_x</profile>
  861. <response>System.Runtime.Remoting.dll.sources</response>
  862. </project>
  863. <project dir="class/System.Runtime.Remoting" library="System.Runtime.Remoting-tests-net_4_x">
  864. <boot>false</boot>
  865. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Runtime.Remoting.dll /r:mscorlib.dll -r:System -r:System.Web -r:System.Xml -r:System.Runtime.Serialization.Formatters.Soap -nowarn:618 /r:System.Runtime.Remoting.dll</flags>
  866. <output>System.Runtime.Remoting_test_net_4_x.dll</output>
  867. <built_sources></built_sources>
  868. <library_output>System.Runtime.Remoting_test_net_4_x.dll</library_output>
  869. <fx_version>4.5</fx_version>
  870. <profile>net_4_x</profile>
  871. <response>./../../build/deps/System.Runtime.Remoting_test_net_4_x.dll.response</response>
  872. </project>
  873. <project dir="class/System.Configuration.Install" library="System.Configuration.Install-net_4_x">
  874. <boot>false</boot>
  875. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /r:mscorlib.dll -r:System -r:System.Xml</flags>
  876. <output>System.Configuration.Install.dll</output>
  877. <built_sources></built_sources>
  878. <library_output>./../../class/lib/net_4_x/System.Configuration.Install.dll</library_output>
  879. <fx_version>4.5</fx_version>
  880. <profile>net_4_x</profile>
  881. <response>System.Configuration.Install.dll.sources</response>
  882. </project>
  883. <project dir="class/System.Management" library="System.Management-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 -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /r:mscorlib.dll -r:System -r:System.Configuration.Install</flags>
  886. <output>System.Management.dll</output>
  887. <built_sources></built_sources>
  888. <library_output>./../../class/lib/net_4_x/System.Management.dll</library_output>
  889. <fx_version>4.5</fx_version>
  890. <profile>net_4_x</profile>
  891. <response>System.Management.dll.sources</response>
  892. </project>
  893. <project dir="class/System.Data.OracleClient" library="System.Data.OracleClient-net_4_x">
  894. <boot>false</boot>
  895. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /r:mscorlib.dll -r:System -r:System.Xml -r:System.Data -r:System.EnterpriseServices -r:System.Drawing</flags>
  896. <output>System.Data.OracleClient.dll</output>
  897. <built_sources></built_sources>
  898. <library_output>./../../class/lib/net_4_x/System.Data.OracleClient.dll</library_output>
  899. <fx_version>4.5</fx_version>
  900. <profile>net_4_x</profile>
  901. <response>System.Data.OracleClient.dll.sources</response>
  902. </project>
  903. <project dir="class/System.Data.OracleClient" library="System.Data.OracleClient-tests-net_4_x">
  904. <boot>false</boot>
  905. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Data.OracleClient.dll /r:mscorlib.dll -r:System -r:System.Xml -r:System.Data -r:System.EnterpriseServices -r:System.Drawing /nowarn:618</flags>
  906. <output>System.Data.OracleClient_test_net_4_x.dll</output>
  907. <built_sources></built_sources>
  908. <library_output>System.Data.OracleClient_test_net_4_x.dll</library_output>
  909. <fx_version>4.5</fx_version>
  910. <profile>net_4_x</profile>
  911. <response>./../../build/deps/System.Data.OracleClient_test_net_4_x.dll.response</response>
  912. </project>
  913. <project dir="class/Cscompmgd" library="Cscompmgd-net_4_x">
  914. <boot>false</boot>
  915. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /r:mscorlib.dll -r:System</flags>
  916. <output>cscompmgd.dll</output>
  917. <built_sources></built_sources>
  918. <library_output>./../../class/lib/net_4_x/cscompmgd.dll</library_output>
  919. <fx_version>4.5</fx_version>
  920. <profile>net_4_x</profile>
  921. <response>Cscompmgd.dll.sources</response>
  922. </project>
  923. <project dir="class/Cscompmgd" library="Cscompmgd-tests-net_4_x">
  924. <boot>false</boot>
  925. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/cscompmgd.dll /r:mscorlib.dll -r:System -nowarn:0618 -nowarn:219 -nowarn:169</flags>
  926. <output>Cscompmgd_test_net_4_x.dll</output>
  927. <built_sources></built_sources>
  928. <library_output>Cscompmgd_test_net_4_x.dll</library_output>
  929. <fx_version>4.5</fx_version>
  930. <profile>net_4_x</profile>
  931. <response>./../../build/deps/Cscompmgd_test_net_4_x.dll.response</response>
  932. </project>
  933. <project dir="class/Commons.Xml.Relaxng" library="Commons.Xml.Relaxng-net_4_x">
  934. <boot>false</boot>
  935. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /r:mscorlib.dll /resource:resources/relaxng.rng,relaxng.rng -r:System -r:System.Xml</flags>
  936. <output>Commons.Xml.Relaxng.dll</output>
  937. <built_sources>Commons.Xml.Relaxng.Rnc/RncParser.cs</built_sources>
  938. <library_output>./../../class/lib/net_4_x/Commons.Xml.Relaxng.dll</library_output>
  939. <fx_version>4.5</fx_version>
  940. <profile>net_4_x</profile>
  941. <response>Commons.Xml.Relaxng.dll.sources</response>
  942. </project>
  943. <project dir="class/Commons.Xml.Relaxng" library="Commons.Xml.Relaxng-tests-net_4_x">
  944. <boot>false</boot>
  945. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/Commons.Xml.Relaxng.dll /r:mscorlib.dll /resource:resources/relaxng.rng,relaxng.rng -r:System -r:System.Xml -nowarn:0618 -nowarn:219 -nowarn:169</flags>
  946. <output>Commons.Xml.Relaxng_test_net_4_x.dll</output>
  947. <built_sources>Commons.Xml.Relaxng.Rnc/RncParser.cs</built_sources>
  948. <library_output>Commons.Xml.Relaxng_test_net_4_x.dll</library_output>
  949. <fx_version>4.5</fx_version>
  950. <profile>net_4_x</profile>
  951. <response>./../../build/deps/Commons.Xml.Relaxng_test_net_4_x.dll.response</response>
  952. </project>
  953. <project dir="class/Mono.Messaging" library="Mono.Messaging-net_4_x">
  954. <boot>false</boot>
  955. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -r:System -r:System.Configuration</flags>
  956. <output>Mono.Messaging.dll</output>
  957. <built_sources></built_sources>
  958. <library_output>./../../class/lib/net_4_x/Mono.Messaging.dll</library_output>
  959. <fx_version>4.5</fx_version>
  960. <profile>net_4_x</profile>
  961. <response>Mono.Messaging.dll.sources</response>
  962. </project>
  963. <project dir="class/Mono.Messaging" library="Mono.Messaging-tests-net_4_x">
  964. <boot>false</boot>
  965. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/Mono.Messaging.dll -r:System -r:System.Configuration -nowarn:0618 -nowarn:219 -nowarn:169 /r:System.Messaging.dll /r:nunit.mocks.dll</flags>
  966. <output>Mono.Messaging_test_net_4_x.dll</output>
  967. <built_sources></built_sources>
  968. <library_output>Mono.Messaging_test_net_4_x.dll</library_output>
  969. <fx_version>4.5</fx_version>
  970. <profile>net_4_x</profile>
  971. <response>./../../build/deps/Mono.Messaging_test_net_4_x.dll.response</response>
  972. </project>
  973. <project dir="class/System.Messaging" library="System.Messaging-net_4_x">
  974. <boot>false</boot>
  975. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /resource:System.Messaging/MessageQueue.resx -r:System -r:System.Xml -r:Mono.Messaging -r:System.Configuration.Install -r:System.Drawing -r:System.Windows.Forms</flags>
  976. <output>System.Messaging.dll</output>
  977. <built_sources></built_sources>
  978. <library_output>./../../class/lib/net_4_x/System.Messaging.dll</library_output>
  979. <fx_version>4.5</fx_version>
  980. <profile>net_4_x</profile>
  981. <response>System.Messaging.dll.sources</response>
  982. </project>
  983. <project dir="class/System.Messaging" library="System.Messaging-tests-net_4_x">
  984. <boot>false</boot>
  985. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Messaging.dll /resource:System.Messaging/MessageQueue.resx -r:System -r:System.Xml -r:Mono.Messaging -r:System.Configuration.Install -r:System.Drawing -r:System.Windows.Forms -nowarn:0618 -nowarn:219 -nowarn:169 /r:nunit.mocks.dll</flags>
  986. <output>System.Messaging_test_net_4_x.dll</output>
  987. <built_sources></built_sources>
  988. <library_output>System.Messaging_test_net_4_x.dll</library_output>
  989. <fx_version>4.5</fx_version>
  990. <profile>net_4_x</profile>
  991. <response>./../../build/deps/System.Messaging_test_net_4_x.dll.response</response>
  992. </project>
  993. <project dir="class/System.ServiceProcess" library="System.ServiceProcess-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 -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /nowarn:0618 -r:System -r:System.Configuration.Install -r:System.Windows.Forms</flags>
  996. <output>System.ServiceProcess.dll</output>
  997. <built_sources></built_sources>
  998. <library_output>./../../class/lib/net_4_x/System.ServiceProcess.dll</library_output>
  999. <fx_version>4.5</fx_version>
  1000. <profile>net_4_x</profile>
  1001. <response>System.ServiceProcess.dll.sources</response>
  1002. </project>
  1003. <project dir="class/System.ServiceProcess" library="System.ServiceProcess-tests-net_4_x">
  1004. <boot>false</boot>
  1005. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.ServiceProcess.dll /nowarn:0618 -r:System -r:System.Configuration.Install -r:System.Windows.Forms</flags>
  1006. <output>System.ServiceProcess_test_net_4_x.dll</output>
  1007. <built_sources></built_sources>
  1008. <library_output>System.ServiceProcess_test_net_4_x.dll</library_output>
  1009. <fx_version>4.5</fx_version>
  1010. <profile>net_4_x</profile>
  1011. <response>./../../build/deps/System.ServiceProcess_test_net_4_x.dll.response</response>
  1012. </project>
  1013. <project dir="class/System.Drawing.Design" library="System.Drawing.Design-net_4_x">
  1014. <boot>false</boot>
  1015. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /r:mscorlib.dll -r:System -r:System.Drawing -r:System.Windows.Forms</flags>
  1016. <output>System.Drawing.Design.dll</output>
  1017. <built_sources></built_sources>
  1018. <library_output>./../../class/lib/net_4_x/System.Drawing.Design.dll</library_output>
  1019. <fx_version>4.5</fx_version>
  1020. <profile>net_4_x</profile>
  1021. <response>System.Drawing.Design.dll.sources</response>
  1022. </project>
  1023. <project dir="class/ICSharpCode.SharpZipLib" library="ICSharpCode.SharpZipLib-net_4_x">
  1024. <boot>false</boot>
  1025. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /r:mscorlib.dll -warn:1 -r:System -r:System.Xml</flags>
  1026. <output>ICSharpCode.SharpZipLib.dll</output>
  1027. <built_sources></built_sources>
  1028. <library_output>./../../class/lib/net_4_x/ICSharpCode.SharpZipLib.dll</library_output>
  1029. <fx_version>4.5</fx_version>
  1030. <profile>net_4_x</profile>
  1031. <response>ICSharpCode.SharpZipLib.dll.sources</response>
  1032. </project>
  1033. <project dir="class/IBM.Data.DB2" library="IBM.Data.DB2-net_4_x">
  1034. <boot>false</boot>
  1035. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /unsafe /r:mscorlib.dll -warn:1 -r:System -r:System.Xml -r:System.Data</flags>
  1036. <output>IBM.Data.DB2.dll</output>
  1037. <built_sources></built_sources>
  1038. <library_output>./../../class/lib/net_4_x/IBM.Data.DB2.dll</library_output>
  1039. <fx_version>4.5</fx_version>
  1040. <profile>net_4_x</profile>
  1041. <response>IBM.Data.DB2.dll.sources</response>
  1042. </project>
  1043. <project dir="class/CustomMarshalers" library="CustomMarshalers-net_4_x">
  1044. <boot>false</boot>
  1045. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /r:mscorlib.dll -r:System</flags>
  1046. <output>CustomMarshalers.dll</output>
  1047. <built_sources></built_sources>
  1048. <library_output>./../../class/lib/net_4_x/CustomMarshalers.dll</library_output>
  1049. <fx_version>4.5</fx_version>
  1050. <profile>net_4_x</profile>
  1051. <response>CustomMarshalers.dll.sources</response>
  1052. </project>
  1053. <project dir="class/SystemWebTestShim" library="SystemWebTestShim-net_4_x">
  1054. <boot>false</boot>
  1055. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -r:System.Web -r:System</flags>
  1056. <output>SystemWebTestShim.dll</output>
  1057. <built_sources></built_sources>
  1058. <library_output>./../../class/lib/net_4_x/SystemWebTestShim.dll</library_output>
  1059. <fx_version>4.5</fx_version>
  1060. <profile>net_4_x</profile>
  1061. <response>SystemWebTestShim.dll.sources</response>
  1062. </project>
  1063. <project dir="class/System.ServiceModel.Internals" library="System.ServiceModel.Internals-net_4_x">
  1064. <boot>false</boot>
  1065. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /unsafe -r:System -r:System.Core -r:System.Xml -r:System.Configuration</flags>
  1066. <output>System.ServiceModel.Internals.dll</output>
  1067. <built_sources></built_sources>
  1068. <library_output>./../../class/lib/net_4_x/System.ServiceModel.Internals.dll</library_output>
  1069. <fx_version>4.5</fx_version>
  1070. <profile>net_4_x</profile>
  1071. <response>System.ServiceModel.Internals.dll.sources</response>
  1072. </project>
  1073. <project dir="class/SMDiagnostics" library="SMDiagnostics-net_4_x">
  1074. <boot>false</boot>
  1075. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -r:System -r:System.Core -r:System.Xml -r:System.ServiceModel.Internals -r:System.Configuration</flags>
  1076. <output>SMDiagnostics.dll</output>
  1077. <built_sources></built_sources>
  1078. <library_output>./../../class/lib/net_4_x/SMDiagnostics.dll</library_output>
  1079. <fx_version>4.5</fx_version>
  1080. <profile>net_4_x</profile>
  1081. <response>SMDiagnostics.dll.sources</response>
  1082. </project>
  1083. <project dir="class/System.Runtime.Serialization" library="System.Runtime.Serialization-net_4_x">
  1084. <boot>false</boot>
  1085. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -unsafe -d:NO_DYNAMIC_CODEGEN /nowarn:168,169,219,414 /d:NET_3_0 -r:System -r:System.Xml -r:System.Core -r:System.ServiceModel.Internals -r:SMDiagnostics -r:System.Data -r:System.Configuration</flags>
  1086. <output>System.Runtime.Serialization.dll</output>
  1087. <built_sources></built_sources>
  1088. <library_output>./../../class/lib/net_4_x/System.Runtime.Serialization.dll</library_output>
  1089. <fx_version>4.5</fx_version>
  1090. <profile>net_4_x</profile>
  1091. <response>./../../build/deps/net_4_x_System.Runtime.Serialization.dll.sources</response>
  1092. </project>
  1093. <project dir="class/System.Runtime.Serialization" library="System.Runtime.Serialization-tests-net_4_x">
  1094. <boot>false</boot>
  1095. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r: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:System -r:System.Xml -r:System.Core -r:System.ServiceModel.Internals -r:SMDiagnostics -r:System.Data -r:System.Configuration /r:System.ServiceModel.dll /r:System.Web.Services.dll /resource:Test/Resources/WSDL/collections.wsdl /resource:Test/Resources/WSDL/custom-collections.wsdl</flags>
  1096. <output>System.Runtime.Serialization_test_net_4_x.dll</output>
  1097. <built_sources></built_sources>
  1098. <library_output>System.Runtime.Serialization_test_net_4_x.dll</library_output>
  1099. <fx_version>4.5</fx_version>
  1100. <profile>net_4_x</profile>
  1101. <response>./../../build/deps/System.Runtime.Serialization_test_net_4_x.dll.response</response>
  1102. </project>
  1103. <project dir="class/System.Xml.Linq" library="System.Xml.Linq-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 -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -r:System -r:System.Core -r:System.Xml -r:System.Runtime.Serialization</flags>
  1106. <output>System.Xml.Linq.dll</output>
  1107. <built_sources></built_sources>
  1108. <library_output>./../../class/lib/net_4_x/System.Xml.Linq.dll</library_output>
  1109. <fx_version>4.5</fx_version>
  1110. <profile>net_4_x</profile>
  1111. <response>System.Xml.Linq.dll.sources</response>
  1112. </project>
  1113. <project dir="class/System.Xml.Linq" library="System.Xml.Linq-tests-net_4_x">
  1114. <boot>false</boot>
  1115. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Xml.Linq.dll -r:System -r:System.Core -r:System.Xml -r:System.Runtime.Serialization</flags>
  1116. <output>System.Xml.Linq_test_net_4_x.dll</output>
  1117. <built_sources></built_sources>
  1118. <library_output>System.Xml.Linq_test_net_4_x.dll</library_output>
  1119. <fx_version>4.5</fx_version>
  1120. <profile>net_4_x</profile>
  1121. <response>./../../build/deps/System.Xml.Linq_test_net_4_x.dll.response</response>
  1122. </project>
  1123. <project dir="class/System.Data.Linq" library="System.Data.Linq-net_4_x">
  1124. <boot>false</boot>
  1125. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r: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:System -r:System.Core -r:System.Xml -r:System.Data -r:System.Runtime.Serialization</flags>
  1126. <output>System.Data.Linq.dll</output>
  1127. <built_sources></built_sources>
  1128. <library_output>./../../class/lib/net_4_x/System.Data.Linq.dll</library_output>
  1129. <fx_version>4.5</fx_version>
  1130. <profile>net_4_x</profile>
  1131. <response>System.Data.Linq.dll.sources</response>
  1132. </project>
  1133. <project dir="class/System.Data.Linq" library="System.Data.Linq-tests-net_4_x">
  1134. <boot>false</boot>
  1135. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r: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:System -r:System.Core -r:System.Xml -r:System.Data -r:System.Runtime.Serialization</flags>
  1136. <output>System.Data.Linq_test_net_4_x.dll</output>
  1137. <built_sources></built_sources>
  1138. <library_output>System.Data.Linq_test_net_4_x.dll</library_output>
  1139. <fx_version>4.5</fx_version>
  1140. <profile>net_4_x</profile>
  1141. <response>./../../build/deps/System.Data.Linq_test_net_4_x.dll.response</response>
  1142. </project>
  1143. <project dir="class/System.Web.Abstractions" library="System.Web.Abstractions-net_4_x">
  1144. <boot>false</boot>
  1145. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -r:System -r:System.Core -r:System.Web</flags>
  1146. <output>System.Web.Abstractions.dll</output>
  1147. <built_sources></built_sources>
  1148. <library_output>./../../class/lib/net_4_x/System.Web.Abstractions.dll</library_output>
  1149. <fx_version>4.5</fx_version>
  1150. <profile>net_4_x</profile>
  1151. <response>System.Web.Abstractions.dll.sources</response>
  1152. </project>
  1153. <project dir="class/System.Web.Abstractions" library="System.Web.Abstractions-tests-net_4_x">
  1154. <boot>false</boot>
  1155. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Web.Abstractions.dll -r:System -r:System.Core -r:System.Web</flags>
  1156. <output>System.Web.Abstractions_test_net_4_x.dll</output>
  1157. <built_sources></built_sources>
  1158. <library_output>System.Web.Abstractions_test_net_4_x.dll</library_output>
  1159. <fx_version>4.5</fx_version>
  1160. <profile>net_4_x</profile>
  1161. <response>./../../build/deps/System.Web.Abstractions_test_net_4_x.dll.response</response>
  1162. </project>
  1163. <project dir="class/System.Web.Routing" library="System.Web.Routing-net_4_x">
  1164. <boot>false</boot>
  1165. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -r:System -r:System.Core -r:System.Web -r:System.Web.Abstractions</flags>
  1166. <output>System.Web.Routing.dll</output>
  1167. <built_sources></built_sources>
  1168. <library_output>./../../class/lib/net_4_x/System.Web.Routing.dll</library_output>
  1169. <fx_version>4.5</fx_version>
  1170. <profile>net_4_x</profile>
  1171. <response>System.Web.Routing.dll.sources</response>
  1172. </project>
  1173. <project dir="class/System.Web.Routing" library="System.Web.Routing-tests-net_4_x">
  1174. <boot>false</boot>
  1175. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Web.Routing.dll -r:System -r:System.Core -r:System.Web -r:System.Web.Abstractions</flags>
  1176. <output>System.Web.Routing_test_net_4_x.dll</output>
  1177. <built_sources></built_sources>
  1178. <library_output>System.Web.Routing_test_net_4_x.dll</library_output>
  1179. <fx_version>4.5</fx_version>
  1180. <profile>net_4_x</profile>
  1181. <response>./../../build/deps/System.Web.Routing_test_net_4_x.dll.response</response>
  1182. </project>
  1183. <project dir="class/System.Runtime.DurableInstancing" library="System.Runtime.DurableInstancing-net_4_x">
  1184. <boot>false</boot>
  1185. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -r:System -r:System.Xml -r:System.Core -r:System.Xml.Linq -r:System.Transactions -r:System.ServiceModel.Internals -r:System.Runtime.Serialization</flags>
  1186. <output>System.Runtime.DurableInstancing.dll</output>
  1187. <built_sources></built_sources>
  1188. <library_output>./../../class/lib/net_4_x/System.Runtime.DurableInstancing.dll</library_output>
  1189. <fx_version>4.5</fx_version>
  1190. <profile>net_4_x</profile>
  1191. <response>System.Runtime.DurableInstancing.dll.sources</response>
  1192. </project>
  1193. <project dir="class/System.Runtime.DurableInstancing" library="System.Runtime.DurableInstancing-tests-net_4_x">
  1194. <boot>false</boot>
  1195. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Runtime.DurableInstancing.dll -r:System -r:System.Xml -r:System.Core -r:System.Xml.Linq -r:System.Transactions -r:System.ServiceModel.Internals -r:System.Runtime.Serialization</flags>
  1196. <output>System.Runtime.DurableInstancing_test_net_4_x.dll</output>
  1197. <built_sources></built_sources>
  1198. <library_output>System.Runtime.DurableInstancing_test_net_4_x.dll</library_output>
  1199. <fx_version>4.5</fx_version>
  1200. <profile>net_4_x</profile>
  1201. <response>./../../build/deps/System.Runtime.DurableInstancing_test_net_4_x.dll.response</response>
  1202. </project>
  1203. <project dir="class/System.IdentityModel" library="System.IdentityModel-net_4_x">
  1204. <boot>false</boot>
  1205. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /d:NET_3_0 -r:System.Web.ApplicationServices.dll -r:System -r:System.Xml -r:System.Security -r:System.Configuration -r:Mono.Security -r:System.Runtime.Serialization -r:System.Web</flags>
  1206. <output>System.IdentityModel.dll</output>
  1207. <built_sources></built_sources>
  1208. <library_output>./../../class/lib/net_4_x/System.IdentityModel.dll</library_output>
  1209. <fx_version>4.5</fx_version>
  1210. <profile>net_4_x</profile>
  1211. <response>System.IdentityModel.dll.sources</response>
  1212. </project>
  1213. <project dir="class/System.IdentityModel" library="System.IdentityModel-tests-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 -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.IdentityModel.dll /d:NET_3_0 -r:System.Web.ApplicationServices.dll -r:System -r:System.Xml -r:System.Security -r:System.Configuration -r:Mono.Security -r:System.Runtime.Serialization -r:System.Web</flags>
  1216. <output>System.IdentityModel_test_net_4_x.dll</output>
  1217. <built_sources></built_sources>
  1218. <library_output>System.IdentityModel_test_net_4_x.dll</library_output>
  1219. <fx_version>4.5</fx_version>
  1220. <profile>net_4_x</profile>
  1221. <response>./../../build/deps/System.IdentityModel_test_net_4_x.dll.response</response>
  1222. </project>
  1223. <project dir="class/System.IdentityModel.Selectors" library="System.IdentityModel.Selectors-net_4_x">
  1224. <boot>false</boot>
  1225. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /d:NET_3_0 -r:System -r:System.Xml -r:System.Security -r:System.Runtime.Serialization -r:System.IdentityModel</flags>
  1226. <output>System.IdentityModel.Selectors.dll</output>
  1227. <built_sources></built_sources>
  1228. <library_output>./../../class/lib/net_4_x/System.IdentityModel.Selectors.dll</library_output>
  1229. <fx_version>4.5</fx_version>
  1230. <profile>net_4_x</profile>
  1231. <response>System.IdentityModel.Selectors.dll.sources</response>
  1232. </project>
  1233. <project dir="class/System.ServiceModel" library="System.ServiceModel-net_4_x">
  1234. <boot>false</boot>
  1235. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r: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:System.ServiceModel.Activation.dll -r:System -r:System.Xml -r:System.Core -r:System.Runtime.Serialization -r:System.Configuration -r:System.Data -r:System.Security -r:System.IdentityModel -r:System.IdentityModel.Selectors -r:System.Transactions -r:System.Messaging -r:System.Web.Services -r:Mono.Security -r:System.Web -r:System.Web.ApplicationServices</flags>
  1236. <output>System.ServiceModel.dll</output>
  1237. <built_sources></built_sources>
  1238. <library_output>./../../class/lib/net_4_x/System.ServiceModel.dll</library_output>
  1239. <fx_version>4.5</fx_version>
  1240. <profile>net_4_x</profile>
  1241. <response>System.ServiceModel.dll.sources</response>
  1242. </project>
  1243. <project dir="class/System.ServiceModel" library="System.ServiceModel-tests-net_4_x">
  1244. <boot>false</boot>
  1245. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r: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:System -r:System.Xml -r:System.Core -r:System.Runtime.Serialization -r:System.Configuration -r:System.Data -r:System.Security -r:System.IdentityModel -r:System.IdentityModel.Selectors -r:System.Transactions -r:System.Messaging -r:System.Web.Services -r:Mono.Security -r:System.Web -r:System.Web.ApplicationServices</flags>
  1246. <output>System.ServiceModel_test_net_4_x.dll</output>
  1247. <built_sources></built_sources>
  1248. <library_output>System.ServiceModel_test_net_4_x.dll</library_output>
  1249. <fx_version>4.5</fx_version>
  1250. <profile>net_4_x</profile>
  1251. <response>./../../build/deps/System.ServiceModel_test_net_4_x.dll.response</response>
  1252. </project>
  1253. <project dir="class/System.ServiceModel" library="System.ServiceModel-plainservice-net_4_x">
  1254. <boot>false</boot>
  1255. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r: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:System -r:System.Xml -r:System.Core -r:System.Runtime.Serialization -r:System.Configuration -r:System.Data -r:System.Security -r:System.IdentityModel -r:System.IdentityModel.Selectors -r:System.Transactions -r:System.Messaging -r:System.Web.Services -r:Mono.Security -r:System.Web -r:System.Web.ApplicationServices</flags>
  1256. <output>System.ServiceModel.dll</output>
  1257. <built_sources></built_sources>
  1258. <library_output>./../../class/lib/net_4_x/plainservice/System.ServiceModel.dll</library_output>
  1259. <fx_version>4.5</fx_version>
  1260. <profile>net_4_x</profile>
  1261. <response>System.ServiceModel.dll.sources</response>
  1262. </project>
  1263. <project dir="class/System.ServiceModel" library="System.ServiceModel-tests-net_4_x">
  1264. <boot>false</boot>
  1265. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r: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:System -r:System.Xml -r:System.Core -r:System.Runtime.Serialization -r:System.Configuration -r:System.Data -r:System.Security -r:System.IdentityModel -r:System.IdentityModel.Selectors -r:System.Transactions -r:System.Messaging -r:System.Web.Services -r:Mono.Security -r:System.Web -r:System.Web.ApplicationServices</flags>
  1266. <output>System.ServiceModel_test_net_4_x.dll</output>
  1267. <built_sources></built_sources>
  1268. <library_output>System.ServiceModel_test_net_4_x.dll</library_output>
  1269. <fx_version>4.5</fx_version>
  1270. <profile>net_4_x</profile>
  1271. <response>./../../build/deps/System.ServiceModel_test_net_4_x.dll.response</response>
  1272. </project>
  1273. <project dir="class/System.Web.Extensions" library="System.Web.Extensions-net_4_x">
  1274. <boot>false</boot>
  1275. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -unsafe -define:NET_3_5 -define:SYSTEM_WEB_EXTENSIONS -r:mscorlib.dll -r:System.Web.ApplicationServices.dll /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:System -r:System.Core -r:System.Drawing -r:System.Data -r:System.Data.Linq -r:System.Xml -r:System.Web -r:System.Web.Services -r:System.Configuration -r:System.EnterpriseServices -r:System.ServiceModel</flags>
  1276. <output>System.Web.Extensions.dll</output>
  1277. <built_sources></built_sources>
  1278. <library_output>./../../class/lib/net_4_x/System.Web.Extensions.dll</library_output>
  1279. <fx_version>4.5</fx_version>
  1280. <profile>net_4_x</profile>
  1281. <response>System.Web.Extensions.dll.sources</response>
  1282. </project>
  1283. <project dir="class/System.Web.Extensions" library="System.Web.Extensions-tests-net_4_x">
  1284. <boot>false</boot>
  1285. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Web.Extensions.dll -unsafe -define:NET_3_5 -define:SYSTEM_WEB_EXTENSIONS -r:mscorlib.dll -r:System.Web.ApplicationServices.dll /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:System -r:System.Core -r:System.Drawing -r:System.Data -r:System.Data.Linq -r:System.Xml -r:System.Web -r:System.Web.Services -r:System.Configuration -r:System.EnterpriseServices -r:System.ServiceModel -doc:System.Web.Extensions_test_net_4_x.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 -r:SystemWebTestShim.dll -define:SYSTEM_WEB_EXTENSIONS</flags>
  1286. <output>System.Web.Extensions_test_net_4_x.dll</output>
  1287. <built_sources></built_sources>
  1288. <library_output>System.Web.Extensions_test_net_4_x.dll</library_output>
  1289. <fx_version>4.5</fx_version>
  1290. <profile>net_4_x</profile>
  1291. <response>./../../build/deps/System.Web.Extensions_test_net_4_x.dll.response</response>
  1292. </project>
  1293. <project dir="class/System.Web.Extensions.Design" library="System.Web.Extensions.Design-net_4_x">
  1294. <boot>false</boot>
  1295. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -define:NET_3_5 -r:System -r:System.Design -r:System.Drawing -r:System.Windows.Forms</flags>
  1296. <output>System.Web.Extensions.Design.dll</output>
  1297. <built_sources></built_sources>
  1298. <library_output>./../../class/lib/net_4_x/System.Web.Extensions.Design.dll</library_output>
  1299. <fx_version>4.5</fx_version>
  1300. <profile>net_4_x</profile>
  1301. <response>System.Web.Extensions.Design.dll.sources</response>
  1302. </project>
  1303. <project dir="class/System.Web.DynamicData" library="System.Web.DynamicData-net_4_x">
  1304. <boot>false</boot>
  1305. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -r:System -r:System.Core -r:System.ComponentModel.DataAnnotations -r:System.Data -r:System.Data.Linq -r:System.Drawing -r:System.Web -r:System.Web.Extensions -r:System.Web.Abstractions -r:System.Web.Routing -r:System.Web.ApplicationServices</flags>
  1306. <output>System.Web.DynamicData.dll</output>
  1307. <built_sources></built_sources>
  1308. <library_output>./../../class/lib/net_4_x/System.Web.DynamicData.dll</library_output>
  1309. <fx_version>4.5</fx_version>
  1310. <profile>net_4_x</profile>
  1311. <response>System.Web.DynamicData.dll.sources</response>
  1312. </project>
  1313. <project dir="class/System.Web.DynamicData" library="System.Web.DynamicData-tests-net_4_x">
  1314. <boot>false</boot>
  1315. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Web.DynamicData.dll -r:System -r:System.Core -r:System.ComponentModel.DataAnnotations -r:System.Data -r:System.Data.Linq -r:System.Drawing -r:System.Web -r:System.Web.Extensions -r:System.Web.Abstractions -r:System.Web.Routing -r:System.Web.ApplicationServices -r:System.ComponentModel.DataAnnotations.dll -r:System.Configuration.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 -r:SystemWebTestShim.dll -r:System.Xml.dll -r:System.Web.ApplicationServices.dll</flags>
  1316. <output>System.Web.DynamicData_test_net_4_x.dll</output>
  1317. <built_sources></built_sources>
  1318. <library_output>System.Web.DynamicData_test_net_4_x.dll</library_output>
  1319. <fx_version>4.5</fx_version>
  1320. <profile>net_4_x</profile>
  1321. <response>./../../build/deps/System.Web.DynamicData_test_net_4_x.dll.response</response>
  1322. </project>
  1323. <project dir="class/Mono.CSharp" library="Mono.CSharp-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 -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -r:System.Core -r:System.Xml -r:System</flags>
  1326. <output>Mono.CSharp.dll</output>
  1327. <built_sources></built_sources>
  1328. <library_output>./../../class/lib/net_4_x/Mono.CSharp.dll</library_output>
  1329. <fx_version>4.5</fx_version>
  1330. <profile>net_4_x</profile>
  1331. <response>Mono.CSharp.dll.sources</response>
  1332. </project>
  1333. <project dir="class/Mono.CSharp" library="Mono.CSharp-tests-net_4_x">
  1334. <boot>false</boot>
  1335. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/Mono.CSharp.dll -r:System.Core.dll</flags>
  1336. <output>Mono.CSharp_test_net_4_x.dll</output>
  1337. <built_sources></built_sources>
  1338. <library_output>Mono.CSharp_test_net_4_x.dll</library_output>
  1339. <fx_version>4.5</fx_version>
  1340. <profile>net_4_x</profile>
  1341. <response>./../../build/deps/Mono.CSharp_test_net_4_x.dll.response</response>
  1342. </project>
  1343. <project dir="class/System.Net" library="System.Net-net_4_x">
  1344. <boot>false</boot>
  1345. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -unsafe -d:NET_3_5 -nowarn:1720 -r:System -r:System.Core -r:System.Xml</flags>
  1346. <output>System.Net.dll</output>
  1347. <built_sources></built_sources>
  1348. <library_output>./../../class/lib/net_4_x/System.Net.dll</library_output>
  1349. <fx_version>4.5</fx_version>
  1350. <profile>net_4_x</profile>
  1351. <response>System.Net.dll.sources</response>
  1352. </project>
  1353. <project dir="class/System.Json" library="System.Json-net_4_x">
  1354. <boot>false</boot>
  1355. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -r:System -r:System.Xml -r:System.Core</flags>
  1356. <output>System.Json.dll</output>
  1357. <built_sources></built_sources>
  1358. <library_output>./../../class/lib/net_4_x/System.Json.dll</library_output>
  1359. <fx_version>4.5</fx_version>
  1360. <profile>net_4_x</profile>
  1361. <response>System.Json.dll.sources</response>
  1362. </project>
  1363. <project dir="class/System.Json" library="System.Json-tests-net_4_x">
  1364. <boot>false</boot>
  1365. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Json.dll -r:System -r:System.Xml -r:System.Core</flags>
  1366. <output>System.Json_test_net_4_x.dll</output>
  1367. <built_sources></built_sources>
  1368. <library_output>System.Json_test_net_4_x.dll</library_output>
  1369. <fx_version>4.5</fx_version>
  1370. <profile>net_4_x</profile>
  1371. <response>./../../build/deps/System.Json_test_net_4_x.dll.response</response>
  1372. </project>
  1373. <project dir="class/Microsoft.CSharp" library="Microsoft.CSharp-net_4_x">
  1374. <boot>false</boot>
  1375. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -r:System.Core -r:Mono.CSharp</flags>
  1376. <output>Microsoft.CSharp.dll</output>
  1377. <built_sources></built_sources>
  1378. <library_output>./../../class/lib/net_4_x/Microsoft.CSharp.dll</library_output>
  1379. <fx_version>4.5</fx_version>
  1380. <profile>net_4_x</profile>
  1381. <response>Microsoft.CSharp.dll.sources</response>
  1382. </project>
  1383. <project dir="class/System.Xaml" library="System.Xaml-net_4_x">
  1384. <boot>false</boot>
  1385. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -r:System -r:System.Xml -r:System.Core</flags>
  1386. <output>System.Xaml.dll</output>
  1387. <built_sources></built_sources>
  1388. <library_output>./../../class/lib/net_4_x/System.Xaml.dll</library_output>
  1389. <fx_version>4.5</fx_version>
  1390. <profile>net_4_x</profile>
  1391. <response>System.Xaml.dll.sources</response>
  1392. </project>
  1393. <project dir="class/System.Xaml" library="System.Xaml-tests-net_4_x">
  1394. <boot>false</boot>
  1395. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Xaml.dll -r:System -r:System.Xml -r:System.Core</flags>
  1396. <output>System.Xaml_test_net_4_x.dll</output>
  1397. <built_sources></built_sources>
  1398. <library_output>System.Xaml_test_net_4_x.dll</library_output>
  1399. <fx_version>4.5</fx_version>
  1400. <profile>net_4_x</profile>
  1401. <response>./../../build/deps/System.Xaml_test_net_4_x.dll.response</response>
  1402. </project>
  1403. <project dir="class/WindowsBase" library="WindowsBase-net_4_x">
  1404. <boot>false</boot>
  1405. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -unsafe -r:System -r:System.Xml -r:System.Xaml</flags>
  1406. <output>WindowsBase.dll</output>
  1407. <built_sources></built_sources>
  1408. <library_output>./../../class/lib/net_4_x/WindowsBase.dll</library_output>
  1409. <fx_version>4.5</fx_version>
  1410. <profile>net_4_x</profile>
  1411. <response>WindowsBase.dll.sources</response>
  1412. </project>
  1413. <project dir="class/WindowsBase" library="WindowsBase-tests-net_4_x">
  1414. <boot>false</boot>
  1415. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/WindowsBase.dll -unsafe -r:WindowsBase.dll -r:System.dll -r:System.Xml.dll -r:System.Core.dll -r:System.Xaml.dll</flags>
  1416. <output>WindowsBase_test_net_4_x.dll</output>
  1417. <built_sources></built_sources>
  1418. <library_output>WindowsBase_test_net_4_x.dll</library_output>
  1419. <fx_version>4.5</fx_version>
  1420. <profile>net_4_x</profile>
  1421. <response>./../../build/deps/WindowsBase_test_net_4_x.dll.response</response>
  1422. </project>
  1423. <project dir="class/System.ServiceModel.Activation" library="System.ServiceModel.Activation-net_4_x">
  1424. <boot>false</boot>
  1425. <flags>/codepage:65001 -lib:./../../class/lib/net_4_x/plainservice -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -r:System.Core -r:System -r:System.ServiceModel</flags>
  1426. <output>System.ServiceModel.Activation.dll</output>
  1427. <built_sources></built_sources>
  1428. <library_output>./../../class/lib/net_4_x/System.ServiceModel.Activation.dll</library_output>
  1429. <fx_version>4.5</fx_version>
  1430. <profile>net_4_x</profile>
  1431. <response>System.ServiceModel.Activation.dll.sources</response>
  1432. </project>
  1433. <project dir="class/System.ServiceModel.Routing" library="System.ServiceModel.Routing-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 -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -d:NET_3_5 -d:NET_3_0 -r:System.Configuration.dll -r:System -r:System.Xml -r:System.Runtime.Serialization -r:System.ServiceModel -r:System.Core -r:System.Configuration</flags>
  1436. <output>System.ServiceModel.Routing.dll</output>
  1437. <built_sources></built_sources>
  1438. <library_output>./../../class/lib/net_4_x/System.ServiceModel.Routing.dll</library_output>
  1439. <fx_version>4.5</fx_version>
  1440. <profile>net_4_x</profile>
  1441. <response>System.ServiceModel.Routing.dll.sources</response>
  1442. </project>
  1443. <project dir="class/System.ServiceModel.Discovery" library="System.ServiceModel.Discovery-net_4_x">
  1444. <boot>false</boot>
  1445. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -d:NET_3_5 -d:NET_3_0 -r:System.Configuration.dll -r:System -r:System.Xml -r:System.Runtime.Serialization -r:System.ServiceModel -r:System.Core -r:System.Xml.Linq -r:System.Configuration</flags>
  1446. <output>System.ServiceModel.Discovery.dll</output>
  1447. <built_sources></built_sources>
  1448. <library_output>./../../class/lib/net_4_x/System.ServiceModel.Discovery.dll</library_output>
  1449. <fx_version>4.5</fx_version>
  1450. <profile>net_4_x</profile>
  1451. <response>System.ServiceModel.Discovery.dll.sources</response>
  1452. </project>
  1453. <project dir="class/System.ServiceModel.Discovery" library="System.ServiceModel.Discovery-tests-net_4_x">
  1454. <boot>false</boot>
  1455. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.ServiceModel.Discovery.dll -d:NET_3_5 -d:NET_3_0 -r:System.Configuration.dll -r:System -r:System.Xml -r:System.Runtime.Serialization -r:System.ServiceModel -r:System.Core -r:System.Xml.Linq -r:System.Configuration</flags>
  1456. <output>System.ServiceModel.Discovery_test_net_4_x.dll</output>
  1457. <built_sources></built_sources>
  1458. <library_output>System.ServiceModel.Discovery_test_net_4_x.dll</library_output>
  1459. <fx_version>4.5</fx_version>
  1460. <profile>net_4_x</profile>
  1461. <response>./../../build/deps/System.ServiceModel.Discovery_test_net_4_x.dll.response</response>
  1462. </project>
  1463. <project dir="class/System.Runtime.Caching" library="System.Runtime.Caching-net_4_x">
  1464. <boot>false</boot>
  1465. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -nowarn:414 -r:System -r:System.Data -r:System.Configuration -r:System.Core</flags>
  1466. <output>System.Runtime.Caching.dll</output>
  1467. <built_sources></built_sources>
  1468. <library_output>./../../class/lib/net_4_x/System.Runtime.Caching.dll</library_output>
  1469. <fx_version>4.5</fx_version>
  1470. <profile>net_4_x</profile>
  1471. <response>System.Runtime.Caching.dll.sources</response>
  1472. </project>
  1473. <project dir="class/System.Runtime.Caching" library="System.Runtime.Caching-tests-net_4_x">
  1474. <boot>false</boot>
  1475. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Runtime.Caching.dll -nowarn:414 -r:System -r:System.Data -r:System.Configuration -r:System.Core</flags>
  1476. <output>System.Runtime.Caching_test_net_4_x.dll</output>
  1477. <built_sources></built_sources>
  1478. <library_output>System.Runtime.Caching_test_net_4_x.dll</library_output>
  1479. <fx_version>4.5</fx_version>
  1480. <profile>net_4_x</profile>
  1481. <response>./../../build/deps/System.Runtime.Caching_test_net_4_x.dll.response</response>
  1482. </project>
  1483. <project dir="class/Microsoft.Web.Infrastructure" library="Microsoft.Web.Infrastructure-net_4_x">
  1484. <boot>false</boot>
  1485. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -r:System -r:System.Configuration -r:System.Web</flags>
  1486. <output>Microsoft.Web.Infrastructure.dll</output>
  1487. <built_sources></built_sources>
  1488. <library_output>./../../class/lib/net_4_x/Microsoft.Web.Infrastructure.dll</library_output>
  1489. <fx_version>4.5</fx_version>
  1490. <profile>net_4_x</profile>
  1491. <response>Microsoft.Web.Infrastructure.dll.sources</response>
  1492. </project>
  1493. <project dir="class/System.ServiceModel.Web" library="System.ServiceModel.Web-net_4_x">
  1494. <boot>false</boot>
  1495. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -d:NET_3_5 -d:NET_3_0 -r:System -r:System.Xml -r:System.Runtime.Serialization -r:System.ServiceModel -r:System.Core -r:System.Configuration -r:System.Web.Extensions -r:System.ServiceModel.Activation</flags>
  1496. <output>System.ServiceModel.Web.dll</output>
  1497. <built_sources></built_sources>
  1498. <library_output>./../../class/lib/net_4_x/System.ServiceModel.Web.dll</library_output>
  1499. <fx_version>4.5</fx_version>
  1500. <profile>net_4_x</profile>
  1501. <response>System.ServiceModel.Web.dll.sources</response>
  1502. </project>
  1503. <project dir="class/System.ServiceModel.Web" library="System.ServiceModel.Web-tests-net_4_x">
  1504. <boot>false</boot>
  1505. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.ServiceModel.Web.dll -d:NET_3_5 -d:NET_3_0 -r:System -r:System.Xml -r:System.Runtime.Serialization -r:System.ServiceModel -r:System.Core -r:System.Configuration -r:System.Web.Extensions -r:System.ServiceModel.Activation</flags>
  1506. <output>System.ServiceModel.Web_test_net_4_x.dll</output>
  1507. <built_sources></built_sources>
  1508. <library_output>System.ServiceModel.Web_test_net_4_x.dll</library_output>
  1509. <fx_version>4.5</fx_version>
  1510. <profile>net_4_x</profile>
  1511. <response>./../../build/deps/System.ServiceModel.Web_test_net_4_x.dll.response</response>
  1512. </project>
  1513. <project dir="class/System.Net.Http" library="System.Net.Http-net_4_x">
  1514. <boot>false</boot>
  1515. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -r:System.Core -r:System</flags>
  1516. <output>System.Net.Http.dll</output>
  1517. <built_sources></built_sources>
  1518. <library_output>./../../class/lib/net_4_x/System.Net.Http.dll</library_output>
  1519. <fx_version>4.5</fx_version>
  1520. <profile>net_4_x</profile>
  1521. <response>System.Net.Http.dll.sources</response>
  1522. </project>
  1523. <project dir="class/System.Net.Http" library="System.Net.Http-tests-net_4_x">
  1524. <boot>false</boot>
  1525. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Net.Http.dll -r:System.dll -r:System.Core.dll</flags>
  1526. <output>System.Net.Http_test_net_4_x.dll</output>
  1527. <built_sources></built_sources>
  1528. <library_output>System.Net.Http_test_net_4_x.dll</library_output>
  1529. <fx_version>4.5</fx_version>
  1530. <profile>net_4_x</profile>
  1531. <response>./../../build/deps/System.Net.Http_test_net_4_x.dll.response</response>
  1532. </project>
  1533. <project dir="class/System.Net.Http.WebRequest" library="System.Net.Http.WebRequest-net_4_x">
  1534. <boot>false</boot>
  1535. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -r:System.Net.Http -r:System</flags>
  1536. <output>System.Net.Http.WebRequest.dll</output>
  1537. <built_sources></built_sources>
  1538. <library_output>./../../class/lib/net_4_x/System.Net.Http.WebRequest.dll</library_output>
  1539. <fx_version>4.5</fx_version>
  1540. <profile>net_4_x</profile>
  1541. <response>System.Net.Http.WebRequest.dll.sources</response>
  1542. </project>
  1543. <project dir="class/System.Web.Razor" library="System.Web.Razor-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 -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /warn:1 /keyfile:../winfx.pub -delaysign /d:ASPNETWEBPAGES /resource:System.Web.Razor.Resources.RazorResources.resources /resource:System.Web.Razor.Common.CommonResources.resources -r:System -r:System.Core</flags>
  1546. <output>System.Web.Razor.dll</output>
  1547. <built_sources></built_sources>
  1548. <library_output>./../../class/lib/net_4_x/System.Web.Razor.dll</library_output>
  1549. <fx_version>4.5</fx_version>
  1550. <profile>net_4_x</profile>
  1551. <response>System.Web.Razor.dll.sources</response>
  1552. </project>
  1553. <project dir="class/System.Web.WebPages.Deployment" library="System.Web.WebPages.Deployment-net_4_x">
  1554. <boot>false</boot>
  1555. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /warn:1 /keyfile:../winfx.pub -delaysign /d:ASPNETWEBPAGES /resource:System.Web.WebPages.Deployment.Common.CommonResources.resources /resource:System.Web.WebPages.Deployment.Resources.ConfigurationResources.resources -r:System -r:System.Core -r:System.Configuration -r:System.Web -r:Microsoft.Web.Infrastructure</flags>
  1556. <output>System.Web.WebPages.Deployment.dll</output>
  1557. <built_sources></built_sources>
  1558. <library_output>./../../class/lib/net_4_x/System.Web.WebPages.Deployment.dll</library_output>
  1559. <fx_version>4.5</fx_version>
  1560. <profile>net_4_x</profile>
  1561. <response>System.Web.WebPages.Deployment.dll.sources</response>
  1562. </project>
  1563. <project dir="class/System.Web.WebPages" library="System.Web.WebPages-net_4_x">
  1564. <boot>false</boot>
  1565. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /warn:1 /keyfile:../winfx.pub /delaysign /d:ASPNETWEBPAGES /resource:System.Web.WebPages.Resources.WebPageResources.resources /resource:System.Web.WebPages.Common.CommonResources.resources -r:Microsoft.CSharp -r:Microsoft.Web.Infrastructure -r:System -r:System.ComponentModel.DataAnnotations -r:System.Configuration -r:System.Core -r:System.Data.Linq -r:System.Web -r:System.Web.WebPages.Deployment -r:System.Web.Razor -r:System.Xml -r:System.Xml.Linq</flags>
  1566. <output>System.Web.WebPages.dll</output>
  1567. <built_sources></built_sources>
  1568. <library_output>./../../class/lib/net_4_x/System.Web.WebPages.dll</library_output>
  1569. <fx_version>4.5</fx_version>
  1570. <profile>net_4_x</profile>
  1571. <response>System.Web.WebPages.dll.sources</response>
  1572. </project>
  1573. <project dir="class/System.Web.WebPages.Razor" library="System.Web.WebPages.Razor-net_4_x">
  1574. <boot>false</boot>
  1575. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /warn:1 /keyfile:../winfx.pub /delaysign /d:ASPNETWEBPAGES /resource:System.Web.WebPages.Razor.Resources.RazorWebResources.resources /resource:System.Web.WebPages.Razor.Common.CommonResources.resources -r:System -r:System.Core -r:System.Configuration -r:System.Web -r:System.Web.WebPages -r:System.Web.Razor</flags>
  1576. <output>System.Web.WebPages.Razor.dll</output>
  1577. <built_sources></built_sources>
  1578. <library_output>./../../class/lib/net_4_x/System.Web.WebPages.Razor.dll</library_output>
  1579. <fx_version>4.5</fx_version>
  1580. <profile>net_4_x</profile>
  1581. <response>System.Web.WebPages.Razor.dll.sources</response>
  1582. </project>
  1583. <project dir="class/System.Web.Mvc3" library="System.Web.Mvc3-net_4_x">
  1584. <boot>false</boot>
  1585. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /warn:1 /keyfile:../winfx.pub /d:MONO /delaysign /resource:Mvc/Resources/MvcResources.resources,System.Web.Mvc.Resources.MvcResources.resources -r:Microsoft.Web.Infrastructure -r:System -r:System.Core -r:System.Configuration -r:System.Data -r:System.Xml -r:System.Web -r:System.Web.Abstractions -r:System.Web.Routing -r:System.Web.Extensions -r:System.ComponentModel.DataAnnotations -r:System.Data.Linq -r:System.Runtime.Caching -r:System.Web.Razor -r:System.Web.WebPages.Razor -r:System.Web.WebPages</flags>
  1586. <output>System.Web.Mvc.dll</output>
  1587. <built_sources></built_sources>
  1588. <library_output>./../../class/lib/net_4_x/System.Web.Mvc.dll</library_output>
  1589. <fx_version>4.5</fx_version>
  1590. <profile>net_4_x</profile>
  1591. <response>System.Web.Mvc3.dll.sources</response>
  1592. </project>
  1593. <project dir="class/System.Net.Http.Formatting" library="System.Net.Http.Formatting-net_4_x">
  1594. <boot>false</boot>
  1595. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -d:ASPNETMVC -keyfile:../winfx.pub -delaysign -resource:System.Net.Http.Properties.CommonWebApiResources.resources -resource:System.Net.Http.Properties.Resources.resources -r:System.Core -r:System -r:System.Net.Http -r:System.Xml -r:System.Runtime.Serialization -r:System.Xml.Linq -r:System.Data -r:System.Configuration</flags>
  1596. <output>System.Net.Http.Formatting.dll</output>
  1597. <built_sources></built_sources>
  1598. <library_output>./../../class/lib/net_4_x/System.Net.Http.Formatting.dll</library_output>
  1599. <fx_version>4.5</fx_version>
  1600. <profile>net_4_x</profile>
  1601. <response>System.Net.Http.Formatting.dll.sources</response>
  1602. </project>
  1603. <project dir="class/System.Web.Http" library="System.Web.Http-net_4_x">
  1604. <boot>false</boot>
  1605. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -d:ASPNETMVC -keyfile:../winfx.pub -delaysign -resource:System.Web.Http.Properties.CommonWebApiResources.resources -resource:System.Web.Http.Properties.SRResources.resources -r:System.Core -r:System -r:System.Xml -r:System.Net.Http -r:System.ComponentModel.DataAnnotations -r:System.Net.Http.Formatting -r:System.Runtime.Caching -r:System.Runtime.Serialization -r:System.Data.Linq</flags>
  1606. <output>System.Web.Http.dll</output>
  1607. <built_sources></built_sources>
  1608. <library_output>./../../class/lib/net_4_x/System.Web.Http.dll</library_output>
  1609. <fx_version>4.5</fx_version>
  1610. <profile>net_4_x</profile>
  1611. <response>System.Web.Http.dll.sources</response>
  1612. </project>
  1613. <project dir="class/System.Web.Http.SelfHost" library="System.Web.Http.SelfHost-net_4_x">
  1614. <boot>false</boot>
  1615. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -d:ASPNETMVC -keyfile:../winfx.pub -delaysign -r:System.Core -r:System -r:System.Xml -r:System.Configuration -r:System.Net.Http -r:System.Runtime.Serialization -r:System.ServiceModel -r:System.IdentityModel -r:System.Web.Http -r:System.Net.Http.Formatting</flags>
  1616. <output>System.Web.Http.SelfHost.dll</output>
  1617. <built_sources></built_sources>
  1618. <library_output>./../../class/lib/net_4_x/System.Web.Http.SelfHost.dll</library_output>
  1619. <fx_version>4.5</fx_version>
  1620. <profile>net_4_x</profile>
  1621. <response>System.Web.Http.SelfHost.dll.sources</response>
  1622. </project>
  1623. <project dir="class/System.Web.Http.WebHost" library="System.Web.Http.WebHost-net_4_x">
  1624. <boot>false</boot>
  1625. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -d:ASPNETMVC -keyfile:../winfx.pub -delaysign -r:System.Core -r:System -r:System.Xml -r:System.Configuration -r:System.Net.Http -r:System.Runtime.Serialization -r:System.ServiceModel -r:System.IdentityModel -r:System.Web.Http -r:System.Net.Http.Formatting -r:System.Web.Routing -r:System.Web -r:Microsoft.Web.Infrastructure</flags>
  1626. <output>System.Web.Http.WebHost.dll</output>
  1627. <built_sources></built_sources>
  1628. <library_output>./../../class/lib/net_4_x/System.Web.Http.WebHost.dll</library_output>
  1629. <fx_version>4.5</fx_version>
  1630. <profile>net_4_x</profile>
  1631. <response>System.Web.Http.WebHost.dll.sources</response>
  1632. </project>
  1633. <project dir="class/Microsoft.Build.Framework" library="Microsoft.Build.Framework-net_4_x">
  1634. <boot>false</boot>
  1635. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /r:mscorlib.dll /r:System.dll -r:System</flags>
  1636. <output>Microsoft.Build.Framework.dll</output>
  1637. <built_sources></built_sources>
  1638. <library_output>./../../class/lib/net_4_x/Microsoft.Build.Framework.dll</library_output>
  1639. <fx_version>4.5</fx_version>
  1640. <profile>net_4_x</profile>
  1641. <response>Microsoft.Build.Framework.dll.sources</response>
  1642. </project>
  1643. <project dir="class/Microsoft.Build.Framework" library="Microsoft.Build.Framework-tests-net_4_x">
  1644. <boot>false</boot>
  1645. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/Microsoft.Build.Framework.dll</flags>
  1646. <output>Microsoft.Build.Framework_test_net_4_x.dll</output>
  1647. <built_sources></built_sources>
  1648. <library_output>Microsoft.Build.Framework_test_net_4_x.dll</library_output>
  1649. <fx_version>4.5</fx_version>
  1650. <profile>net_4_x</profile>
  1651. <response>./../../build/deps/Microsoft.Build.Framework_test_net_4_x.dll.response</response>
  1652. </project>
  1653. <project dir="class/Microsoft.Build.Utilities" library="Microsoft.Build.Utilities-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 -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /r:mscorlib.dll /r:System.dll /r:System.Core.dll /r:System.Xml.dll /r:./../../class/lib/net_4_x/Microsoft.Build.Framework.dll -r:System -r:System.Core -r:System.Xml</flags>
  1656. <output>Microsoft.Build.Utilities.v4.0.dll</output>
  1657. <built_sources></built_sources>
  1658. <library_output>./../../class/lib/net_4_x/Microsoft.Build.Utilities.v4.0.dll</library_output>
  1659. <fx_version>4.5</fx_version>
  1660. <profile>net_4_x</profile>
  1661. <response>Microsoft.Build.Utilities.dll.sources</response>
  1662. </project>
  1663. <project dir="class/Microsoft.Build.Utilities" library="Microsoft.Build.Utilities-tests-net_4_x">
  1664. <boot>false</boot>
  1665. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/Microsoft.Build.Utilities.v4.0.dll /r:./../../class/lib/net_4_x/Microsoft.Build.Engine.dll /r:./../../class/lib/net_4_x/Microsoft.Build.Framework.dll -r:System.dll -r:System.Core.dll</flags>
  1666. <output>Microsoft.Build.Utilities_test_net_4_x.dll</output>
  1667. <built_sources></built_sources>
  1668. <library_output>Microsoft.Build.Utilities_test_net_4_x.dll</library_output>
  1669. <fx_version>4.5</fx_version>
  1670. <profile>net_4_x</profile>
  1671. <response>./../../build/deps/Microsoft.Build.Utilities_test_net_4_x.dll.response</response>
  1672. </project>
  1673. <project dir="class/Microsoft.Build.Engine" library="Microsoft.Build.Engine-net_4_x">
  1674. <boot>false</boot>
  1675. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /r:mscorlib.dll /r:System.dll /r:System.Core.dll /r: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 -r:System -r:System.Core -r:System.Xml</flags>
  1676. <output>Microsoft.Build.Engine.dll</output>
  1677. <built_sources></built_sources>
  1678. <library_output>./../../class/lib/net_4_x/Microsoft.Build.Engine.dll</library_output>
  1679. <fx_version>4.5</fx_version>
  1680. <profile>net_4_x</profile>
  1681. <response>Microsoft.Build.Engine.dll.sources</response>
  1682. </project>
  1683. <project dir="class/Microsoft.Build.Engine" library="Microsoft.Build.Engine-tests-net_4_x">
  1684. <boot>false</boot>
  1685. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/Microsoft.Build.Engine.dll /r:./../../class/lib/net_4_x/Microsoft.Build.Framework.dll /r:./../../class/lib/net_4_x/Microsoft.Build.Utilities.v4.0.dll /r:System.Xml.dll</flags>
  1686. <output>Microsoft.Build.Engine_test_net_4_x.dll</output>
  1687. <built_sources></built_sources>
  1688. <library_output>Microsoft.Build.Engine_test_net_4_x.dll</library_output>
  1689. <fx_version>4.5</fx_version>
  1690. <profile>net_4_x</profile>
  1691. <response>./../../build/deps/Microsoft.Build.Engine_test_net_4_x.dll.response</response>
  1692. </project>
  1693. <project dir="class/Mono.XBuild.Tasks" library="Mono.XBuild.Tasks-net_4_x">
  1694. <boot>false</boot>
  1695. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /r:mscorlib.dll /r:System.dll /r:System.Xml.dll -r:System -r:System.Xml</flags>
  1696. <output>Mono.XBuild.Tasks.dll</output>
  1697. <built_sources></built_sources>
  1698. <library_output>./../../class/lib/net_4_x/Mono.XBuild.Tasks.dll</library_output>
  1699. <fx_version>4.5</fx_version>
  1700. <profile>net_4_x</profile>
  1701. <response>Mono.XBuild.Tasks.dll.sources</response>
  1702. </project>
  1703. <project dir="class/Mono.XBuild.Tasks" library="Mono.XBuild.Tasks-tests-net_4_x">
  1704. <boot>false</boot>
  1705. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/Mono.XBuild.Tasks.dll</flags>
  1706. <output>Mono.XBuild.Tasks_test_net_4_x.dll</output>
  1707. <built_sources></built_sources>
  1708. <library_output>Mono.XBuild.Tasks_test_net_4_x.dll</library_output>
  1709. <fx_version>4.5</fx_version>
  1710. <profile>net_4_x</profile>
  1711. <response>./../../build/deps/Mono.XBuild.Tasks_test_net_4_x.dll.response</response>
  1712. </project>
  1713. <project dir="class/Microsoft.Build.Tasks" library="Microsoft.Build.Tasks-net_4_x">
  1714. <boot>false</boot>
  1715. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /r:mscorlib.dll /r:System.dll /r:System.Core.dll /r:System.Xml.dll /r: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 -r:System -r:System.Core -r:System.Xml -r:System.Windows.Forms</flags>
  1716. <output>Microsoft.Build.Tasks.v4.0.dll</output>
  1717. <built_sources></built_sources>
  1718. <library_output>./../../class/lib/net_4_x/Microsoft.Build.Tasks.v4.0.dll</library_output>
  1719. <fx_version>4.5</fx_version>
  1720. <profile>net_4_x</profile>
  1721. <response>Microsoft.Build.Tasks.dll.sources</response>
  1722. </project>
  1723. <project dir="class/Microsoft.Build.Tasks" library="Microsoft.Build.Tasks-tests-net_4_x">
  1724. <boot>false</boot>
  1725. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/Microsoft.Build.Tasks.v4.0.dll /r:System.Xml.dll /r:./../../class/lib/net_4_x/Microsoft.Build.Engine.dll /r:./../../class/lib/net_4_x/Microsoft.Build.Framework.dll /r:./../../class/lib/net_4_x/Mono.XBuild.Tasks.dll /r:./../../class/lib/net_4_x/Microsoft.Build.Utilities.v4.0.dll /r:System.Core.dll /r:Microsoft.Build.dll</flags>
  1726. <output>Microsoft.Build.Tasks_test_net_4_x.dll</output>
  1727. <built_sources></built_sources>
  1728. <library_output>Microsoft.Build.Tasks_test_net_4_x.dll</library_output>
  1729. <fx_version>4.5</fx_version>
  1730. <profile>net_4_x</profile>
  1731. <response>./../../build/deps/Microsoft.Build.Tasks_test_net_4_x.dll.response</response>
  1732. </project>
  1733. <project dir="class/Microsoft.Build" library="Microsoft.Build-net_4_x">
  1734. <boot>false</boot>
  1735. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /r:mscorlib.dll /r:System.dll /r:System.Core.dll /r:System.Xml.dll /r:Microsoft.Build.Engine.dll /r:Microsoft.Build.Framework.dll /d:MICROSOFT_BUILD_DLL -r:System -r:System.Core -r:System.Xml -r:Microsoft.Build.Engine -r:Microsoft.Build.Framework</flags>
  1736. <output>Microsoft.Build.dll</output>
  1737. <built_sources>Microsoft.Build.Internal/ExpressionParser.cs</built_sources>
  1738. <library_output>./../../class/lib/net_4_x/Microsoft.Build.dll</library_output>
  1739. <fx_version>4.5</fx_version>
  1740. <profile>net_4_x</profile>
  1741. <response>Microsoft.Build.dll.sources</response>
  1742. </project>
  1743. <project dir="class/Microsoft.Build" library="Microsoft.Build-tests-net_4_x">
  1744. <boot>false</boot>
  1745. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/Microsoft.Build.dll /r:mscorlib.dll /r:System.dll /r:System.Core.dll /r:System.Xml.dll /r:Microsoft.Build.Engine.dll /r:Microsoft.Build.Framework.dll /d:MICROSOFT_BUILD_DLL -r:System -r:System.Core -r:System.Xml -r:Microsoft.Build.Engine -r:Microsoft.Build.Framework /r:Microsoft.Build.Utilities.v4.0.dll</flags>
  1746. <output>Microsoft.Build_test_net_4_x.dll</output>
  1747. <built_sources>Microsoft.Build.Internal/ExpressionParser.cs</built_sources>
  1748. <library_output>Microsoft.Build_test_net_4_x.dll</library_output>
  1749. <fx_version>4.5</fx_version>
  1750. <profile>net_4_x</profile>
  1751. <response>./../../build/deps/Microsoft.Build_test_net_4_x.dll.response</response>
  1752. </project>
  1753. <project dir="class/PEAPI" library="PEAPI-net_4_x">
  1754. <boot>false</boot>
  1755. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /r:mscorlib.dll -nowarn:414,618 -r:System</flags>
  1756. <output>PEAPI.dll</output>
  1757. <built_sources></built_sources>
  1758. <library_output>./../../class/lib/net_4_x/PEAPI.dll</library_output>
  1759. <fx_version>4.5</fx_version>
  1760. <profile>net_4_x</profile>
  1761. <response>PEAPI.dll.sources</response>
  1762. </project>
  1763. <project dir="class/I18N/Common" library="I18N-net_4_x">
  1764. <boot>false</boot>
  1765. <flags>/codepage:65001 /r:mscorlib.dll /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 -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  1766. <output>I18N.dll</output>
  1767. <built_sources></built_sources>
  1768. <library_output>./../../../class/lib/net_4_x/I18N.dll</library_output>
  1769. <fx_version>4.5</fx_version>
  1770. <profile>net_4_x</profile>
  1771. <response>I18N.dll.sources</response>
  1772. </project>
  1773. <project dir="class/I18N/West" library="I18N.West-net_4_x">
  1774. <boot>false</boot>
  1775. <flags>/codepage:65001 /r:mscorlib.dll /r:I18N.dll /unsafe -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  1776. <output>I18N.West.dll</output>
  1777. <built_sources></built_sources>
  1778. <library_output>./../../../class/lib/net_4_x/I18N.West.dll</library_output>
  1779. <fx_version>4.5</fx_version>
  1780. <profile>net_4_x</profile>
  1781. <response>I18N.West.dll.sources</response>
  1782. </project>
  1783. <project dir="class/I18N/West" library="I18N.West-tests-net_4_x">
  1784. <boot>false</boot>
  1785. <flags>/codepage:65001 /r:mscorlib.dll /r:I18N.dll /unsafe -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../../class/lib/net_4_x/I18N.West.dll</flags>
  1786. <output>I18N.West_test_net_4_x.dll</output>
  1787. <built_sources></built_sources>
  1788. <library_output>I18N.West_test_net_4_x.dll</library_output>
  1789. <fx_version>4.5</fx_version>
  1790. <profile>net_4_x</profile>
  1791. <response>./../../../build/deps/I18N.West_test_net_4_x.dll.response</response>
  1792. </project>
  1793. <project dir="class/I18N/MidEast" library="I18N.MidEast-net_4_x">
  1794. <boot>false</boot>
  1795. <flags>/codepage:65001 /r:mscorlib.dll /r:I18N.dll /unsafe -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  1796. <output>I18N.MidEast.dll</output>
  1797. <built_sources></built_sources>
  1798. <library_output>./../../../class/lib/net_4_x/I18N.MidEast.dll</library_output>
  1799. <fx_version>4.5</fx_version>
  1800. <profile>net_4_x</profile>
  1801. <response>I18N.MidEast.dll.sources</response>
  1802. </project>
  1803. <project dir="class/I18N/MidEast" library="I18N.MidEast-tests-net_4_x">
  1804. <boot>false</boot>
  1805. <flags>/codepage:65001 /r:mscorlib.dll /r:I18N.dll /unsafe -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../../class/lib/net_4_x/I18N.MidEast.dll</flags>
  1806. <output>I18N.MidEast_test_net_4_x.dll</output>
  1807. <built_sources></built_sources>
  1808. <library_output>I18N.MidEast_test_net_4_x.dll</library_output>
  1809. <fx_version>4.5</fx_version>
  1810. <profile>net_4_x</profile>
  1811. <response>./../../../build/deps/I18N.MidEast_test_net_4_x.dll.response</response>
  1812. </project>
  1813. <project dir="class/I18N/Other" library="I18N.Other-net_4_x">
  1814. <boot>false</boot>
  1815. <flags>/codepage:65001 /r:mscorlib.dll /r:I18N.dll /unsafe -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  1816. <output>I18N.Other.dll</output>
  1817. <built_sources></built_sources>
  1818. <library_output>./../../../class/lib/net_4_x/I18N.Other.dll</library_output>
  1819. <fx_version>4.5</fx_version>
  1820. <profile>net_4_x</profile>
  1821. <response>I18N.Other.dll.sources</response>
  1822. </project>
  1823. <project dir="class/I18N/Rare" library="I18N.Rare-net_4_x">
  1824. <boot>false</boot>
  1825. <flags>/codepage:65001 /r:mscorlib.dll /r:I18N.dll /unsafe -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  1826. <output>I18N.Rare.dll</output>
  1827. <built_sources></built_sources>
  1828. <library_output>./../../../class/lib/net_4_x/I18N.Rare.dll</library_output>
  1829. <fx_version>4.5</fx_version>
  1830. <profile>net_4_x</profile>
  1831. <response>I18N.Rare.dll.sources</response>
  1832. </project>
  1833. <project dir="class/I18N/CJK" library="I18N.CJK-net_4_x">
  1834. <boot>false</boot>
  1835. <flags>/codepage:65001 /unsafe /resource:big5.table /resource:gb2312.table /resource:jis.table /resource:ks.table /resource:gb18030.table /r:mscorlib.dll /r:I18N.dll /define:DISABLE_UNSAFE -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  1836. <output>I18N.CJK.dll</output>
  1837. <built_sources></built_sources>
  1838. <library_output>./../../../class/lib/net_4_x/I18N.CJK.dll</library_output>
  1839. <fx_version>4.5</fx_version>
  1840. <profile>net_4_x</profile>
  1841. <response>I18N.CJK.dll.sources</response>
  1842. </project>
  1843. <project dir="class/I18N/CJK" library="I18N.CJK-tests-net_4_x">
  1844. <boot>false</boot>
  1845. <flags>/codepage:65001 /unsafe /resource:big5.table /resource:gb2312.table /resource:jis.table /resource:ks.table /resource:gb18030.table /r:mscorlib.dll /r:I18N.dll /define:DISABLE_UNSAFE -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../../class/lib/net_4_x/I18N.CJK.dll</flags>
  1846. <output>I18N.CJK_test_net_4_x.dll</output>
  1847. <built_sources></built_sources>
  1848. <library_output>I18N.CJK_test_net_4_x.dll</library_output>
  1849. <fx_version>4.5</fx_version>
  1850. <profile>net_4_x</profile>
  1851. <response>./../../../build/deps/I18N.CJK_test_net_4_x.dll.response</response>
  1852. </project>
  1853. <project dir="class/Mono.Http" library="Mono.Http-net_4_x">
  1854. <boot>false</boot>
  1855. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -r:mscorlib.dll -nowarn:618 -r:System -r:System.Xml -r:System.Web -r:ICSharpCode.SharpZipLib -r:Mono.Security</flags>
  1856. <output>Mono.Http.dll</output>
  1857. <built_sources></built_sources>
  1858. <library_output>./../../class/lib/net_4_x/Mono.Http.dll</library_output>
  1859. <fx_version>4.5</fx_version>
  1860. <profile>net_4_x</profile>
  1861. <response>Mono.Http.dll.sources</response>
  1862. </project>
  1863. <project dir="class/Mono.Cairo" library="Mono.Cairo-net_4_x">
  1864. <boot>false</boot>
  1865. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  1866. <output>Mono.Cairo.dll</output>
  1867. <built_sources></built_sources>
  1868. <library_output>./../../class/lib/net_4_x/Mono.Cairo.dll</library_output>
  1869. <fx_version>4.5</fx_version>
  1870. <profile>net_4_x</profile>
  1871. <response>Mono.Cairo.dll.sources</response>
  1872. </project>
  1873. <project dir="class/Mono.Cecil" library="Mono.Cecil-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 -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /r:mscorlib.dll -keyfile:../mono.snk -d:NET_3_5 -r:System.Core</flags>
  1876. <output>Mono.Cecil.dll</output>
  1877. <built_sources></built_sources>
  1878. <library_output>./../../class/lib/net_4_x/Mono.Cecil.dll</library_output>
  1879. <fx_version>4.5</fx_version>
  1880. <profile>net_4_x</profile>
  1881. <response>Mono.Cecil.dll.sources</response>
  1882. </project>
  1883. <project dir="class/Mono.Cecil.Mdb" library="Mono.Cecil.Mdb-net_4_x">
  1884. <boot>false</boot>
  1885. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /r:mscorlib.dll /d:CECIL -keyfile:../mono.snk -r:System -r:Mono.Cecil</flags>
  1886. <output>Mono.Cecil.Mdb.dll</output>
  1887. <built_sources></built_sources>
  1888. <library_output>./../../class/lib/net_4_x/Mono.Cecil.Mdb.dll</library_output>
  1889. <fx_version>4.5</fx_version>
  1890. <profile>net_4_x</profile>
  1891. <response>Mono.Cecil.Mdb.dll.sources</response>
  1892. </project>
  1893. <project dir="class/Mono.Debugger.Soft" library="Mono.Debugger.Soft-net_4_x">
  1894. <boot>false</boot>
  1895. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /r:mscorlib.dll /unsafe -D:MONO_DATACONVERTER_STATIC_METHODS -keyfile:../mono.snk -r:System -r:Mono.Cecil -r:System.Core</flags>
  1896. <output>Mono.Debugger.Soft.dll</output>
  1897. <built_sources></built_sources>
  1898. <library_output>./../../class/lib/net_4_x/Mono.Debugger.Soft.dll</library_output>
  1899. <fx_version>4.5</fx_version>
  1900. <profile>net_4_x</profile>
  1901. <response>Mono.Debugger.Soft.dll.sources</response>
  1902. </project>
  1903. <project dir="class/Mono.Debugger.Soft" library="Mono.Debugger.Soft-tests-net_4_x">
  1904. <boot>false</boot>
  1905. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/Mono.Debugger.Soft.dll /r:Mono.Cecil.dll /r:System.dll /r:System.Core.dll</flags>
  1906. <output>Mono.Debugger.Soft_test_net_4_x.dll</output>
  1907. <built_sources></built_sources>
  1908. <library_output>Mono.Debugger.Soft_test_net_4_x.dll</library_output>
  1909. <fx_version>4.5</fx_version>
  1910. <profile>net_4_x</profile>
  1911. <response>./../../build/deps/Mono.Debugger.Soft_test_net_4_x.dll.response</response>
  1912. </project>
  1913. <project dir="class/Mono.C5" library="Mono.C5-net_4_x">
  1914. <boot>false</boot>
  1915. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /r:mscorlib.dll -nowarn:169,219,414,1030,3001,3005,3006 -r:System</flags>
  1916. <output>Mono.C5.dll</output>
  1917. <built_sources></built_sources>
  1918. <library_output>./../../class/lib/net_4_x/Mono.C5.dll</library_output>
  1919. <fx_version>4.5</fx_version>
  1920. <profile>net_4_x</profile>
  1921. <response>Mono.C5.dll.sources</response>
  1922. </project>
  1923. <project dir="class/Mono.C5" library="Mono.C5-tests-net_4_x">
  1924. <boot>false</boot>
  1925. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/Mono.C5.dll /r:mscorlib.dll -nowarn:169,219,414,1030,3001,3005,3006 -r:System -nowarn:0618 -nowarn:219 -nowarn:169</flags>
  1926. <output>Mono.C5_test_net_4_x.dll</output>
  1927. <built_sources></built_sources>
  1928. <library_output>Mono.C5_test_net_4_x.dll</library_output>
  1929. <fx_version>4.5</fx_version>
  1930. <profile>net_4_x</profile>
  1931. <response>./../../build/deps/Mono.C5_test_net_4_x.dll.response</response>
  1932. </project>
  1933. <project dir="class/Mono.Management" library="Mono.Management-net_4_x">
  1934. <boot>false</boot>
  1935. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /r:mscorlib.dll -r:System -r:Mono.Posix</flags>
  1936. <output>Mono.Management.dll</output>
  1937. <built_sources></built_sources>
  1938. <library_output>./../../class/lib/net_4_x/Mono.Management.dll</library_output>
  1939. <fx_version>4.5</fx_version>
  1940. <profile>net_4_x</profile>
  1941. <response>Mono.Management.dll.sources</response>
  1942. </project>
  1943. <project dir="class/Mono.Options" library="Mono.Options-net_4_x">
  1944. <boot>false</boot>
  1945. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /r:mscorlib.dll -r:System</flags>
  1946. <output>Mono.Options.dll</output>
  1947. <built_sources></built_sources>
  1948. <library_output>./../../class/lib/net_4_x/Mono.Options.dll</library_output>
  1949. <fx_version>4.5</fx_version>
  1950. <profile>net_4_x</profile>
  1951. <response>Mono.Options.dll.sources</response>
  1952. </project>
  1953. <project dir="class/Mono.Options" library="Mono.Options-tests-net_4_x">
  1954. <boot>false</boot>
  1955. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/Mono.Options.dll /r:Mono.Posix.dll /r:System.dll /r:System.Core.dll</flags>
  1956. <output>Mono.Options_test_net_4_x.dll</output>
  1957. <built_sources></built_sources>
  1958. <library_output>Mono.Options_test_net_4_x.dll</library_output>
  1959. <fx_version>4.5</fx_version>
  1960. <profile>net_4_x</profile>
  1961. <response>./../../build/deps/Mono.Options_test_net_4_x.dll.response</response>
  1962. </project>
  1963. <project dir="class/Mono.Simd" library="Mono.Simd-net_4_x">
  1964. <boot>false</boot>
  1965. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -r:mscorlib.dll /unsafe -r:System.Core</flags>
  1966. <output>Mono.Simd.dll</output>
  1967. <built_sources></built_sources>
  1968. <library_output>./../../class/lib/net_4_x/Mono.Simd.dll</library_output>
  1969. <fx_version>4.5</fx_version>
  1970. <profile>net_4_x</profile>
  1971. <response>Mono.Simd.dll.sources</response>
  1972. </project>
  1973. <project dir="class/Mono.Tasklets" library="Mono.Tasklets-net_4_x">
  1974. <boot>false</boot>
  1975. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  1976. <output>Mono.Tasklets.dll</output>
  1977. <built_sources></built_sources>
  1978. <library_output>./../../class/lib/net_4_x/Mono.Tasklets.dll</library_output>
  1979. <fx_version>4.5</fx_version>
  1980. <profile>net_4_x</profile>
  1981. <response>Mono.Tasklets.dll.sources</response>
  1982. </project>
  1983. <project dir="class/Mono.CodeContracts" library="Mono.CodeContracts-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 -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -r:System -r:System.Core -r:Mono.Cecil -r:Mono.Cecil.Mdb</flags>
  1986. <output>Mono.CodeContracts.dll</output>
  1987. <built_sources></built_sources>
  1988. <library_output>./../../class/lib/net_4_x/Mono.CodeContracts.dll</library_output>
  1989. <fx_version>4.5</fx_version>
  1990. <profile>net_4_x</profile>
  1991. <response>Mono.CodeContracts.dll.sources</response>
  1992. </project>
  1993. <project dir="class/Mono.CodeContracts" library="Mono.CodeContracts-tests-net_4_x">
  1994. <boot>false</boot>
  1995. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/Mono.CodeContracts.dll -r:System.Core.dll -debug</flags>
  1996. <output>Mono.CodeContracts_test_net_4_x.dll</output>
  1997. <built_sources></built_sources>
  1998. <library_output>Mono.CodeContracts_test_net_4_x.dll</library_output>
  1999. <fx_version>4.5</fx_version>
  2000. <profile>net_4_x</profile>
  2001. <response>./../../build/deps/Mono.CodeContracts_test_net_4_x.dll.response</response>
  2002. </project>
  2003. <project dir="class/Mono.Parallel" library="Mono.Parallel-net_4_x">
  2004. <boot>false</boot>
  2005. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -r:System.Core -r:System -d:INSIDE_MONO_PARALLEL -r:mscorlib.dll</flags>
  2006. <output>Mono.Parallel.dll</output>
  2007. <built_sources></built_sources>
  2008. <library_output>./../../class/lib/net_4_x/Mono.Parallel.dll</library_output>
  2009. <fx_version>4.5</fx_version>
  2010. <profile>net_4_x</profile>
  2011. <response>Mono.Parallel.dll.sources</response>
  2012. </project>
  2013. <project dir="class/Mono.Parallel" library="Mono.Parallel-tests-net_4_x">
  2014. <boot>false</boot>
  2015. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/Mono.Parallel.dll /r:System.Core.dll</flags>
  2016. <output>Mono.Parallel_test_net_4_x.dll</output>
  2017. <built_sources></built_sources>
  2018. <library_output>Mono.Parallel_test_net_4_x.dll</library_output>
  2019. <fx_version>4.5</fx_version>
  2020. <profile>net_4_x</profile>
  2021. <response>./../../build/deps/Mono.Parallel_test_net_4_x.dll.response</response>
  2022. </project>
  2023. <project dir="class/Mono.Security.Win32" library="Mono.Security.Win32-net_4_x">
  2024. <boot>false</boot>
  2025. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /unsafe</flags>
  2026. <output>Mono.Security.Win32.dll</output>
  2027. <built_sources></built_sources>
  2028. <library_output>./../../class/lib/net_4_x/Mono.Security.Win32.dll</library_output>
  2029. <fx_version>4.5</fx_version>
  2030. <profile>net_4_x</profile>
  2031. <response>Mono.Security.Win32.dll.sources</response>
  2032. </project>
  2033. <project dir="class/RabbitMQ.Client/src/apigen" library="RabbitMQ.Client.Apigen-net_4_x">
  2034. <boot></boot>
  2035. <flags>/codepage:65001 /r:System.dll /r:System.Xml.dll /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 -lib:./../../../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  2036. <output>RabbitMQ.Client.Apigen.exe</output>
  2037. <built_sources></built_sources>
  2038. <library_output>./../../../../class/lib/net_4_x/RabbitMQ.Client.Apigen.exe</library_output>
  2039. <fx_version>4.5</fx_version>
  2040. <profile>net_4_x</profile>
  2041. <response>RabbitMQ.Client.Apigen.exe.sources</response>
  2042. </project>
  2043. <project dir="class/RabbitMQ.Client/src/client" library="RabbitMQ.Client-net_4_x">
  2044. <boot>false</boot>
  2045. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -nowarn:618 -r:System -r:System.Xml</flags>
  2046. <output>RabbitMQ.Client.dll</output>
  2047. <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>
  2048. <library_output>./../../../../class/lib/net_4_x/RabbitMQ.Client.dll</library_output>
  2049. <fx_version>4.5</fx_version>
  2050. <profile>net_4_x</profile>
  2051. <response>RabbitMQ.Client.dll.sources</response>
  2052. </project>
  2053. <project dir="class/Mono.Messaging.RabbitMQ" library="Mono.Messaging.RabbitMQ-net_4_x">
  2054. <boot>false</boot>
  2055. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -nowarn:618 -r:System -r:System.Messaging -r:Mono.Messaging -r:RabbitMQ.Client</flags>
  2056. <output>Mono.Messaging.RabbitMQ.dll</output>
  2057. <built_sources></built_sources>
  2058. <library_output>./../../class/lib/net_4_x/Mono.Messaging.RabbitMQ.dll</library_output>
  2059. <fx_version>4.5</fx_version>
  2060. <profile>net_4_x</profile>
  2061. <response>Mono.Messaging.RabbitMQ.dll.sources</response>
  2062. </project>
  2063. <project dir="class/Mono.Messaging.RabbitMQ" library="Mono.Messaging.RabbitMQ-tests-net_4_x">
  2064. <boot>false</boot>
  2065. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/Mono.Messaging.RabbitMQ.dll -nowarn:618 -r:System -r:System.Messaging -r:Mono.Messaging -r:RabbitMQ.Client -nowarn:0618 -nowarn:219 -nowarn:169 /r:nunit.mocks.dll</flags>
  2066. <output>Mono.Messaging.RabbitMQ_test_net_4_x.dll</output>
  2067. <built_sources></built_sources>
  2068. <library_output>Mono.Messaging.RabbitMQ_test_net_4_x.dll</library_output>
  2069. <fx_version>4.5</fx_version>
  2070. <profile>net_4_x</profile>
  2071. <response>./../../build/deps/Mono.Messaging.RabbitMQ_test_net_4_x.dll.response</response>
  2072. </project>
  2073. <project dir="class/System.Dynamic" library="System.Dynamic-net_4_x">
  2074. <boot>false</boot>
  2075. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -unsafe -d:CODEPLEX_40 -nowarn:414,169 -r:System.Core -r:System</flags>
  2076. <output>System.Dynamic.dll</output>
  2077. <built_sources></built_sources>
  2078. <library_output>./../../class/lib/net_4_x/System.Dynamic.dll</library_output>
  2079. <fx_version>4.5</fx_version>
  2080. <profile>net_4_x</profile>
  2081. <response>System.Dynamic.dll.sources</response>
  2082. </project>
  2083. <project dir="class/System.Windows.Forms.DataVisualization" library="System.Windows.Forms.DataVisualization-net_4_x">
  2084. <boot>false</boot>
  2085. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -r:System -r:System.Drawing -r:System.Windows.Forms -r:System.Core -r:System.Data -r:System.Xml</flags>
  2086. <output>System.Windows.Forms.DataVisualization.dll</output>
  2087. <built_sources></built_sources>
  2088. <library_output>./../../class/lib/net_4_x/System.Windows.Forms.DataVisualization.dll</library_output>
  2089. <fx_version>4.5</fx_version>
  2090. <profile>net_4_x</profile>
  2091. <response>System.Windows.Forms.DataVisualization.dll.sources</response>
  2092. </project>
  2093. <project dir="class/System.Windows.Forms.DataVisualization" library="System.Windows.Forms.DataVisualization-tests-net_4_x">
  2094. <boot>false</boot>
  2095. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Windows.Forms.DataVisualization.dll -r:System -r:System.Drawing -r:System.Windows.Forms -r:System.Core -r:System.Data -r:System.Xml</flags>
  2096. <output>System.Windows.Forms.DataVisualization_test_net_4_x.dll</output>
  2097. <built_sources></built_sources>
  2098. <library_output>System.Windows.Forms.DataVisualization_test_net_4_x.dll</library_output>
  2099. <fx_version>4.5</fx_version>
  2100. <profile>net_4_x</profile>
  2101. <response>./../../build/deps/System.Windows.Forms.DataVisualization_test_net_4_x.dll.response</response>
  2102. </project>
  2103. <project dir="class/System.Reactive.Interfaces" library="System.Reactive.Interfaces-net_4_x">
  2104. <boot>false</boot>
  2105. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig @more_build_args -d:HAS_EDI -d:PREFERASYNC -d:PREFER_ASYNC -d:HAS_AWAIT -r:System -r:System.Core</flags>
  2106. <output>System.Reactive.Interfaces.dll</output>
  2107. <built_sources></built_sources>
  2108. <library_output>./../../class/lib/net_4_x/System.Reactive.Interfaces.dll</library_output>
  2109. <fx_version>4.5</fx_version>
  2110. <profile>net_4_x</profile>
  2111. <response>System.Reactive.Interfaces.dll.sources</response>
  2112. </project>
  2113. <project dir="class/System.Reactive.Core" library="System.Reactive.Core-net_4_x">
  2114. <boot>false</boot>
  2115. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig @more_build_args -r:System.Reactive.Interfaces.dll -d:HAS_EDI -d:PREFERASYNC -d:PREFER_ASYNC -d:HAS_AWAIT -r:System -r:System.Core -r:System.Reactive.Interfaces</flags>
  2116. <output>System.Reactive.Core.dll</output>
  2117. <built_sources></built_sources>
  2118. <library_output>./../../class/lib/net_4_x/System.Reactive.Core.dll</library_output>
  2119. <fx_version>4.5</fx_version>
  2120. <profile>net_4_x</profile>
  2121. <response>System.Reactive.Core.dll.sources</response>
  2122. </project>
  2123. <project dir="class/System.Reactive.Linq" library="System.Reactive.Linq-net_4_x">
  2124. <boot>false</boot>
  2125. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig @more_build_args -r:System.Reactive.Core.dll -d:HAS_EDI -d:PREFERASYNC -d:PREFER_ASYNC -d:HAS_AWAIT -r:System -r:System.Core -r:System.Reactive.Interfaces -r:System.Reactive.Core</flags>
  2126. <output>System.Reactive.Linq.dll</output>
  2127. <built_sources></built_sources>
  2128. <library_output>./../../class/lib/net_4_x/System.Reactive.Linq.dll</library_output>
  2129. <fx_version>4.5</fx_version>
  2130. <profile>net_4_x</profile>
  2131. <response>System.Reactive.Linq.dll.sources</response>
  2132. </project>
  2133. <project dir="class/System.Reactive.PlatformServices" library="System.Reactive.PlatformServices-net_4_x">
  2134. <boot>false</boot>
  2135. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig @more_build_args -r:System.Reactive.Linq.dll -d:HAS_EDI -d:PREFERASYNC -d:PREFER_ASYNC -d:HAS_AWAIT -r:System -r:System.Core -r:System.Reactive.Interfaces -r:System.Reactive.Core -r:System.Reactive.Linq</flags>
  2136. <output>System.Reactive.PlatformServices.dll</output>
  2137. <built_sources></built_sources>
  2138. <library_output>./../../class/lib/net_4_x/System.Reactive.PlatformServices.dll</library_output>
  2139. <fx_version>4.5</fx_version>
  2140. <profile>net_4_x</profile>
  2141. <response>System.Reactive.PlatformServices.dll.sources</response>
  2142. </project>
  2143. <project dir="class/System.Reactive.Providers" library="System.Reactive.Providers-net_4_x">
  2144. <boot>false</boot>
  2145. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig @more_build_args -r:System.Reactive.Linq.dll -d:HAS_EDI -d:PREFERASYNC -d:PREFER_ASYNC -d:HAS_AWAIT -r:System -r:System.Core -r:System.Reactive.Interfaces -r:System.Reactive.Core -r:System.Reactive.Linq</flags>
  2146. <output>System.Reactive.Providers.dll</output>
  2147. <built_sources></built_sources>
  2148. <library_output>./../../class/lib/net_4_x/System.Reactive.Providers.dll</library_output>
  2149. <fx_version>4.5</fx_version>
  2150. <profile>net_4_x</profile>
  2151. <response>System.Reactive.Providers.dll.sources</response>
  2152. </project>
  2153. <project dir="class/System.Reactive.Runtime.Remoting" library="System.Reactive.Runtime.Remoting-net_4_x">
  2154. <boot>false</boot>
  2155. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig @more_build_args -r:System.Reactive.Linq.dll -d:HAS_EDI -d:PREFERASYNC -d:PREFER_ASYNC -d:HAS_AWAIT -r:System -r:System.Core -r:System.Reactive.Interfaces -r:System.Reactive.Core -r:System.Reactive.Linq</flags>
  2156. <output>System.Reactive.Runtime.Remoting.dll</output>
  2157. <built_sources></built_sources>
  2158. <library_output>./../../class/lib/net_4_x/System.Reactive.Runtime.Remoting.dll</library_output>
  2159. <fx_version>4.5</fx_version>
  2160. <profile>net_4_x</profile>
  2161. <response>System.Reactive.Runtime.Remoting.dll.sources</response>
  2162. </project>
  2163. <project dir="class/System.Reactive.Windows.Forms" library="System.Reactive.Windows.Forms-net_4_x">
  2164. <boot>false</boot>
  2165. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig @more_build_args -r:System.Windows.Forms.dll -d:HAS_EDI -d:PREFERASYNC -d:PREFER_ASYNC -d:HAS_AWAIT -r:System -r:System.Core -r:System.Reactive.Interfaces -r:System.Reactive.Core -r:System.Reactive.Linq -r:System.Windows.Forms</flags>
  2166. <output>System.Reactive.Windows.Forms.dll</output>
  2167. <built_sources></built_sources>
  2168. <library_output>./../../class/lib/net_4_x/System.Reactive.Windows.Forms.dll</library_output>
  2169. <fx_version>4.5</fx_version>
  2170. <profile>net_4_x</profile>
  2171. <response>System.Reactive.Windows.Forms.dll.sources</response>
  2172. </project>
  2173. <project dir="class/System.Reactive.Windows.Threading" library="System.Reactive.Windows.Threading-net_4_x">
  2174. <boot>false</boot>
  2175. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig @more_build_args -r:WindowsBase.dll -d:HAS_EDI -d:PREFERASYNC -d:PREFER_ASYNC -d:HAS_AWAIT -r:System -r:System.Core -r:System.Reactive.Interfaces -r:System.Reactive.Core -r:System.Reactive.Linq -r:WindowsBase</flags>
  2176. <output>System.Reactive.Windows.Threading.dll</output>
  2177. <built_sources></built_sources>
  2178. <library_output>./../../class/lib/net_4_x/System.Reactive.Windows.Threading.dll</library_output>
  2179. <fx_version>4.5</fx_version>
  2180. <profile>net_4_x</profile>
  2181. <response>System.Reactive.Windows.Threading.dll.sources</response>
  2182. </project>
  2183. <project dir="class/System.Reactive.Observable.Aliases" library="System.Reactive.Observable.Aliases-net_4_x">
  2184. <boot>false</boot>
  2185. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig @more_build_args -r:System.Reactive.Providers.dll -d:HAS_EDI -d:PREFERASYNC -d:PREFER_ASYNC -d:HAS_AWAIT -r:System -r:System.Core -r:System.Reactive.Interfaces -r:System.Reactive.Core -r:System.Reactive.Linq -r:System.Reactive.Providers</flags>
  2186. <output>System.Reactive.Observable.Aliases.dll</output>
  2187. <built_sources></built_sources>
  2188. <library_output>./../../class/lib/net_4_x/System.Reactive.Observable.Aliases.dll</library_output>
  2189. <fx_version>4.5</fx_version>
  2190. <profile>net_4_x</profile>
  2191. <response>System.Reactive.Observable.Aliases.dll.sources</response>
  2192. </project>
  2193. <project dir="class/System.Reactive.Experimental" library="System.Reactive.Experimental-net_4_x">
  2194. <boot>false</boot>
  2195. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig @more_build_args -d:HAS_EDI -d:PREFERASYNC -d:PREFER_ASYNC -d:HAS_AWAIT -r:System -r:System.Core -r:System.Reactive.Interfaces -r:System.Reactive.Core -r:System.Reactive.Linq</flags>
  2196. <output>System.Reactive.Experimental.dll</output>
  2197. <built_sources></built_sources>
  2198. <library_output>./../../class/lib/net_4_x/System.Reactive.Experimental.dll</library_output>
  2199. <fx_version>4.5</fx_version>
  2200. <profile>net_4_x</profile>
  2201. <response>System.Reactive.Experimental.dll.sources</response>
  2202. </project>
  2203. <project dir="class/System.Reactive.Debugger" library="System.Reactive.Debugger-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 -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig @more_build_args -d:HAS_EDI -d:PREFERASYNC -d:PREFER_ASYNC -d:HAS_AWAIT -r:System -r:System.Core -r:System.Reactive.Interfaces -r:System.Reactive.Core -r:System.Reactive.Linq</flags>
  2206. <output>System.Reactive.Debugger.dll</output>
  2207. <built_sources></built_sources>
  2208. <library_output>./../../class/lib/net_4_x/System.Reactive.Debugger.dll</library_output>
  2209. <fx_version>4.5</fx_version>
  2210. <profile>net_4_x</profile>
  2211. <response>System.Reactive.Debugger.dll.sources</response>
  2212. </project>
  2213. <project dir="class/System.Data.Services.Client" library="System.Data.Services.Client-net_4_x">
  2214. <boot>false</boot>
  2215. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -d:NET_3_5 -resource:Client/System.Data.Services.Client.resources -warn:2 -r:System -r:System.Core -r:System.Xml.Linq -r:System.Data -r:System.Xml -r:WindowsBase</flags>
  2216. <output>System.Data.Services.Client.dll</output>
  2217. <built_sources></built_sources>
  2218. <library_output>./../../class/lib/net_4_x/System.Data.Services.Client.dll</library_output>
  2219. <fx_version>4.5</fx_version>
  2220. <profile>net_4_x</profile>
  2221. <response>System.Data.Services.Client.dll.sources</response>
  2222. </project>
  2223. <project dir="class/System.Data.Services" library="System.Data.Services-net_4_x">
  2224. <boot>false</boot>
  2225. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -d:NET_3_5 -r:System -r:System.Core -r:System.ServiceModel -r:System.ServiceModel.Web -r:System.Data.Services.Client -r:System.ServiceModel.Activation</flags>
  2226. <output>System.Data.Services.dll</output>
  2227. <built_sources></built_sources>
  2228. <library_output>./../../class/lib/net_4_x/System.Data.Services.dll</library_output>
  2229. <fx_version>4.5</fx_version>
  2230. <profile>net_4_x</profile>
  2231. <response>System.Data.Services.dll.sources</response>
  2232. </project>
  2233. <project dir="class/System.Data.Services" library="System.Data.Services-tests-net_4_x">
  2234. <boot>false</boot>
  2235. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Data.Services.dll -r:System.ServiceModel.dll -r:System.Core.dll</flags>
  2236. <output>System.Data.Services_test_net_4_x.dll</output>
  2237. <built_sources></built_sources>
  2238. <library_output>System.Data.Services_test_net_4_x.dll</library_output>
  2239. <fx_version>4.5</fx_version>
  2240. <profile>net_4_x</profile>
  2241. <response>./../../build/deps/System.Data.Services_test_net_4_x.dll.response</response>
  2242. </project>
  2243. <project dir="class/System.Data.Entity" library="System.Data.Entity-net_4_x">
  2244. <boot>false</boot>
  2245. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -warn:2 -r:System -r:System.Core -r:System.Data -r:System.Xml -r:System.Xml.Linq -r:System.Transactions -r:System.Runtime.Serialization -r:System.ComponentModel.DataAnnotations -r:System.Configuration</flags>
  2246. <output>System.Data.Entity.dll</output>
  2247. <built_sources></built_sources>
  2248. <library_output>./../../class/lib/net_4_x/System.Data.Entity.dll</library_output>
  2249. <fx_version>4.5</fx_version>
  2250. <profile>net_4_x</profile>
  2251. <response>System.Data.Entity.dll.sources</response>
  2252. </project>
  2253. <project dir="class/System.Data.DataSetExtensions" library="System.Data.DataSetExtensions-net_4_x">
  2254. <boot>false</boot>
  2255. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -r:System.Core -r:System -r:System.Data -r:System.Xml</flags>
  2256. <output>System.Data.DataSetExtensions.dll</output>
  2257. <built_sources></built_sources>
  2258. <library_output>./../../class/lib/net_4_x/System.Data.DataSetExtensions.dll</library_output>
  2259. <fx_version>4.5</fx_version>
  2260. <profile>net_4_x</profile>
  2261. <response>System.Data.DataSetExtensions.dll.sources</response>
  2262. </project>
  2263. <project dir="class/System.Data.DataSetExtensions" library="System.Data.DataSetExtensions-tests-net_4_x">
  2264. <boot>false</boot>
  2265. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Data.DataSetExtensions.dll -r:System.Core -r:System -r:System.Data -r:System.Xml -doc:System.Data.DataSetExtensions_test_net_4_x.xml -nowarn:219 -nowarn:169</flags>
  2266. <output>System.Data.DataSetExtensions_test_net_4_x.dll</output>
  2267. <built_sources></built_sources>
  2268. <library_output>System.Data.DataSetExtensions_test_net_4_x.dll</library_output>
  2269. <fx_version>4.5</fx_version>
  2270. <profile>net_4_x</profile>
  2271. <response>./../../build/deps/System.Data.DataSetExtensions_test_net_4_x.dll.response</response>
  2272. </project>
  2273. <project dir="class/System.Json.Microsoft" library="System.Json.Microsoft-net_4_x">
  2274. <boot>false</boot>
  2275. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /d:ASPNETMVC -keyfile:../winfx.pub -delaysign /resource:System.Json.Properties.Resources.resources -d:FEATURE_DYNAMIC -r:System -r:System.Xml -r:System.Core -r:System.Runtime.Serialization -r:Microsoft.CSharp</flags>
  2276. <output>System.Json.Microsoft.dll</output>
  2277. <built_sources></built_sources>
  2278. <library_output>./../../class/lib/net_4_x/System.Json.Microsoft.dll</library_output>
  2279. <fx_version>4.5</fx_version>
  2280. <profile>net_4_x</profile>
  2281. <response>System.Json.Microsoft.dll.sources</response>
  2282. </project>
  2283. <project dir="class/System.Json.Microsoft" library="System.Json.Microsoft-tests-net_4_x">
  2284. <boot>false</boot>
  2285. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Json.Microsoft.dll /d:ASPNETMVC -keyfile:../winfx.pub -delaysign /resource:System.Json.Properties.Resources.resources -d:FEATURE_DYNAMIC -r:System -r:System.Xml -r:System.Core -r:System.Runtime.Serialization -r:Microsoft.CSharp</flags>
  2286. <output>System.Json.Microsoft_test_net_4_x.dll</output>
  2287. <built_sources></built_sources>
  2288. <library_output>System.Json.Microsoft_test_net_4_x.dll</library_output>
  2289. <fx_version>4.5</fx_version>
  2290. <profile>net_4_x</profile>
  2291. <response>./../../build/deps/System.Json.Microsoft_test_net_4_x.dll.response</response>
  2292. </project>
  2293. <project dir="class/System.Threading.Tasks.Dataflow" library="System.Threading.Tasks.Dataflow-net_4_x">
  2294. <boot>false</boot>
  2295. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -r:System.Core -r:System -r:mscorlib.dll</flags>
  2296. <output>System.Threading.Tasks.Dataflow.dll</output>
  2297. <built_sources></built_sources>
  2298. <library_output>./../../class/lib/net_4_x/System.Threading.Tasks.Dataflow.dll</library_output>
  2299. <fx_version>4.5</fx_version>
  2300. <profile>net_4_x</profile>
  2301. <response>System.Threading.Tasks.Dataflow.dll.sources</response>
  2302. </project>
  2303. <project dir="class/System.Threading.Tasks.Dataflow" library="System.Threading.Tasks.Dataflow-tests-net_4_x">
  2304. <boot>false</boot>
  2305. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.Threading.Tasks.Dataflow.dll -r:System.Core.dll -r:System.dll</flags>
  2306. <output>System.Threading.Tasks.Dataflow_test_net_4_x.dll</output>
  2307. <built_sources></built_sources>
  2308. <library_output>System.Threading.Tasks.Dataflow_test_net_4_x.dll</library_output>
  2309. <fx_version>4.5</fx_version>
  2310. <profile>net_4_x</profile>
  2311. <response>./../../build/deps/System.Threading.Tasks.Dataflow_test_net_4_x.dll.response</response>
  2312. </project>
  2313. <project dir="class/System.ComponentModel.Composition.4.5" library="System.ComponentModel.Composition-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 -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -d:CLR40 -resource:Microsoft.Internal.Strings.resources -d:USE_ECMA_KEY,FEATURE_REFLECTIONCONTEXT,FEATURE_REFLECTIONFILEIO,FEATURE_SERIALIZATION,FEATURE_SLIMLOCK -nowarn:219,414 -r:System -r:System.Core</flags>
  2316. <output>System.ComponentModel.Composition.dll</output>
  2317. <built_sources></built_sources>
  2318. <library_output>./../../class/lib/net_4_x/System.ComponentModel.Composition.dll</library_output>
  2319. <fx_version>4.5</fx_version>
  2320. <profile>net_4_x</profile>
  2321. <response>System.ComponentModel.Composition.dll.sources</response>
  2322. </project>
  2323. <project dir="class/System.IO.Compression" library="System.IO.Compression-net_4_x">
  2324. <boot>false</boot>
  2325. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /unsafe -r:System -r:System.Core</flags>
  2326. <output>System.IO.Compression.dll</output>
  2327. <built_sources></built_sources>
  2328. <library_output>./../../class/lib/net_4_x/System.IO.Compression.dll</library_output>
  2329. <fx_version>4.5</fx_version>
  2330. <profile>net_4_x</profile>
  2331. <response>System.IO.Compression.dll.sources</response>
  2332. </project>
  2333. <project dir="class/System.IO.Compression" library="System.IO.Compression-tests-net_4_x">
  2334. <boot>false</boot>
  2335. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.IO.Compression.dll /r:System /r:System.Core</flags>
  2336. <output>System.IO.Compression_test_net_4_x.dll</output>
  2337. <built_sources></built_sources>
  2338. <library_output>System.IO.Compression_test_net_4_x.dll</library_output>
  2339. <fx_version>4.5</fx_version>
  2340. <profile>net_4_x</profile>
  2341. <response>./../../build/deps/System.IO.Compression_test_net_4_x.dll.response</response>
  2342. </project>
  2343. <project dir="class/System.IO.Compression.FileSystem" library="System.IO.Compression.FileSystem-net_4_x">
  2344. <boot>false</boot>
  2345. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -r:System -r:System.IO.Compression</flags>
  2346. <output>System.IO.Compression.FileSystem.dll</output>
  2347. <built_sources></built_sources>
  2348. <library_output>./../../class/lib/net_4_x/System.IO.Compression.FileSystem.dll</library_output>
  2349. <fx_version>4.5</fx_version>
  2350. <profile>net_4_x</profile>
  2351. <response>System.IO.Compression.FileSystem.dll.sources</response>
  2352. </project>
  2353. <project dir="class/System.IO.Compression.FileSystem" library="System.IO.Compression.FileSystem-tests-net_4_x">
  2354. <boot>false</boot>
  2355. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/System.IO.Compression.FileSystem.dll /r:System /r:System.Core /r:System.IO.Compression.dll</flags>
  2356. <output>System.IO.Compression.FileSystem_test_net_4_x.dll</output>
  2357. <built_sources></built_sources>
  2358. <library_output>System.IO.Compression.FileSystem_test_net_4_x.dll</library_output>
  2359. <fx_version>4.5</fx_version>
  2360. <profile>net_4_x</profile>
  2361. <response>./../../build/deps/System.IO.Compression.FileSystem_test_net_4_x.dll.response</response>
  2362. </project>
  2363. <project dir="class/System.Windows" library="System.Windows-net_4_x">
  2364. <boot>false</boot>
  2365. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig -r:System</flags>
  2366. <output>System.Windows.dll</output>
  2367. <built_sources></built_sources>
  2368. <library_output>./../../class/lib/net_4_x/System.Windows.dll</library_output>
  2369. <fx_version>4.5</fx_version>
  2370. <profile>net_4_x</profile>
  2371. <response>System.Windows.dll.sources</response>
  2372. </project>
  2373. <project dir="class/System.Xml.Serialization" library="System.Xml.Serialization-net_4_x">
  2374. <boot>false</boot>
  2375. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig -r:System.Xml -r:System.ServiceModel</flags>
  2376. <output>System.Xml.Serialization.dll</output>
  2377. <built_sources></built_sources>
  2378. <library_output>./../../class/lib/net_4_x/System.Xml.Serialization.dll</library_output>
  2379. <fx_version>4.5</fx_version>
  2380. <profile>net_4_x</profile>
  2381. <response>System.Xml.Serialization.dll.sources</response>
  2382. </project>
  2383. <project dir="class/System.DirectoryServices.Protocols" library="System.DirectoryServices.Protocols-net_4_x">
  2384. <boot>false</boot>
  2385. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -r:System -r:System.DirectoryServices -r:System.Xml</flags>
  2386. <output>System.DirectoryServices.Protocols.dll</output>
  2387. <built_sources></built_sources>
  2388. <library_output>./../../class/lib/net_4_x/System.DirectoryServices.Protocols.dll</library_output>
  2389. <fx_version>4.5</fx_version>
  2390. <profile>net_4_x</profile>
  2391. <response>System.DirectoryServices.Protocols.dll.sources</response>
  2392. </project>
  2393. <project dir="class/Microsoft.VisualC" library="Microsoft.VisualC-net_4_x">
  2394. <boot>false</boot>
  2395. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /r:mscorlib.dll -r:System</flags>
  2396. <output>Microsoft.VisualC.dll</output>
  2397. <built_sources></built_sources>
  2398. <library_output>./../../class/lib/net_4_x/Microsoft.VisualC.dll</library_output>
  2399. <fx_version>4.5</fx_version>
  2400. <profile>net_4_x</profile>
  2401. <response>Microsoft.VisualC.dll.sources</response>
  2402. </project>
  2403. <project dir="class/WebMatrix.Data" library="WebMatrix.Data-net_4_x">
  2404. <boot>false</boot>
  2405. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -r:mscorlib.dll -r:System -r:System.Data -r:System.Core -r:System.Configuration</flags>
  2406. <output>WebMatrix.Data.dll</output>
  2407. <built_sources></built_sources>
  2408. <library_output>./../../class/lib/net_4_x/WebMatrix.Data.dll</library_output>
  2409. <fx_version>4.5</fx_version>
  2410. <profile>net_4_x</profile>
  2411. <response>WebMatrix.Data.dll.sources</response>
  2412. </project>
  2413. <project dir="class/WebMatrix.Data" library="WebMatrix.Data-tests-net_4_x">
  2414. <boot>false</boot>
  2415. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/WebMatrix.Data.dll -r:System.dll -r:System.Core.dll -r:System.Data.dll -r:Mono.Data.Sqlite.dll -r:Microsoft.CSharp.dll</flags>
  2416. <output>WebMatrix.Data_test_net_4_x.dll</output>
  2417. <built_sources></built_sources>
  2418. <library_output>WebMatrix.Data_test_net_4_x.dll</library_output>
  2419. <fx_version>4.5</fx_version>
  2420. <profile>net_4_x</profile>
  2421. <response>./../../build/deps/WebMatrix.Data_test_net_4_x.dll.response</response>
  2422. </project>
  2423. <project dir="class/monodoc" library="monodoc-net_4_x">
  2424. <boot>false</boot>
  2425. <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 -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /unsafe /codepage:utf8 /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 /r:mscorlib.dll -r:ICSharpCode.SharpZipLib -r:System -r:System.Core -r:System.Xml -r:System.Xml.Linq -r:System.Configuration</flags>
  2426. <output>monodoc.dll</output>
  2427. <built_sources></built_sources>
  2428. <library_output>./../../class/lib/net_4_x/monodoc.dll</library_output>
  2429. <fx_version>4.5</fx_version>
  2430. <profile>net_4_x</profile>
  2431. <response>monodoc.dll.sources</response>
  2432. </project>
  2433. <project dir="class/monodoc" library="monodoc-tests-net_4_x">
  2434. <boot>false</boot>
  2435. <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 -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize -r:./../../class/lib/net_4_x/monodoc.dll /r:System.dll /r:System.Core.dll /r:System.Xml.dll</flags>
  2436. <output>monodoc_test_net_4_x.dll</output>
  2437. <built_sources></built_sources>
  2438. <library_output>monodoc_test_net_4_x.dll</library_output>
  2439. <fx_version>4.5</fx_version>
  2440. <profile>net_4_x</profile>
  2441. <response>./../../build/deps/monodoc_test_net_4_x.dll.response</response>
  2442. </project>
  2443. <project dir="class/Facades/System.Collections.Concurrent" library="Facades_System.Collections.Concurrent-net_4_x">
  2444. <boot>false</boot>
  2445. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  2446. <output>System.Collections.Concurrent.dll</output>
  2447. <built_sources></built_sources>
  2448. <library_output>./../../../class/lib/net_4_x/Facades/System.Collections.Concurrent.dll</library_output>
  2449. <fx_version>4.5</fx_version>
  2450. <profile>net_4_x</profile>
  2451. <response>System.Collections.Concurrent.dll.sources</response>
  2452. </project>
  2453. <project dir="class/Facades/System.Collections" library="Facades_System.Collections-net_4_x">
  2454. <boot>false</boot>
  2455. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System -r:System.Core</flags>
  2456. <output>System.Collections.dll</output>
  2457. <built_sources></built_sources>
  2458. <library_output>./../../../class/lib/net_4_x/Facades/System.Collections.dll</library_output>
  2459. <fx_version>4.5</fx_version>
  2460. <profile>net_4_x</profile>
  2461. <response>System.Collections.dll.sources</response>
  2462. </project>
  2463. <project dir="class/Facades/System.ComponentModel.Annotations" library="Facades_System.ComponentModel.Annotations-net_4_x">
  2464. <boot>false</boot>
  2465. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System.ComponentModel.DataAnnotations</flags>
  2466. <output>System.ComponentModel.Annotations.dll</output>
  2467. <built_sources></built_sources>
  2468. <library_output>./../../../class/lib/net_4_x/Facades/System.ComponentModel.Annotations.dll</library_output>
  2469. <fx_version>4.5</fx_version>
  2470. <profile>net_4_x</profile>
  2471. <response>System.ComponentModel.Annotations.dll.sources</response>
  2472. </project>
  2473. <project dir="class/Facades/System.ComponentModel.EventBasedAsync" library="Facades_System.ComponentModel.EventBasedAsync-net_4_x">
  2474. <boot>false</boot>
  2475. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  2476. <output>System.ComponentModel.EventBasedAsync.dll</output>
  2477. <built_sources></built_sources>
  2478. <library_output>./../../../class/lib/net_4_x/Facades/System.ComponentModel.EventBasedAsync.dll</library_output>
  2479. <fx_version>4.5</fx_version>
  2480. <profile>net_4_x</profile>
  2481. <response>System.ComponentModel.EventBasedAsync.dll.sources</response>
  2482. </project>
  2483. <project dir="class/Facades/System.ComponentModel" library="Facades_System.ComponentModel-net_4_x">
  2484. <boot>false</boot>
  2485. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  2486. <output>System.ComponentModel.dll</output>
  2487. <built_sources></built_sources>
  2488. <library_output>./../../../class/lib/net_4_x/Facades/System.ComponentModel.dll</library_output>
  2489. <fx_version>4.5</fx_version>
  2490. <profile>net_4_x</profile>
  2491. <response>System.ComponentModel.dll.sources</response>
  2492. </project>
  2493. <project dir="class/Facades/System.Diagnostics.Contracts" library="Facades_System.Diagnostics.Contracts-net_4_x">
  2494. <boot>false</boot>
  2495. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib</flags>
  2496. <output>System.Diagnostics.Contracts.dll</output>
  2497. <built_sources></built_sources>
  2498. <library_output>./../../../class/lib/net_4_x/Facades/System.Diagnostics.Contracts.dll</library_output>
  2499. <fx_version>4.5</fx_version>
  2500. <profile>net_4_x</profile>
  2501. <response>System.Diagnostics.Contracts.dll.sources</response>
  2502. </project>
  2503. <project dir="class/Facades/System.Diagnostics.Debug" library="Facades_System.Diagnostics.Debug-net_4_x">
  2504. <boot>false</boot>
  2505. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  2506. <output>System.Diagnostics.Debug.dll</output>
  2507. <built_sources></built_sources>
  2508. <library_output>./../../../class/lib/net_4_x/Facades/System.Diagnostics.Debug.dll</library_output>
  2509. <fx_version>4.5</fx_version>
  2510. <profile>net_4_x</profile>
  2511. <response>System.Diagnostics.Debug.dll.sources</response>
  2512. </project>
  2513. <project dir="class/Facades/System.Diagnostics.Tracing" library="Facades_System.Diagnostics.Tracing-net_4_x">
  2514. <boot>false</boot>
  2515. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib</flags>
  2516. <output>System.Diagnostics.Tracing.dll</output>
  2517. <built_sources></built_sources>
  2518. <library_output>./../../../class/lib/net_4_x/Facades/System.Diagnostics.Tracing.dll</library_output>
  2519. <fx_version>4.5</fx_version>
  2520. <profile>net_4_x</profile>
  2521. <response>System.Diagnostics.Tracing.dll.sources</response>
  2522. </project>
  2523. <project dir="class/Facades/System.Diagnostics.Tools" library="Facades_System.Diagnostics.Tools-net_4_x">
  2524. <boot>false</boot>
  2525. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  2526. <output>System.Diagnostics.Tools.dll</output>
  2527. <built_sources></built_sources>
  2528. <library_output>./../../../class/lib/net_4_x/Facades/System.Diagnostics.Tools.dll</library_output>
  2529. <fx_version>4.5</fx_version>
  2530. <profile>net_4_x</profile>
  2531. <response>System.Diagnostics.Tools.dll.sources</response>
  2532. </project>
  2533. <project dir="class/Facades/System.Dynamic.Runtime" library="Facades_System.Dynamic.Runtime-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 -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System.Core -r:System</flags>
  2536. <output>System.Dynamic.Runtime.dll</output>
  2537. <built_sources></built_sources>
  2538. <library_output>./../../../class/lib/net_4_x/Facades/System.Dynamic.Runtime.dll</library_output>
  2539. <fx_version>4.5</fx_version>
  2540. <profile>net_4_x</profile>
  2541. <response>System.Dynamic.Runtime.dll.sources</response>
  2542. </project>
  2543. <project dir="class/Facades/System.Globalization" library="Facades_System.Globalization-net_4_x">
  2544. <boot>false</boot>
  2545. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib</flags>
  2546. <output>System.Globalization.dll</output>
  2547. <built_sources></built_sources>
  2548. <library_output>./../../../class/lib/net_4_x/Facades/System.Globalization.dll</library_output>
  2549. <fx_version>4.5</fx_version>
  2550. <profile>net_4_x</profile>
  2551. <response>System.Globalization.dll.sources</response>
  2552. </project>
  2553. <project dir="class/Facades/System.IO" library="Facades_System.IO-net_4_x">
  2554. <boot>false</boot>
  2555. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  2556. <output>System.IO.dll</output>
  2557. <built_sources></built_sources>
  2558. <library_output>./../../../class/lib/net_4_x/Facades/System.IO.dll</library_output>
  2559. <fx_version>4.5</fx_version>
  2560. <profile>net_4_x</profile>
  2561. <response>System.IO.dll.sources</response>
  2562. </project>
  2563. <project dir="class/Facades/System.Linq.Expressions" library="Facades_System.Linq.Expressions-net_4_x">
  2564. <boot>false</boot>
  2565. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System.Core</flags>
  2566. <output>System.Linq.Expressions.dll</output>
  2567. <built_sources></built_sources>
  2568. <library_output>./../../../class/lib/net_4_x/Facades/System.Linq.Expressions.dll</library_output>
  2569. <fx_version>4.5</fx_version>
  2570. <profile>net_4_x</profile>
  2571. <response>System.Linq.Expressions.dll.sources</response>
  2572. </project>
  2573. <project dir="class/Facades/System.Linq.Parallel" library="Facades_System.Linq.Parallel-net_4_x">
  2574. <boot>false</boot>
  2575. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System.Core</flags>
  2576. <output>System.Linq.Parallel.dll</output>
  2577. <built_sources></built_sources>
  2578. <library_output>./../../../class/lib/net_4_x/Facades/System.Linq.Parallel.dll</library_output>
  2579. <fx_version>4.5</fx_version>
  2580. <profile>net_4_x</profile>
  2581. <response>System.Linq.Parallel.dll.sources</response>
  2582. </project>
  2583. <project dir="class/Facades/System.Linq.Queryable" library="Facades_System.Linq.Queryable-net_4_x">
  2584. <boot>false</boot>
  2585. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System.Core</flags>
  2586. <output>System.Linq.Queryable.dll</output>
  2587. <built_sources></built_sources>
  2588. <library_output>./../../../class/lib/net_4_x/Facades/System.Linq.Queryable.dll</library_output>
  2589. <fx_version>4.5</fx_version>
  2590. <profile>net_4_x</profile>
  2591. <response>System.Linq.Queryable.dll.sources</response>
  2592. </project>
  2593. <project dir="class/Facades/System.Linq" library="Facades_System.Linq-net_4_x">
  2594. <boot>false</boot>
  2595. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System.Core</flags>
  2596. <output>System.Linq.dll</output>
  2597. <built_sources></built_sources>
  2598. <library_output>./../../../class/lib/net_4_x/Facades/System.Linq.dll</library_output>
  2599. <fx_version>4.5</fx_version>
  2600. <profile>net_4_x</profile>
  2601. <response>System.Linq.dll.sources</response>
  2602. </project>
  2603. <project dir="class/Facades/System.Net.NetworkInformation" library="Facades_System.Net.NetworkInformation-net_4_x">
  2604. <boot>false</boot>
  2605. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  2606. <output>System.Net.NetworkInformation.dll</output>
  2607. <built_sources></built_sources>
  2608. <library_output>./../../../class/lib/net_4_x/Facades/System.Net.NetworkInformation.dll</library_output>
  2609. <fx_version>4.5</fx_version>
  2610. <profile>net_4_x</profile>
  2611. <response>System.Net.NetworkInformation.dll.sources</response>
  2612. </project>
  2613. <project dir="class/Facades/System.Net.Primitives" library="Facades_System.Net.Primitives-net_4_x">
  2614. <boot>false</boot>
  2615. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  2616. <output>System.Net.Primitives.dll</output>
  2617. <built_sources></built_sources>
  2618. <library_output>./../../../class/lib/net_4_x/Facades/System.Net.Primitives.dll</library_output>
  2619. <fx_version>4.5</fx_version>
  2620. <profile>net_4_x</profile>
  2621. <response>System.Net.Primitives.dll.sources</response>
  2622. </project>
  2623. <project dir="class/Facades/System.Net.Requests" library="Facades_System.Net.Requests-net_4_x">
  2624. <boot>false</boot>
  2625. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  2626. <output>System.Net.Requests.dll</output>
  2627. <built_sources></built_sources>
  2628. <library_output>./../../../class/lib/net_4_x/Facades/System.Net.Requests.dll</library_output>
  2629. <fx_version>4.5</fx_version>
  2630. <profile>net_4_x</profile>
  2631. <response>System.Net.Requests.dll.sources</response>
  2632. </project>
  2633. <project dir="class/Facades/System.ObjectModel" library="Facades_System.ObjectModel-net_4_x">
  2634. <boot>false</boot>
  2635. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  2636. <output>System.ObjectModel.dll</output>
  2637. <built_sources></built_sources>
  2638. <library_output>./../../../class/lib/net_4_x/Facades/System.ObjectModel.dll</library_output>
  2639. <fx_version>4.5</fx_version>
  2640. <profile>net_4_x</profile>
  2641. <response>System.ObjectModel.dll.sources</response>
  2642. </project>
  2643. <project dir="class/Facades/System.Reflection.Extensions" library="Facades_System.Reflection.Extensions-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 -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib</flags>
  2646. <output>System.Reflection.Extensions.dll</output>
  2647. <built_sources></built_sources>
  2648. <library_output>./../../../class/lib/net_4_x/Facades/System.Reflection.Extensions.dll</library_output>
  2649. <fx_version>4.5</fx_version>
  2650. <profile>net_4_x</profile>
  2651. <response>System.Reflection.Extensions.dll.sources</response>
  2652. </project>
  2653. <project dir="class/Facades/System.Reflection.Primitives" library="Facades_System.Reflection.Primitives-net_4_x">
  2654. <boot>false</boot>
  2655. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib</flags>
  2656. <output>System.Reflection.Primitives.dll</output>
  2657. <built_sources></built_sources>
  2658. <library_output>./../../../class/lib/net_4_x/Facades/System.Reflection.Primitives.dll</library_output>
  2659. <fx_version>4.5</fx_version>
  2660. <profile>net_4_x</profile>
  2661. <response>System.Reflection.Primitives.dll.sources</response>
  2662. </project>
  2663. <project dir="class/Facades/System.Reflection" library="Facades_System.Reflection-net_4_x">
  2664. <boot>false</boot>
  2665. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib</flags>
  2666. <output>System.Reflection.dll</output>
  2667. <built_sources></built_sources>
  2668. <library_output>./../../../class/lib/net_4_x/Facades/System.Reflection.dll</library_output>
  2669. <fx_version>4.5</fx_version>
  2670. <profile>net_4_x</profile>
  2671. <response>System.Reflection.dll.sources</response>
  2672. </project>
  2673. <project dir="class/Facades/System.Resources.ResourceManager" library="Facades_System.Resources.ResourceManager-net_4_x">
  2674. <boot>false</boot>
  2675. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib</flags>
  2676. <output>System.Resources.ResourceManager.dll</output>
  2677. <built_sources></built_sources>
  2678. <library_output>./../../../class/lib/net_4_x/Facades/System.Resources.ResourceManager.dll</library_output>
  2679. <fx_version>4.5</fx_version>
  2680. <profile>net_4_x</profile>
  2681. <response>System.Resources.ResourceManager.dll.sources</response>
  2682. </project>
  2683. <project dir="class/Facades/System.Runtime.Extensions" library="Facades_System.Runtime.Extensions-net_4_x">
  2684. <boot>false</boot>
  2685. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  2686. <output>System.Runtime.Extensions.dll</output>
  2687. <built_sources></built_sources>
  2688. <library_output>./../../../class/lib/net_4_x/Facades/System.Runtime.Extensions.dll</library_output>
  2689. <fx_version>4.5</fx_version>
  2690. <profile>net_4_x</profile>
  2691. <response>System.Runtime.Extensions.dll.sources</response>
  2692. </project>
  2693. <project dir="class/Facades/System.Runtime.InteropServices" library="Facades_System.Runtime.InteropServices-net_4_x">
  2694. <boot>false</boot>
  2695. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System -r:System.Core</flags>
  2696. <output>System.Runtime.InteropServices.dll</output>
  2697. <built_sources></built_sources>
  2698. <library_output>./../../../class/lib/net_4_x/Facades/System.Runtime.InteropServices.dll</library_output>
  2699. <fx_version>4.5</fx_version>
  2700. <profile>net_4_x</profile>
  2701. <response>System.Runtime.InteropServices.dll.sources</response>
  2702. </project>
  2703. <project dir="class/Facades/System.Runtime.InteropServices.WindowsRuntime" library="Facades_System.Runtime.InteropServices.WindowsRuntime-net_4_x">
  2704. <boot>false</boot>
  2705. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib</flags>
  2706. <output>System.Runtime.InteropServices.WindowsRuntime.dll</output>
  2707. <built_sources></built_sources>
  2708. <library_output>./../../../class/lib/net_4_x/Facades/System.Runtime.InteropServices.WindowsRuntime.dll</library_output>
  2709. <fx_version>4.5</fx_version>
  2710. <profile>net_4_x</profile>
  2711. <response>System.Runtime.InteropServices.WindowsRuntime.dll.sources</response>
  2712. </project>
  2713. <project dir="class/Facades/System.Runtime.Numerics" library="Facades_System.Runtime.Numerics-net_4_x">
  2714. <boot>false</boot>
  2715. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System.Numerics</flags>
  2716. <output>System.Runtime.Numerics.dll</output>
  2717. <built_sources></built_sources>
  2718. <library_output>./../../../class/lib/net_4_x/Facades/System.Runtime.Numerics.dll</library_output>
  2719. <fx_version>4.5</fx_version>
  2720. <profile>net_4_x</profile>
  2721. <response>System.Runtime.Numerics.dll.sources</response>
  2722. </project>
  2723. <project dir="class/Facades/System.Runtime.Serialization.Json" library="Facades_System.Runtime.Serialization.Json-net_4_x">
  2724. <boot>false</boot>
  2725. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System.Runtime.Serialization</flags>
  2726. <output>System.Runtime.Serialization.Json.dll</output>
  2727. <built_sources></built_sources>
  2728. <library_output>./../../../class/lib/net_4_x/Facades/System.Runtime.Serialization.Json.dll</library_output>
  2729. <fx_version>4.5</fx_version>
  2730. <profile>net_4_x</profile>
  2731. <response>System.Runtime.Serialization.Json.dll.sources</response>
  2732. </project>
  2733. <project dir="class/Facades/System.Runtime.Serialization.Primitives" library="Facades_System.Runtime.Serialization.Primitives-net_4_x">
  2734. <boot>false</boot>
  2735. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System.Runtime.Serialization</flags>
  2736. <output>System.Runtime.Serialization.Primitives.dll</output>
  2737. <built_sources></built_sources>
  2738. <library_output>./../../../class/lib/net_4_x/Facades/System.Runtime.Serialization.Primitives.dll</library_output>
  2739. <fx_version>4.5</fx_version>
  2740. <profile>net_4_x</profile>
  2741. <response>System.Runtime.Serialization.Primitives.dll.sources</response>
  2742. </project>
  2743. <project dir="class/Facades/System.Runtime.Serialization.Xml" library="Facades_System.Runtime.Serialization.Xml-net_4_x">
  2744. <boot>false</boot>
  2745. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System.Runtime.Serialization -r:System.Xml</flags>
  2746. <output>System.Runtime.Serialization.Xml.dll</output>
  2747. <built_sources></built_sources>
  2748. <library_output>./../../../class/lib/net_4_x/Facades/System.Runtime.Serialization.Xml.dll</library_output>
  2749. <fx_version>4.5</fx_version>
  2750. <profile>net_4_x</profile>
  2751. <response>System.Runtime.Serialization.Xml.dll.sources</response>
  2752. </project>
  2753. <project dir="class/Facades/System.Runtime" library="Facades_System.Runtime-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 -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System -r:System.ComponentModel.Composition -r:System.Core</flags>
  2756. <output>System.Runtime.dll</output>
  2757. <built_sources></built_sources>
  2758. <library_output>./../../../class/lib/net_4_x/Facades/System.Runtime.dll</library_output>
  2759. <fx_version>4.5</fx_version>
  2760. <profile>net_4_x</profile>
  2761. <response>System.Runtime.dll.sources</response>
  2762. </project>
  2763. <project dir="class/Facades/System.Security.Principal" library="Facades_System.Security.Principal-net_4_x">
  2764. <boot>false</boot>
  2765. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib</flags>
  2766. <output>System.Security.Principal.dll</output>
  2767. <built_sources></built_sources>
  2768. <library_output>./../../../class/lib/net_4_x/Facades/System.Security.Principal.dll</library_output>
  2769. <fx_version>4.5</fx_version>
  2770. <profile>net_4_x</profile>
  2771. <response>System.Security.Principal.dll.sources</response>
  2772. </project>
  2773. <project dir="class/Facades/System.ServiceModel.Http" library="Facades_System.ServiceModel.Http-net_4_x">
  2774. <boot>false</boot>
  2775. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System.ServiceModel</flags>
  2776. <output>System.ServiceModel.Http.dll</output>
  2777. <built_sources></built_sources>
  2778. <library_output>./../../../class/lib/net_4_x/Facades/System.ServiceModel.Http.dll</library_output>
  2779. <fx_version>4.5</fx_version>
  2780. <profile>net_4_x</profile>
  2781. <response>System.ServiceModel.Http.dll.sources</response>
  2782. </project>
  2783. <project dir="class/Facades/System.ServiceModel.Primitives" library="Facades_System.ServiceModel.Primitives-net_4_x">
  2784. <boot>false</boot>
  2785. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System.ServiceModel -r:System.Xml</flags>
  2786. <output>System.ServiceModel.Primitives.dll</output>
  2787. <built_sources></built_sources>
  2788. <library_output>./../../../class/lib/net_4_x/Facades/System.ServiceModel.Primitives.dll</library_output>
  2789. <fx_version>4.5</fx_version>
  2790. <profile>net_4_x</profile>
  2791. <response>System.ServiceModel.Primitives.dll.sources</response>
  2792. </project>
  2793. <project dir="class/Facades/System.ServiceModel.Security" library="Facades_System.ServiceModel.Security-net_4_x">
  2794. <boot>false</boot>
  2795. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System.ServiceModel</flags>
  2796. <output>System.ServiceModel.Security.dll</output>
  2797. <built_sources></built_sources>
  2798. <library_output>./../../../class/lib/net_4_x/Facades/System.ServiceModel.Security.dll</library_output>
  2799. <fx_version>4.5</fx_version>
  2800. <profile>net_4_x</profile>
  2801. <response>System.ServiceModel.Security.dll.sources</response>
  2802. </project>
  2803. <project dir="class/Facades/System.Text.Encoding.Extensions" library="Facades_System.Text.Encoding.Extensions-net_4_x">
  2804. <boot>false</boot>
  2805. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib</flags>
  2806. <output>System.Text.Encoding.Extensions.dll</output>
  2807. <built_sources></built_sources>
  2808. <library_output>./../../../class/lib/net_4_x/Facades/System.Text.Encoding.Extensions.dll</library_output>
  2809. <fx_version>4.5</fx_version>
  2810. <profile>net_4_x</profile>
  2811. <response>System.Text.Encoding.Extensions.dll.sources</response>
  2812. </project>
  2813. <project dir="class/Facades/System.Text.Encoding" library="Facades_System.Text.Encoding-net_4_x">
  2814. <boot>false</boot>
  2815. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib</flags>
  2816. <output>System.Text.Encoding.dll</output>
  2817. <built_sources></built_sources>
  2818. <library_output>./../../../class/lib/net_4_x/Facades/System.Text.Encoding.dll</library_output>
  2819. <fx_version>4.5</fx_version>
  2820. <profile>net_4_x</profile>
  2821. <response>System.Text.Encoding.dll.sources</response>
  2822. </project>
  2823. <project dir="class/Facades/System.Text.RegularExpressions" library="Facades_System.Text.RegularExpressions-net_4_x">
  2824. <boot>false</boot>
  2825. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  2826. <output>System.Text.RegularExpressions.dll</output>
  2827. <built_sources></built_sources>
  2828. <library_output>./../../../class/lib/net_4_x/Facades/System.Text.RegularExpressions.dll</library_output>
  2829. <fx_version>4.5</fx_version>
  2830. <profile>net_4_x</profile>
  2831. <response>System.Text.RegularExpressions.dll.sources</response>
  2832. </project>
  2833. <project dir="class/Facades/System.Threading.Tasks.Parallel" library="Facades_System.Threading.Tasks.Parallel-net_4_x">
  2834. <boot>false</boot>
  2835. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib</flags>
  2836. <output>System.Threading.Tasks.Parallel.dll</output>
  2837. <built_sources></built_sources>
  2838. <library_output>./../../../class/lib/net_4_x/Facades/System.Threading.Tasks.Parallel.dll</library_output>
  2839. <fx_version>4.5</fx_version>
  2840. <profile>net_4_x</profile>
  2841. <response>System.Threading.Tasks.Parallel.dll.sources</response>
  2842. </project>
  2843. <project dir="class/Facades/System.Threading.Tasks" library="Facades_System.Threading.Tasks-net_4_x">
  2844. <boot>false</boot>
  2845. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System.Core</flags>
  2846. <output>System.Threading.Tasks.dll</output>
  2847. <built_sources></built_sources>
  2848. <library_output>./../../../class/lib/net_4_x/Facades/System.Threading.Tasks.dll</library_output>
  2849. <fx_version>4.5</fx_version>
  2850. <profile>net_4_x</profile>
  2851. <response>System.Threading.Tasks.dll.sources</response>
  2852. </project>
  2853. <project dir="class/Facades/System.Threading.Timer" library="Facades_System.Threading.Timer-net_4_x">
  2854. <boot>false</boot>
  2855. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System -r:System.Core</flags>
  2856. <output>System.Threading.Timer.dll</output>
  2857. <built_sources></built_sources>
  2858. <library_output>./../../../class/lib/net_4_x/Facades/System.Threading.Timer.dll</library_output>
  2859. <fx_version>4.5</fx_version>
  2860. <profile>net_4_x</profile>
  2861. <response>System.Threading.Timer.dll.sources</response>
  2862. </project>
  2863. <project dir="class/Facades/System.Threading" library="Facades_System.Threading-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 -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System -r:System.Core</flags>
  2866. <output>System.Threading.dll</output>
  2867. <built_sources></built_sources>
  2868. <library_output>./../../../class/lib/net_4_x/Facades/System.Threading.dll</library_output>
  2869. <fx_version>4.5</fx_version>
  2870. <profile>net_4_x</profile>
  2871. <response>System.Threading.dll.sources</response>
  2872. </project>
  2873. <project dir="class/Facades/System.Xml.ReaderWriter" library="Facades_System.Xml.ReaderWriter-net_4_x">
  2874. <boot>false</boot>
  2875. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System.Xml</flags>
  2876. <output>System.Xml.ReaderWriter.dll</output>
  2877. <built_sources></built_sources>
  2878. <library_output>./../../../class/lib/net_4_x/Facades/System.Xml.ReaderWriter.dll</library_output>
  2879. <fx_version>4.5</fx_version>
  2880. <profile>net_4_x</profile>
  2881. <response>System.Xml.ReaderWriter.dll.sources</response>
  2882. </project>
  2883. <project dir="class/Facades/System.Xml.XDocument" library="Facades_System.Xml.XDocument-net_4_x">
  2884. <boot>false</boot>
  2885. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System.Xml.Linq -r:System.Xml</flags>
  2886. <output>System.Xml.XDocument.dll</output>
  2887. <built_sources></built_sources>
  2888. <library_output>./../../../class/lib/net_4_x/Facades/System.Xml.XDocument.dll</library_output>
  2889. <fx_version>4.5</fx_version>
  2890. <profile>net_4_x</profile>
  2891. <response>System.Xml.XDocument.dll.sources</response>
  2892. </project>
  2893. <project dir="class/Facades/System.Xml.XmlSerializer" library="Facades_System.Xml.XmlSerializer-net_4_x">
  2894. <boot>false</boot>
  2895. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System.Xml</flags>
  2896. <output>System.Xml.XmlSerializer.dll</output>
  2897. <built_sources></built_sources>
  2898. <library_output>./../../../class/lib/net_4_x/Facades/System.Xml.XmlSerializer.dll</library_output>
  2899. <fx_version>4.5</fx_version>
  2900. <profile>net_4_x</profile>
  2901. <response>System.Xml.XmlSerializer.dll.sources</response>
  2902. </project>
  2903. <project dir="class/Facades/System.Runtime.Handles" library="Facades_System.Runtime.Handles-net_4_x">
  2904. <boot>false</boot>
  2905. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System -r:System.Core</flags>
  2906. <output>System.Runtime.Handles.dll</output>
  2907. <built_sources></built_sources>
  2908. <library_output>./../../../class/lib/net_4_x/Facades/System.Runtime.Handles.dll</library_output>
  2909. <fx_version>4.5</fx_version>
  2910. <profile>net_4_x</profile>
  2911. <response>System.Runtime.Handles.dll.sources</response>
  2912. </project>
  2913. <project dir="class/Facades/System.ServiceModel.Duplex" library="Facades_System.ServiceModel.Duplex-net_4_x">
  2914. <boot>false</boot>
  2915. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System.ServiceModel</flags>
  2916. <output>System.ServiceModel.Duplex.dll</output>
  2917. <built_sources></built_sources>
  2918. <library_output>./../../../class/lib/net_4_x/Facades/System.ServiceModel.Duplex.dll</library_output>
  2919. <fx_version>4.5</fx_version>
  2920. <profile>net_4_x</profile>
  2921. <response>System.ServiceModel.Duplex.dll.sources</response>
  2922. </project>
  2923. <project dir="class/Facades/System.ServiceModel.NetTcp" library="Facades_System.ServiceModel.NetTcp-net_4_x">
  2924. <boot>false</boot>
  2925. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System.ServiceModel</flags>
  2926. <output>System.ServiceModel.NetTcp.dll</output>
  2927. <built_sources></built_sources>
  2928. <library_output>./../../../class/lib/net_4_x/Facades/System.ServiceModel.NetTcp.dll</library_output>
  2929. <fx_version>4.5</fx_version>
  2930. <profile>net_4_x</profile>
  2931. <response>System.ServiceModel.NetTcp.dll.sources</response>
  2932. </project>
  2933. <project dir="class/Facades/Microsoft.Win32.Primitives" library="Facades_Microsoft.Win32.Primitives-net_4_x">
  2934. <boot>false</boot>
  2935. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  2936. <output>Microsoft.Win32.Primitives.dll</output>
  2937. <built_sources></built_sources>
  2938. <library_output>./../../../class/lib/net_4_x/Facades/Microsoft.Win32.Primitives.dll</library_output>
  2939. <fx_version>4.5</fx_version>
  2940. <profile>net_4_x</profile>
  2941. <response>Microsoft.Win32.Primitives.dll.sources</response>
  2942. </project>
  2943. <project dir="class/Facades/Microsoft.Win32.Registry" library="Facades_Microsoft.Win32.Registry-net_4_x">
  2944. <boot>false</boot>
  2945. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  2946. <output>Microsoft.Win32.Registry.dll</output>
  2947. <built_sources></built_sources>
  2948. <library_output>./../../../class/lib/net_4_x/Facades/Microsoft.Win32.Registry.dll</library_output>
  2949. <fx_version>4.5</fx_version>
  2950. <profile>net_4_x</profile>
  2951. <response>Microsoft.Win32.Registry.dll.sources</response>
  2952. </project>
  2953. <project dir="class/Facades/System.AppContext" library="Facades_System.AppContext-net_4_x">
  2954. <boot>false</boot>
  2955. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  2956. <output>System.AppContext.dll</output>
  2957. <built_sources></built_sources>
  2958. <library_output>./../../../class/lib/net_4_x/Facades/System.AppContext.dll</library_output>
  2959. <fx_version>4.5</fx_version>
  2960. <profile>net_4_x</profile>
  2961. <response>System.AppContext.dll.sources</response>
  2962. </project>
  2963. <project dir="class/Facades/System.Collections.NonGeneric" library="Facades_System.Collections.NonGeneric-net_4_x">
  2964. <boot>false</boot>
  2965. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  2966. <output>System.Collections.NonGeneric.dll</output>
  2967. <built_sources></built_sources>
  2968. <library_output>./../../../class/lib/net_4_x/Facades/System.Collections.NonGeneric.dll</library_output>
  2969. <fx_version>4.5</fx_version>
  2970. <profile>net_4_x</profile>
  2971. <response>System.Collections.NonGeneric.dll.sources</response>
  2972. </project>
  2973. <project dir="class/Facades/System.Collections.Specialized" library="Facades_System.Collections.Specialized-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 -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  2976. <output>System.Collections.Specialized.dll</output>
  2977. <built_sources></built_sources>
  2978. <library_output>./../../../class/lib/net_4_x/Facades/System.Collections.Specialized.dll</library_output>
  2979. <fx_version>4.5</fx_version>
  2980. <profile>net_4_x</profile>
  2981. <response>System.Collections.Specialized.dll.sources</response>
  2982. </project>
  2983. <project dir="class/Facades/System.ComponentModel.Primitives" library="Facades_System.ComponentModel.Primitives-net_4_x">
  2984. <boot>false</boot>
  2985. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  2986. <output>System.ComponentModel.Primitives.dll</output>
  2987. <built_sources></built_sources>
  2988. <library_output>./../../../class/lib/net_4_x/Facades/System.ComponentModel.Primitives.dll</library_output>
  2989. <fx_version>4.5</fx_version>
  2990. <profile>net_4_x</profile>
  2991. <response>System.ComponentModel.Primitives.dll.sources</response>
  2992. </project>
  2993. <project dir="class/Facades/System.ComponentModel.TypeConverter" library="Facades_System.ComponentModel.TypeConverter-net_4_x">
  2994. <boot>false</boot>
  2995. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  2996. <output>System.ComponentModel.TypeConverter.dll</output>
  2997. <built_sources></built_sources>
  2998. <library_output>./../../../class/lib/net_4_x/Facades/System.ComponentModel.TypeConverter.dll</library_output>
  2999. <fx_version>4.5</fx_version>
  3000. <profile>net_4_x</profile>
  3001. <response>System.ComponentModel.TypeConverter.dll.sources</response>
  3002. </project>
  3003. <project dir="class/Facades/System.Console" library="Facades_System.Console-net_4_x">
  3004. <boot>false</boot>
  3005. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3006. <output>System.Console.dll</output>
  3007. <built_sources></built_sources>
  3008. <library_output>./../../../class/lib/net_4_x/Facades/System.Console.dll</library_output>
  3009. <fx_version>4.5</fx_version>
  3010. <profile>net_4_x</profile>
  3011. <response>System.Console.dll.sources</response>
  3012. </project>
  3013. <project dir="class/Facades/System.Data.Common" library="Facades_System.Data.Common-net_4_x">
  3014. <boot>false</boot>
  3015. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib /r:System.Data.dll -r:System</flags>
  3016. <output>System.Data.Common.dll</output>
  3017. <built_sources></built_sources>
  3018. <library_output>./../../../class/lib/net_4_x/Facades/System.Data.Common.dll</library_output>
  3019. <fx_version>4.5</fx_version>
  3020. <profile>net_4_x</profile>
  3021. <response>System.Data.Common.dll.sources</response>
  3022. </project>
  3023. <project dir="class/Facades/System.Data.SqlClient" library="Facades_System.Data.SqlClient-net_4_x">
  3024. <boot>false</boot>
  3025. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib /r:System.Data.dll /r:System.Xml.dll -r:System</flags>
  3026. <output>System.Data.SqlClient.dll</output>
  3027. <built_sources></built_sources>
  3028. <library_output>./../../../class/lib/net_4_x/Facades/System.Data.SqlClient.dll</library_output>
  3029. <fx_version>4.5</fx_version>
  3030. <profile>net_4_x</profile>
  3031. <response>System.Data.SqlClient.dll.sources</response>
  3032. </project>
  3033. <project dir="class/Facades/System.Diagnostics.FileVersionInfo" library="Facades_System.Diagnostics.FileVersionInfo-net_4_x">
  3034. <boot>false</boot>
  3035. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3036. <output>System.Diagnostics.FileVersionInfo.dll</output>
  3037. <built_sources></built_sources>
  3038. <library_output>./../../../class/lib/net_4_x/Facades/System.Diagnostics.FileVersionInfo.dll</library_output>
  3039. <fx_version>4.5</fx_version>
  3040. <profile>net_4_x</profile>
  3041. <response>System.Diagnostics.FileVersionInfo.dll.sources</response>
  3042. </project>
  3043. <project dir="class/Facades/System.Diagnostics.Process" library="Facades_System.Diagnostics.Process-net_4_x">
  3044. <boot>false</boot>
  3045. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3046. <output>System.Diagnostics.Process.dll</output>
  3047. <built_sources></built_sources>
  3048. <library_output>./../../../class/lib/net_4_x/Facades/System.Diagnostics.Process.dll</library_output>
  3049. <fx_version>4.5</fx_version>
  3050. <profile>net_4_x</profile>
  3051. <response>System.Diagnostics.Process.dll.sources</response>
  3052. </project>
  3053. <project dir="class/Facades/System.Diagnostics.TextWriterTraceListener" library="Facades_System.Diagnostics.TextWriterTraceListener-net_4_x">
  3054. <boot>false</boot>
  3055. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3056. <output>System.Diagnostics.TextWriterTraceListener.dll</output>
  3057. <built_sources></built_sources>
  3058. <library_output>./../../../class/lib/net_4_x/Facades/System.Diagnostics.TextWriterTraceListener.dll</library_output>
  3059. <fx_version>4.5</fx_version>
  3060. <profile>net_4_x</profile>
  3061. <response>System.Diagnostics.TextWriterTraceListener.dll.sources</response>
  3062. </project>
  3063. <project dir="class/Facades/System.Diagnostics.TraceEvent" library="Facades_System.Diagnostics.TraceEvent-net_4_x">
  3064. <boot>false</boot>
  3065. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3066. <output>System.Diagnostics.TraceEvent.dll</output>
  3067. <built_sources></built_sources>
  3068. <library_output>./../../../class/lib/net_4_x/Facades/System.Diagnostics.TraceEvent.dll</library_output>
  3069. <fx_version>4.5</fx_version>
  3070. <profile>net_4_x</profile>
  3071. <response>System.Diagnostics.TraceEvent.dll.sources</response>
  3072. </project>
  3073. <project dir="class/Facades/System.Diagnostics.TraceSource" library="Facades_System.Diagnostics.TraceSource-net_4_x">
  3074. <boot>false</boot>
  3075. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3076. <output>System.Diagnostics.TraceSource.dll</output>
  3077. <built_sources></built_sources>
  3078. <library_output>./../../../class/lib/net_4_x/Facades/System.Diagnostics.TraceSource.dll</library_output>
  3079. <fx_version>4.5</fx_version>
  3080. <profile>net_4_x</profile>
  3081. <response>System.Diagnostics.TraceSource.dll.sources</response>
  3082. </project>
  3083. <project dir="class/Facades/System.Globalization.Calendars" library="Facades_System.Globalization.Calendars-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 -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3086. <output>System.Globalization.Calendars.dll</output>
  3087. <built_sources></built_sources>
  3088. <library_output>./../../../class/lib/net_4_x/Facades/System.Globalization.Calendars.dll</library_output>
  3089. <fx_version>4.5</fx_version>
  3090. <profile>net_4_x</profile>
  3091. <response>System.Globalization.Calendars.dll.sources</response>
  3092. </project>
  3093. <project dir="class/Facades/System.IO.Compression" library="Facades_System.IO.Compression-net_4_x">
  3094. <boot>false</boot>
  3095. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib /r:System.IO.Compression.dll -r:System</flags>
  3096. <output>System.IO.Compression.dll</output>
  3097. <built_sources></built_sources>
  3098. <library_output>./../../../class/lib/net_4_x/Facades/System.IO.Compression.dll</library_output>
  3099. <fx_version>4.5</fx_version>
  3100. <profile>net_4_x</profile>
  3101. <response>System.IO.Compression.dll.sources</response>
  3102. </project>
  3103. <project dir="class/Facades/System.IO.Compression.ZipFile" library="Facades_System.IO.Compression.ZipFile-net_4_x">
  3104. <boot>false</boot>
  3105. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib /r:System.IO.Compression.FileSystem.dll -r:System</flags>
  3106. <output>System.IO.Compression.ZipFile.dll</output>
  3107. <built_sources></built_sources>
  3108. <library_output>./../../../class/lib/net_4_x/Facades/System.IO.Compression.ZipFile.dll</library_output>
  3109. <fx_version>4.5</fx_version>
  3110. <profile>net_4_x</profile>
  3111. <response>System.IO.Compression.ZipFile.dll.sources</response>
  3112. </project>
  3113. <project dir="class/Facades/System.IO.FileSystem" library="Facades_System.IO.FileSystem-net_4_x">
  3114. <boot>false</boot>
  3115. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3116. <output>System.IO.FileSystem.dll</output>
  3117. <built_sources></built_sources>
  3118. <library_output>./../../../class/lib/net_4_x/Facades/System.IO.FileSystem.dll</library_output>
  3119. <fx_version>4.5</fx_version>
  3120. <profile>net_4_x</profile>
  3121. <response>System.IO.FileSystem.dll.sources</response>
  3122. </project>
  3123. <project dir="class/Facades/System.IO.FileSystem.DriveInfo" library="Facades_System.IO.FileSystem.DriveInfo-net_4_x">
  3124. <boot>false</boot>
  3125. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3126. <output>System.IO.FileSystem.DriveInfo.dll</output>
  3127. <built_sources></built_sources>
  3128. <library_output>./../../../class/lib/net_4_x/Facades/System.IO.FileSystem.DriveInfo.dll</library_output>
  3129. <fx_version>4.5</fx_version>
  3130. <profile>net_4_x</profile>
  3131. <response>System.IO.FileSystem.DriveInfo.dll.sources</response>
  3132. </project>
  3133. <project dir="class/Facades/System.IO.FileSystem.Primitives" library="Facades_System.IO.FileSystem.Primitives-net_4_x">
  3134. <boot>false</boot>
  3135. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3136. <output>System.IO.FileSystem.Primitives.dll</output>
  3137. <built_sources></built_sources>
  3138. <library_output>./../../../class/lib/net_4_x/Facades/System.IO.FileSystem.Primitives.dll</library_output>
  3139. <fx_version>4.5</fx_version>
  3140. <profile>net_4_x</profile>
  3141. <response>System.IO.FileSystem.Primitives.dll.sources</response>
  3142. </project>
  3143. <project dir="class/Facades/System.IO.IsolatedStorage" library="Facades_System.IO.IsolatedStorage-net_4_x">
  3144. <boot>false</boot>
  3145. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3146. <output>System.IO.IsolatedStorage.dll</output>
  3147. <built_sources></built_sources>
  3148. <library_output>./../../../class/lib/net_4_x/Facades/System.IO.IsolatedStorage.dll</library_output>
  3149. <fx_version>4.5</fx_version>
  3150. <profile>net_4_x</profile>
  3151. <response>System.IO.IsolatedStorage.dll.sources</response>
  3152. </project>
  3153. <project dir="class/Facades/System.IO.MemoryMappedFiles" library="Facades_System.IO.MemoryMappedFiles-net_4_x">
  3154. <boot>false</boot>
  3155. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib /r:System.Core.dll -r:System</flags>
  3156. <output>System.IO.MemoryMappedFiles.dll</output>
  3157. <built_sources></built_sources>
  3158. <library_output>./../../../class/lib/net_4_x/Facades/System.IO.MemoryMappedFiles.dll</library_output>
  3159. <fx_version>4.5</fx_version>
  3160. <profile>net_4_x</profile>
  3161. <response>System.IO.MemoryMappedFiles.dll.sources</response>
  3162. </project>
  3163. <project dir="class/Facades/System.IO.UnmanagedMemoryStream" library="Facades_System.IO.UnmanagedMemoryStream-net_4_x">
  3164. <boot>false</boot>
  3165. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3166. <output>System.IO.UnmanagedMemoryStream.dll</output>
  3167. <built_sources></built_sources>
  3168. <library_output>./../../../class/lib/net_4_x/Facades/System.IO.UnmanagedMemoryStream.dll</library_output>
  3169. <fx_version>4.5</fx_version>
  3170. <profile>net_4_x</profile>
  3171. <response>System.IO.UnmanagedMemoryStream.dll.sources</response>
  3172. </project>
  3173. <project dir="class/Facades/System.Net.AuthenticationManager" library="Facades_System.Net.AuthenticationManager-net_4_x">
  3174. <boot>false</boot>
  3175. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3176. <output>System.Net.AuthenticationManager.dll</output>
  3177. <built_sources></built_sources>
  3178. <library_output>./../../../class/lib/net_4_x/Facades/System.Net.AuthenticationManager.dll</library_output>
  3179. <fx_version>4.5</fx_version>
  3180. <profile>net_4_x</profile>
  3181. <response>System.Net.AuthenticationManager.dll.sources</response>
  3182. </project>
  3183. <project dir="class/Facades/System.Net.Cache" library="Facades_System.Net.Cache-net_4_x">
  3184. <boot>false</boot>
  3185. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3186. <output>System.Net.Cache.dll</output>
  3187. <built_sources></built_sources>
  3188. <library_output>./../../../class/lib/net_4_x/Facades/System.Net.Cache.dll</library_output>
  3189. <fx_version>4.5</fx_version>
  3190. <profile>net_4_x</profile>
  3191. <response>System.Net.Cache.dll.sources</response>
  3192. </project>
  3193. <project dir="class/Facades/System.Net.HttpListener" library="Facades_System.Net.HttpListener-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 -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib /r:System.dll -r:System</flags>
  3196. <output>System.Net.HttpListener.dll</output>
  3197. <built_sources></built_sources>
  3198. <library_output>./../../../class/lib/net_4_x/Facades/System.Net.HttpListener.dll</library_output>
  3199. <fx_version>4.5</fx_version>
  3200. <profile>net_4_x</profile>
  3201. <response>System.Net.HttpListener.dll.sources</response>
  3202. </project>
  3203. <project dir="class/Facades/System.Net.Mail" library="Facades_System.Net.Mail-net_4_x">
  3204. <boot>false</boot>
  3205. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib /r:System.dll -r:System</flags>
  3206. <output>System.Net.Mail.dll</output>
  3207. <built_sources></built_sources>
  3208. <library_output>./../../../class/lib/net_4_x/Facades/System.Net.Mail.dll</library_output>
  3209. <fx_version>4.5</fx_version>
  3210. <profile>net_4_x</profile>
  3211. <response>System.Net.Mail.dll.sources</response>
  3212. </project>
  3213. <project dir="class/Facades/System.Net.NameResolution" library="Facades_System.Net.NameResolution-net_4_x">
  3214. <boot>false</boot>
  3215. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3216. <output>System.Net.NameResolution.dll</output>
  3217. <built_sources></built_sources>
  3218. <library_output>./../../../class/lib/net_4_x/Facades/System.Net.NameResolution.dll</library_output>
  3219. <fx_version>4.5</fx_version>
  3220. <profile>net_4_x</profile>
  3221. <response>System.Net.NameResolution.dll.sources</response>
  3222. </project>
  3223. <project dir="class/Facades/System.Net.Security" library="Facades_System.Net.Security-net_4_x">
  3224. <boot>false</boot>
  3225. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib /r:System.dll -r:System</flags>
  3226. <output>System.Net.Security.dll</output>
  3227. <built_sources></built_sources>
  3228. <library_output>./../../../class/lib/net_4_x/Facades/System.Net.Security.dll</library_output>
  3229. <fx_version>4.5</fx_version>
  3230. <profile>net_4_x</profile>
  3231. <response>System.Net.Security.dll.sources</response>
  3232. </project>
  3233. <project dir="class/Facades/System.Net.ServicePoint" library="Facades_System.Net.ServicePoint-net_4_x">
  3234. <boot>false</boot>
  3235. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3236. <output>System.Net.ServicePoint.dll</output>
  3237. <built_sources></built_sources>
  3238. <library_output>./../../../class/lib/net_4_x/Facades/System.Net.ServicePoint.dll</library_output>
  3239. <fx_version>4.5</fx_version>
  3240. <profile>net_4_x</profile>
  3241. <response>System.Net.ServicePoint.dll.sources</response>
  3242. </project>
  3243. <project dir="class/Facades/System.Net.Sockets" library="Facades_System.Net.Sockets-net_4_x">
  3244. <boot>false</boot>
  3245. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib /r:System.dll -r:System</flags>
  3246. <output>System.Net.Sockets.dll</output>
  3247. <built_sources></built_sources>
  3248. <library_output>./../../../class/lib/net_4_x/Facades/System.Net.Sockets.dll</library_output>
  3249. <fx_version>4.5</fx_version>
  3250. <profile>net_4_x</profile>
  3251. <response>System.Net.Sockets.dll.sources</response>
  3252. </project>
  3253. <project dir="class/Facades/System.Net.Utilities" library="Facades_System.Net.Utilities-net_4_x">
  3254. <boot>false</boot>
  3255. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3256. <output>System.Net.Utilities.dll</output>
  3257. <built_sources></built_sources>
  3258. <library_output>./../../../class/lib/net_4_x/Facades/System.Net.Utilities.dll</library_output>
  3259. <fx_version>4.5</fx_version>
  3260. <profile>net_4_x</profile>
  3261. <response>System.Net.Utilities.dll.sources</response>
  3262. </project>
  3263. <project dir="class/Facades/System.Net.WebHeaderCollection" library="Facades_System.Net.WebHeaderCollection-net_4_x">
  3264. <boot>false</boot>
  3265. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3266. <output>System.Net.WebHeaderCollection.dll</output>
  3267. <built_sources></built_sources>
  3268. <library_output>./../../../class/lib/net_4_x/Facades/System.Net.WebHeaderCollection.dll</library_output>
  3269. <fx_version>4.5</fx_version>
  3270. <profile>net_4_x</profile>
  3271. <response>System.Net.WebHeaderCollection.dll.sources</response>
  3272. </project>
  3273. <project dir="class/Facades/System.Net.WebSockets" library="Facades_System.Net.WebSockets-net_4_x">
  3274. <boot>false</boot>
  3275. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3276. <output>System.Net.WebSockets.dll</output>
  3277. <built_sources></built_sources>
  3278. <library_output>./../../../class/lib/net_4_x/Facades/System.Net.WebSockets.dll</library_output>
  3279. <fx_version>4.5</fx_version>
  3280. <profile>net_4_x</profile>
  3281. <response>System.Net.WebSockets.dll.sources</response>
  3282. </project>
  3283. <project dir="class/Facades/System.Net.WebSockets.Client" library="Facades_System.Net.WebSockets.Client-net_4_x">
  3284. <boot>false</boot>
  3285. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3286. <output>System.Net.WebSockets.Client.dll</output>
  3287. <built_sources></built_sources>
  3288. <library_output>./../../../class/lib/net_4_x/Facades/System.Net.WebSockets.Client.dll</library_output>
  3289. <fx_version>4.5</fx_version>
  3290. <profile>net_4_x</profile>
  3291. <response>System.Net.WebSockets.Client.dll.sources</response>
  3292. </project>
  3293. <project dir="class/Facades/System.Resources.ReaderWriter" library="Facades_System.Resources.ReaderWriter-net_4_x">
  3294. <boot>false</boot>
  3295. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3296. <output>System.Resources.ReaderWriter.dll</output>
  3297. <built_sources></built_sources>
  3298. <library_output>./../../../class/lib/net_4_x/Facades/System.Resources.ReaderWriter.dll</library_output>
  3299. <fx_version>4.5</fx_version>
  3300. <profile>net_4_x</profile>
  3301. <response>System.Resources.ReaderWriter.dll.sources</response>
  3302. </project>
  3303. <project dir="class/Facades/System.Runtime.CompilerServices.VisualC" library="Facades_System.Runtime.CompilerServices.VisualC-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 -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3306. <output>System.Runtime.CompilerServices.VisualC.dll</output>
  3307. <built_sources></built_sources>
  3308. <library_output>./../../../class/lib/net_4_x/Facades/System.Runtime.CompilerServices.VisualC.dll</library_output>
  3309. <fx_version>4.5</fx_version>
  3310. <profile>net_4_x</profile>
  3311. <response>System.Runtime.CompilerServices.VisualC.dll.sources</response>
  3312. </project>
  3313. <project dir="class/Facades/System.Security.AccessControl" library="Facades_System.Security.AccessControl-net_4_x">
  3314. <boot>false</boot>
  3315. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3316. <output>System.Security.AccessControl.dll</output>
  3317. <built_sources></built_sources>
  3318. <library_output>./../../../class/lib/net_4_x/Facades/System.Security.AccessControl.dll</library_output>
  3319. <fx_version>4.5</fx_version>
  3320. <profile>net_4_x</profile>
  3321. <response>System.Security.AccessControl.dll.sources</response>
  3322. </project>
  3323. <project dir="class/Facades/System.Security.Claims" library="Facades_System.Security.Claims-net_4_x">
  3324. <boot>false</boot>
  3325. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3326. <output>System.Security.Claims.dll</output>
  3327. <built_sources></built_sources>
  3328. <library_output>./../../../class/lib/net_4_x/Facades/System.Security.Claims.dll</library_output>
  3329. <fx_version>4.5</fx_version>
  3330. <profile>net_4_x</profile>
  3331. <response>System.Security.Claims.dll.sources</response>
  3332. </project>
  3333. <project dir="class/Facades/System.Security.Cryptography.DeriveBytes" library="Facades_System.Security.Cryptography.DeriveBytes-net_4_x">
  3334. <boot>false</boot>
  3335. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3336. <output>System.Security.Cryptography.DeriveBytes.dll</output>
  3337. <built_sources></built_sources>
  3338. <library_output>./../../../class/lib/net_4_x/Facades/System.Security.Cryptography.DeriveBytes.dll</library_output>
  3339. <fx_version>4.5</fx_version>
  3340. <profile>net_4_x</profile>
  3341. <response>System.Security.Cryptography.DeriveBytes.dll.sources</response>
  3342. </project>
  3343. <project dir="class/Facades/System.Security.Cryptography.Encoding" library="Facades_System.Security.Cryptography.Encoding-net_4_x">
  3344. <boot>false</boot>
  3345. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3346. <output>System.Security.Cryptography.Encoding.dll</output>
  3347. <built_sources></built_sources>
  3348. <library_output>./../../../class/lib/net_4_x/Facades/System.Security.Cryptography.Encoding.dll</library_output>
  3349. <fx_version>4.5</fx_version>
  3350. <profile>net_4_x</profile>
  3351. <response>System.Security.Cryptography.Encoding.dll.sources</response>
  3352. </project>
  3353. <project dir="class/Facades/System.Security.Cryptography.Encryption" library="Facades_System.Security.Cryptography.Encryption-net_4_x">
  3354. <boot>false</boot>
  3355. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3356. <output>System.Security.Cryptography.Encryption.dll</output>
  3357. <built_sources></built_sources>
  3358. <library_output>./../../../class/lib/net_4_x/Facades/System.Security.Cryptography.Encryption.dll</library_output>
  3359. <fx_version>4.5</fx_version>
  3360. <profile>net_4_x</profile>
  3361. <response>System.Security.Cryptography.Encryption.dll.sources</response>
  3362. </project>
  3363. <project dir="class/Facades/System.Security.Cryptography.Encryption.Aes" library="Facades_System.Security.Cryptography.Encryption.Aes-net_4_x">
  3364. <boot>false</boot>
  3365. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3366. <output>System.Security.Cryptography.Encryption.Aes.dll</output>
  3367. <built_sources></built_sources>
  3368. <library_output>./../../../class/lib/net_4_x/Facades/System.Security.Cryptography.Encryption.Aes.dll</library_output>
  3369. <fx_version>4.5</fx_version>
  3370. <profile>net_4_x</profile>
  3371. <response>System.Security.Cryptography.Encryption.Aes.dll.sources</response>
  3372. </project>
  3373. <project dir="class/Facades/System.Security.Cryptography.Encryption.ECDiffieHellman" library="Facades_System.Security.Cryptography.Encryption.ECDiffieHellman-net_4_x">
  3374. <boot>false</boot>
  3375. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib /r:System.Core.dll -r:System</flags>
  3376. <output>System.Security.Cryptography.Encryption.ECDiffieHellman.dll</output>
  3377. <built_sources></built_sources>
  3378. <library_output>./../../../class/lib/net_4_x/Facades/System.Security.Cryptography.Encryption.ECDiffieHellman.dll</library_output>
  3379. <fx_version>4.5</fx_version>
  3380. <profile>net_4_x</profile>
  3381. <response>System.Security.Cryptography.Encryption.ECDiffieHellman.dll.sources</response>
  3382. </project>
  3383. <project dir="class/Facades/System.Security.Cryptography.Encryption.ECDsa" library="Facades_System.Security.Cryptography.Encryption.ECDsa-net_4_x">
  3384. <boot>false</boot>
  3385. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib /r:System.Core.dll -r:System</flags>
  3386. <output>System.Security.Cryptography.Encryption.ECDsa.dll</output>
  3387. <built_sources></built_sources>
  3388. <library_output>./../../../class/lib/net_4_x/Facades/System.Security.Cryptography.Encryption.ECDsa.dll</library_output>
  3389. <fx_version>4.5</fx_version>
  3390. <profile>net_4_x</profile>
  3391. <response>System.Security.Cryptography.Encryption.ECDsa.dll.sources</response>
  3392. </project>
  3393. <project dir="class/Facades/System.Security.Cryptography.Hashing" library="Facades_System.Security.Cryptography.Hashing-net_4_x">
  3394. <boot>false</boot>
  3395. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3396. <output>System.Security.Cryptography.Hashing.dll</output>
  3397. <built_sources></built_sources>
  3398. <library_output>./../../../class/lib/net_4_x/Facades/System.Security.Cryptography.Hashing.dll</library_output>
  3399. <fx_version>4.5</fx_version>
  3400. <profile>net_4_x</profile>
  3401. <response>System.Security.Cryptography.Hashing.dll.sources</response>
  3402. </project>
  3403. <project dir="class/Facades/System.Security.Cryptography.Hashing.Algorithms" library="Facades_System.Security.Cryptography.Hashing.Algorithms-net_4_x">
  3404. <boot>false</boot>
  3405. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3406. <output>System.Security.Cryptography.Hashing.Algorithms.dll</output>
  3407. <built_sources></built_sources>
  3408. <library_output>./../../../class/lib/net_4_x/Facades/System.Security.Cryptography.Hashing.Algorithms.dll</library_output>
  3409. <fx_version>4.5</fx_version>
  3410. <profile>net_4_x</profile>
  3411. <response>System.Security.Cryptography.Hashing.Algorithms.dll.sources</response>
  3412. </project>
  3413. <project dir="class/Facades/System.Security.Cryptography.RSA" library="Facades_System.Security.Cryptography.RSA-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 -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3416. <output>System.Security.Cryptography.RSA.dll</output>
  3417. <built_sources></built_sources>
  3418. <library_output>./../../../class/lib/net_4_x/Facades/System.Security.Cryptography.RSA.dll</library_output>
  3419. <fx_version>4.5</fx_version>
  3420. <profile>net_4_x</profile>
  3421. <response>System.Security.Cryptography.RSA.dll.sources</response>
  3422. </project>
  3423. <project dir="class/Facades/System.Security.Cryptography.RandomNumberGenerator" library="Facades_System.Security.Cryptography.RandomNumberGenerator-net_4_x">
  3424. <boot>false</boot>
  3425. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3426. <output>System.Security.Cryptography.RandomNumberGenerator.dll</output>
  3427. <built_sources></built_sources>
  3428. <library_output>./../../../class/lib/net_4_x/Facades/System.Security.Cryptography.RandomNumberGenerator.dll</library_output>
  3429. <fx_version>4.5</fx_version>
  3430. <profile>net_4_x</profile>
  3431. <response>System.Security.Cryptography.RandomNumberGenerator.dll.sources</response>
  3432. </project>
  3433. <project dir="class/Facades/System.Security.Cryptography.X509Certificates" library="Facades_System.Security.Cryptography.X509Certificates-net_4_x">
  3434. <boot>false</boot>
  3435. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3436. <output>System.Security.Cryptography.X509Certificates.dll</output>
  3437. <built_sources></built_sources>
  3438. <library_output>./../../../class/lib/net_4_x/Facades/System.Security.Cryptography.X509Certificates.dll</library_output>
  3439. <fx_version>4.5</fx_version>
  3440. <profile>net_4_x</profile>
  3441. <response>System.Security.Cryptography.X509Certificates.dll.sources</response>
  3442. </project>
  3443. <project dir="class/Facades/System.Security.Principal.Windows" library="Facades_System.Security.Principal.Windows-net_4_x">
  3444. <boot>false</boot>
  3445. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3446. <output>System.Security.Principal.Windows.dll</output>
  3447. <built_sources></built_sources>
  3448. <library_output>./../../../class/lib/net_4_x/Facades/System.Security.Principal.Windows.dll</library_output>
  3449. <fx_version>4.5</fx_version>
  3450. <profile>net_4_x</profile>
  3451. <response>System.Security.Principal.Windows.dll.sources</response>
  3452. </project>
  3453. <project dir="class/Facades/System.Threading.Thread" library="Facades_System.Threading.Thread-net_4_x">
  3454. <boot>false</boot>
  3455. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3456. <output>System.Threading.Thread.dll</output>
  3457. <built_sources></built_sources>
  3458. <library_output>./../../../class/lib/net_4_x/Facades/System.Threading.Thread.dll</library_output>
  3459. <fx_version>4.5</fx_version>
  3460. <profile>net_4_x</profile>
  3461. <response>System.Threading.Thread.dll.sources</response>
  3462. </project>
  3463. <project dir="class/Facades/System.Threading.ThreadPool" library="Facades_System.Threading.ThreadPool-net_4_x">
  3464. <boot>false</boot>
  3465. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3466. <output>System.Threading.ThreadPool.dll</output>
  3467. <built_sources></built_sources>
  3468. <library_output>./../../../class/lib/net_4_x/Facades/System.Threading.ThreadPool.dll</library_output>
  3469. <fx_version>4.5</fx_version>
  3470. <profile>net_4_x</profile>
  3471. <response>System.Threading.ThreadPool.dll.sources</response>
  3472. </project>
  3473. <project dir="class/Facades/System.Xml.XPath" library="Facades_System.Xml.XPath-net_4_x">
  3474. <boot>false</boot>
  3475. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib /r:System.Xml.dll -r:System</flags>
  3476. <output>System.Xml.XPath.dll</output>
  3477. <built_sources></built_sources>
  3478. <library_output>./../../../class/lib/net_4_x/Facades/System.Xml.XPath.dll</library_output>
  3479. <fx_version>4.5</fx_version>
  3480. <profile>net_4_x</profile>
  3481. <response>System.Xml.XPath.dll.sources</response>
  3482. </project>
  3483. <project dir="class/Facades/System.Xml.XmlDocument" library="Facades_System.Xml.XmlDocument-net_4_x">
  3484. <boot>false</boot>
  3485. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib /r:System.Xml.dll -r:System</flags>
  3486. <output>System.Xml.XmlDocument.dll</output>
  3487. <built_sources></built_sources>
  3488. <library_output>./../../../class/lib/net_4_x/Facades/System.Xml.XmlDocument.dll</library_output>
  3489. <fx_version>4.5</fx_version>
  3490. <profile>net_4_x</profile>
  3491. <response>System.Xml.XmlDocument.dll.sources</response>
  3492. </project>
  3493. <project dir="class/Facades/System.Xml.Xsl.Primitives" library="Facades_System.Xml.Xsl.Primitives-net_4_x">
  3494. <boot>false</boot>
  3495. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib /r:System.Xml.dll -r:System</flags>
  3496. <output>System.Xml.Xsl.Primitives.dll</output>
  3497. <built_sources></built_sources>
  3498. <library_output>./../../../class/lib/net_4_x/Facades/System.Xml.Xsl.Primitives.dll</library_output>
  3499. <fx_version>4.5</fx_version>
  3500. <profile>net_4_x</profile>
  3501. <response>System.Xml.Xsl.Primitives.dll.sources</response>
  3502. </project>
  3503. <project dir="class/Facades/Microsoft.Win32.Registry.AccessControl" library="Facades_Microsoft.Win32.Registry.AccessControl-net_4_x">
  3504. <boot>false</boot>
  3505. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3506. <output>Microsoft.Win32.Registry.AccessControl.dll</output>
  3507. <built_sources></built_sources>
  3508. <library_output>./../../../class/lib/net_4_x/Facades/Microsoft.Win32.Registry.AccessControl.dll</library_output>
  3509. <fx_version>4.5</fx_version>
  3510. <profile>net_4_x</profile>
  3511. <response>Microsoft.Win32.Registry.AccessControl.dll.sources</response>
  3512. </project>
  3513. <project dir="class/Facades/System.Diagnostics.StackTrace" library="Facades_System.Diagnostics.StackTrace-net_4_x">
  3514. <boot>false</boot>
  3515. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3516. <output>System.Diagnostics.StackTrace.dll</output>
  3517. <built_sources></built_sources>
  3518. <library_output>./../../../class/lib/net_4_x/Facades/System.Diagnostics.StackTrace.dll</library_output>
  3519. <fx_version>4.5</fx_version>
  3520. <profile>net_4_x</profile>
  3521. <response>System.Diagnostics.StackTrace.dll.sources</response>
  3522. </project>
  3523. <project dir="class/Facades/System.Globalization.Extensions" library="Facades_System.Globalization.Extensions-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 -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3526. <output>System.Globalization.Extensions.dll</output>
  3527. <built_sources></built_sources>
  3528. <library_output>./../../../class/lib/net_4_x/Facades/System.Globalization.Extensions.dll</library_output>
  3529. <fx_version>4.5</fx_version>
  3530. <profile>net_4_x</profile>
  3531. <response>System.Globalization.Extensions.dll.sources</response>
  3532. </project>
  3533. <project dir="class/Facades/System.IO.FileSystem.AccessControl" library="Facades_System.IO.FileSystem.AccessControl-net_4_x">
  3534. <boot>false</boot>
  3535. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3536. <output>System.IO.FileSystem.AccessControl.dll</output>
  3537. <built_sources></built_sources>
  3538. <library_output>./../../../class/lib/net_4_x/Facades/System.IO.FileSystem.AccessControl.dll</library_output>
  3539. <fx_version>4.5</fx_version>
  3540. <profile>net_4_x</profile>
  3541. <response>System.IO.FileSystem.AccessControl.dll.sources</response>
  3542. </project>
  3543. <project dir="class/Facades/System.Private.CoreLib.InteropServices" library="Facades_System.Private.CoreLib.InteropServices-net_4_x">
  3544. <boot>false</boot>
  3545. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3546. <output>System.Private.CoreLib.InteropServices.dll</output>
  3547. <built_sources></built_sources>
  3548. <library_output>./../../../class/lib/net_4_x/Facades/System.Private.CoreLib.InteropServices.dll</library_output>
  3549. <fx_version>4.5</fx_version>
  3550. <profile>net_4_x</profile>
  3551. <response>System.Private.CoreLib.InteropServices.dll.sources</response>
  3552. </project>
  3553. <project dir="class/Facades/System.Private.CoreLib.Threading" library="Facades_System.Private.CoreLib.Threading-net_4_x">
  3554. <boot>false</boot>
  3555. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3556. <output>System.Private.CoreLib.Threading.dll</output>
  3557. <built_sources></built_sources>
  3558. <library_output>./../../../class/lib/net_4_x/Facades/System.Private.CoreLib.Threading.dll</library_output>
  3559. <fx_version>4.5</fx_version>
  3560. <profile>net_4_x</profile>
  3561. <response>System.Private.CoreLib.Threading.dll.sources</response>
  3562. </project>
  3563. <project dir="class/Facades/System.Reflection.TypeExtensions" library="Facades_System.Reflection.TypeExtensions-net_4_x">
  3564. <boot>false</boot>
  3565. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3566. <output>System.Reflection.TypeExtensions.dll</output>
  3567. <built_sources></built_sources>
  3568. <library_output>./../../../class/lib/net_4_x/Facades/System.Reflection.TypeExtensions.dll</library_output>
  3569. <fx_version>4.5</fx_version>
  3570. <profile>net_4_x</profile>
  3571. <response>System.Reflection.TypeExtensions.dll.sources</response>
  3572. </project>
  3573. <project dir="class/Facades/System.Security.SecureString" library="Facades_System.Security.SecureString-net_4_x">
  3574. <boot>false</boot>
  3575. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3576. <output>System.Security.SecureString.dll</output>
  3577. <built_sources></built_sources>
  3578. <library_output>./../../../class/lib/net_4_x/Facades/System.Security.SecureString.dll</library_output>
  3579. <fx_version>4.5</fx_version>
  3580. <profile>net_4_x</profile>
  3581. <response>System.Security.SecureString.dll.sources</response>
  3582. </project>
  3583. <project dir="class/Facades/System.Threading.AccessControl" library="Facades_System.Threading.AccessControl-net_4_x">
  3584. <boot>false</boot>
  3585. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3586. <output>System.Threading.AccessControl.dll</output>
  3587. <built_sources></built_sources>
  3588. <library_output>./../../../class/lib/net_4_x/Facades/System.Threading.AccessControl.dll</library_output>
  3589. <fx_version>4.5</fx_version>
  3590. <profile>net_4_x</profile>
  3591. <response>System.Threading.AccessControl.dll.sources</response>
  3592. </project>
  3593. <project dir="class/Facades/System.Threading.Overlapped" library="Facades_System.Threading.Overlapped-net_4_x">
  3594. <boot>false</boot>
  3595. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3596. <output>System.Threading.Overlapped.dll</output>
  3597. <built_sources></built_sources>
  3598. <library_output>./../../../class/lib/net_4_x/Facades/System.Threading.Overlapped.dll</library_output>
  3599. <fx_version>4.5</fx_version>
  3600. <profile>net_4_x</profile>
  3601. <response>System.Threading.Overlapped.dll.sources</response>
  3602. </project>
  3603. <project dir="class/Facades/System.Xml.XPath.XDocument" library="Facades_System.Xml.XPath.XDocument-net_4_x">
  3604. <boot>false</boot>
  3605. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib /r:System.Xml.Linq.dll -r:System</flags>
  3606. <output>System.Xml.XPath.XDocument.dll</output>
  3607. <built_sources></built_sources>
  3608. <library_output>./../../../class/lib/net_4_x/Facades/System.Xml.XPath.XDocument.dll</library_output>
  3609. <fx_version>4.5</fx_version>
  3610. <profile>net_4_x</profile>
  3611. <response>System.Xml.XPath.XDocument.dll.sources</response>
  3612. </project>
  3613. <project dir="class/Facades/System.Reflection.Emit.ILGeneration" library="Facades_System.Reflection.Emit.ILGeneration-net_4_x">
  3614. <boot>false</boot>
  3615. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib</flags>
  3616. <output>System.Reflection.Emit.ILGeneration.dll</output>
  3617. <built_sources></built_sources>
  3618. <library_output>./../../../class/lib/net_4_x/Facades/System.Reflection.Emit.ILGeneration.dll</library_output>
  3619. <fx_version>4.5</fx_version>
  3620. <profile>net_4_x</profile>
  3621. <response>System.Reflection.Emit.ILGeneration.dll.sources</response>
  3622. </project>
  3623. <project dir="class/Facades/System.Reflection.Emit.Lightweight" library="Facades_System.Reflection.Emit.Lightweight-net_4_x">
  3624. <boot>false</boot>
  3625. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib</flags>
  3626. <output>System.Reflection.Emit.Lightweight.dll</output>
  3627. <built_sources></built_sources>
  3628. <library_output>./../../../class/lib/net_4_x/Facades/System.Reflection.Emit.Lightweight.dll</library_output>
  3629. <fx_version>4.5</fx_version>
  3630. <profile>net_4_x</profile>
  3631. <response>System.Reflection.Emit.Lightweight.dll.sources</response>
  3632. </project>
  3633. <project dir="class/Facades/System.Reflection.Emit" library="Facades_System.Reflection.Emit-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 -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib</flags>
  3636. <output>System.Reflection.Emit.dll</output>
  3637. <built_sources></built_sources>
  3638. <library_output>./../../../class/lib/net_4_x/Facades/System.Reflection.Emit.dll</library_output>
  3639. <fx_version>4.5</fx_version>
  3640. <profile>net_4_x</profile>
  3641. <response>System.Reflection.Emit.dll.sources</response>
  3642. </project>
  3643. <project dir="class/Facades/System.Diagnostics.PerformanceCounter" library="Facades_System.Diagnostics.PerformanceCounter-net_4_x">
  3644. <boot>false</boot>
  3645. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3646. <output>System.Diagnostics.PerformanceCounter.dll</output>
  3647. <built_sources></built_sources>
  3648. <library_output>./../../../class/lib/net_4_x/Facades/System.Diagnostics.PerformanceCounter.dll</library_output>
  3649. <fx_version>4.5</fx_version>
  3650. <profile>net_4_x</profile>
  3651. <response>System.Diagnostics.PerformanceCounter.dll.sources</response>
  3652. </project>
  3653. <project dir="class/Facades/System.IO.FileSystem.Watcher" library="Facades_System.IO.FileSystem.Watcher-net_4_x">
  3654. <boot>false</boot>
  3655. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib -r:System</flags>
  3656. <output>System.IO.FileSystem.Watcher.dll</output>
  3657. <built_sources></built_sources>
  3658. <library_output>./../../../class/lib/net_4_x/Facades/System.IO.FileSystem.Watcher.dll</library_output>
  3659. <fx_version>4.5</fx_version>
  3660. <profile>net_4_x</profile>
  3661. <response>System.IO.FileSystem.Watcher.dll.sources</response>
  3662. </project>
  3663. <project dir="class/Facades/System.IO.Pipes" library="Facades_System.IO.Pipes-net_4_x">
  3664. <boot>false</boot>
  3665. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib /r:System.Core.dll -r:System</flags>
  3666. <output>System.IO.Pipes.dll</output>
  3667. <built_sources></built_sources>
  3668. <library_output>./../../../class/lib/net_4_x/Facades/System.IO.Pipes.dll</library_output>
  3669. <fx_version>4.5</fx_version>
  3670. <profile>net_4_x</profile>
  3671. <response>System.IO.Pipes.dll.sources</response>
  3672. </project>
  3673. <project dir="class/Facades/System.Security.Cryptography.ProtectedData" library="Facades_System.Security.Cryptography.ProtectedData-net_4_x">
  3674. <boot>false</boot>
  3675. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib /r:System.Security.dll -r:System</flags>
  3676. <output>System.Security.Cryptography.ProtectedData.dll</output>
  3677. <built_sources></built_sources>
  3678. <library_output>./../../../class/lib/net_4_x/Facades/System.Security.Cryptography.ProtectedData.dll</library_output>
  3679. <fx_version>4.5</fx_version>
  3680. <profile>net_4_x</profile>
  3681. <response>System.Security.Cryptography.ProtectedData.dll.sources</response>
  3682. </project>
  3683. <project dir="class/Facades/System.ServiceProcess.ServiceController" library="Facades_System.ServiceProcess.ServiceController-net_4_x">
  3684. <boot>false</boot>
  3685. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib /r:System.ServiceProcess.dll -r:System</flags>
  3686. <output>System.ServiceProcess.ServiceController.dll</output>
  3687. <built_sources></built_sources>
  3688. <library_output>./../../../class/lib/net_4_x/Facades/System.ServiceProcess.ServiceController.dll</library_output>
  3689. <fx_version>4.5</fx_version>
  3690. <profile>net_4_x</profile>
  3691. <response>System.ServiceProcess.ServiceController.dll.sources</response>
  3692. </project>
  3693. <project dir="class/Facades/System.Net.Http.WebRequestHandler" library="Facades_System.Net.Http.WebRequestHandler-net_4_x">
  3694. <boot>false</boot>
  3695. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -optimize /noconfig /delaysign /keyfile:../../msfinal.pub /nowarn:1616,1699 /r:mscorlib /r:System.Net.Http.WebRequest.dll /r:System.Net.Http.dll -r:System</flags>
  3696. <output>System.Net.Http.WebRequestHandler.dll</output>
  3697. <built_sources></built_sources>
  3698. <library_output>./../../../class/lib/net_4_x/Facades/System.Net.Http.WebRequestHandler.dll</library_output>
  3699. <fx_version>4.5</fx_version>
  3700. <profile>net_4_x</profile>
  3701. <response>System.Net.Http.WebRequestHandler.dll.sources</response>
  3702. </project>
  3703. <project dir="nunit24/NUnit.Framework/framework" library="NUnit.Framework-net_4_x">
  3704. <boot>false</boot>
  3705. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig /r:System.Xml.dll /r:System.dll /d:StronglyNamedAssembly -warn:1</flags>
  3706. <output>nunit.framework.dll</output>
  3707. <built_sources></built_sources>
  3708. <library_output>./../../../class/lib/net_4_x/nunit.framework.dll</library_output>
  3709. <fx_version>4.5</fx_version>
  3710. <profile>net_4_x</profile>
  3711. <response>NUnit.Framework.dll.sources</response>
  3712. </project>
  3713. <project dir="nunit24/NUnitCore/interfaces" library="nunit.core.interfaces-net_4_x">
  3714. <boot>false</boot>
  3715. <flags>/codepage:65001 -debug -r:nunit.framework.dll -r:System.dll /d:StronglyNamedAssembly -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  3716. <output>nunit.core.interfaces.dll</output>
  3717. <built_sources></built_sources>
  3718. <library_output>./../../../class/lib/net_4_x/nunit.core.interfaces.dll</library_output>
  3719. <fx_version>4.5</fx_version>
  3720. <profile>net_4_x</profile>
  3721. <response>nunit.core.interfaces.dll.sources</response>
  3722. </project>
  3723. <project dir="nunit20/NUnitCore/core" library="nunit.core-net_4_x">
  3724. <boot>false</boot>
  3725. <flags>/codepage:65001 -r:nunit.framework.dll -r:nunit.core.interfaces.dll -r:System.dll /d:StronglyNamedAssembly -warn:1 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  3726. <output>nunit.core.dll</output>
  3727. <built_sources></built_sources>
  3728. <library_output>./../../../class/lib/net_4_x/nunit.core.dll</library_output>
  3729. <fx_version>4.5</fx_version>
  3730. <profile>net_4_x</profile>
  3731. <response>nunit.core.dll.sources</response>
  3732. </project>
  3733. <project dir="nunit24/ClientUtilities/util" library="nunit.util-net_4_x">
  3734. <boot>false</boot>
  3735. <flags>/codepage:65001 /resource:Transform.resources,NUnit.Util.Transform.resources -r:nunit.core.dll -r:nunit.core.interfaces.dll -r:System.dll -r:System.Xml.dll -r:System.Runtime.Remoting.dll /d:MONO /d:StronglyNamedAssembly -warn:1 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  3736. <output>nunit.util.dll</output>
  3737. <built_sources></built_sources>
  3738. <library_output>./../../../class/lib/net_4_x/nunit.util.dll</library_output>
  3739. <fx_version>4.5</fx_version>
  3740. <profile>net_4_x</profile>
  3741. <response>nunit.util.dll.sources</response>
  3742. </project>
  3743. <project dir="nunit24/NUnitMocks/mocks" library="nunit.mocks-net_4_x">
  3744. <boot>false</boot>
  3745. <flags>/codepage:65001 -debug -r:nunit.framework.dll -r:System.dll /d:StronglyNamedAssembly -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  3746. <output>nunit.mocks.dll</output>
  3747. <built_sources></built_sources>
  3748. <library_output>./../../../class/lib/net_4_x/nunit.mocks.dll</library_output>
  3749. <fx_version>4.5</fx_version>
  3750. <profile>net_4_x</profile>
  3751. <response>nunit.mocks.dll.sources</response>
  3752. </project>
  3753. <project dir="nunit24/NUnitExtensions/framework" library="nunit.framework.extensions-net_4_x">
  3754. <boot>false</boot>
  3755. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -debug /r:System.Xml.dll /r:System.dll /d:StronglyNamedAssembly</flags>
  3756. <output>nunit.framework.extensions.dll</output>
  3757. <built_sources></built_sources>
  3758. <library_output>./../../../class/lib/net_4_x/nunit.framework.extensions.dll</library_output>
  3759. <fx_version>4.5</fx_version>
  3760. <profile>net_4_x</profile>
  3761. <response>nunit.framework.extensions.dll.sources</response>
  3762. </project>
  3763. <project dir="nunit24/NUnitExtensions/core" library="nunit.core.extensions-net_4_x">
  3764. <boot>false</boot>
  3765. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig -debug /r:nunit.core.dll /r:nunit.core.interfaces.dll /r:System.Xml.dll /r:System.dll /d:StronglyNamedAssembly</flags>
  3766. <output>nunit.core.extensions.dll</output>
  3767. <built_sources></built_sources>
  3768. <library_output>./../../../class/lib/net_4_x/nunit.core.extensions.dll</library_output>
  3769. <fx_version>4.5</fx_version>
  3770. <profile>net_4_x</profile>
  3771. <response>nunit.core.extensions.dll.sources</response>
  3772. </project>
  3773. <project dir="nunit24/ConsoleRunner/nunit-console" library="nunit-console-runner-net_4_x">
  3774. <boot>false</boot>
  3775. <flags>/codepage:65001 -r:nunit.core.dll -r:nunit.core.interfaces.dll -r:nunit.util.dll -r:System.dll -r:System.Xml.dll /d:MONO /d:StronglyNamedAssembly -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  3776. <output>nunit-console-runner.dll</output>
  3777. <built_sources></built_sources>
  3778. <library_output>./../../../class/lib/net_4_x/nunit-console-runner.dll</library_output>
  3779. <fx_version>4.5</fx_version>
  3780. <profile>net_4_x</profile>
  3781. <response>nunit-console-runner.dll.sources</response>
  3782. </project>
  3783. <project dir="nunit24/ConsoleRunner/nunit-console-exe" library="nunit-console-net_4_x">
  3784. <boot></boot>
  3785. <flags>/codepage:65001 /r:nunit.framework.dll /r:nunit.util.dll /r:nunit.core.dll /r:nunit-console-runner.dll -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  3786. <output>nunit-console.exe</output>
  3787. <built_sources></built_sources>
  3788. <library_output>./../../../class/lib/net_4_x/nunit-console.exe</library_output>
  3789. <fx_version>4.5</fx_version>
  3790. <profile>net_4_x</profile>
  3791. <response>nunit-console.exe.sources</response>
  3792. </project>
  3793. <project dir="ilasm" library="ilasm-net_4_x">
  3794. <boot></boot>
  3795. <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 -lib:./../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  3796. <output>ilasm.exe</output>
  3797. <built_sources></built_sources>
  3798. <library_output>./../class/lib/net_4_x/ilasm.exe</library_output>
  3799. <fx_version>4.5</fx_version>
  3800. <profile>net_4_x</profile>
  3801. <response>ilasm.exe.sources</response>
  3802. </project>
  3803. <project dir="tools/al" library="al-net_4_x">
  3804. <boot></boot>
  3805. <flags>/codepage:65001 -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 -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  3806. <output>al.exe</output>
  3807. <built_sources></built_sources>
  3808. <library_output>./../../class/lib/net_4_x/al.exe</library_output>
  3809. <fx_version>4.5</fx_version>
  3810. <profile>net_4_x</profile>
  3811. <response>al.exe.sources</response>
  3812. </project>
  3813. <project dir="tools/linker" library="monolinker-net_4_x">
  3814. <boot></boot>
  3815. <flags>/codepage:65001 /r:./../../class/lib/net_4_x/Mono.Cecil.dll /r:System.Xml.dll -keyfile:../../class/mono.snk -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 -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  3816. <output>monolinker.exe</output>
  3817. <built_sources></built_sources>
  3818. <library_output>./../../class/lib/net_4_x/monolinker.exe</library_output>
  3819. <fx_version>4.5</fx_version>
  3820. <profile>net_4_x</profile>
  3821. <response>monolinker.exe.sources</response>
  3822. </project>
  3823. <project dir="tools/tuner" library="Mono.Tuner-net_4_x">
  3824. <boot>false</boot>
  3825. <flags>/codepage:65001 -r:System.dll -r:System.Core.dll -r:System.Xml.dll -r:./../../class/lib/net_4_x/monolinker.exe -r:./../../class/lib/net_4_x/Mono.Cecil.dll -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  3826. <output>Mono.Tuner.dll</output>
  3827. <built_sources></built_sources>
  3828. <library_output>./../../class/lib/net_4_x/Mono.Tuner.dll</library_output>
  3829. <fx_version>4.5</fx_version>
  3830. <profile>net_4_x</profile>
  3831. <response>Mono.Tuner.dll.sources</response>
  3832. </project>
  3833. <project dir="tools/culevel" library="culevel-net_4_x">
  3834. <boot></boot>
  3835. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  3836. <output>culevel.exe</output>
  3837. <built_sources></built_sources>
  3838. <library_output>./../../class/lib/net_4_x/culevel.exe</library_output>
  3839. <fx_version>4.5</fx_version>
  3840. <profile>net_4_x</profile>
  3841. <response>culevel.exe.sources</response>
  3842. </project>
  3843. <project dir="tools/genxs" library="genxs-net_4_x">
  3844. <boot></boot>
  3845. <flags>/codepage:65001 -r:System.Xml.dll -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  3846. <output>genxs.exe</output>
  3847. <built_sources></built_sources>
  3848. <library_output>./../../class/lib/net_4_x/genxs.exe</library_output>
  3849. <fx_version>4.5</fx_version>
  3850. <profile>net_4_x</profile>
  3851. <response>genxs.exe.sources</response>
  3852. </project>
  3853. <project dir="tools/mkbundle" library="mkbundle-net_4_x">
  3854. <boot></boot>
  3855. <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 -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  3856. <output>mkbundle.exe</output>
  3857. <built_sources></built_sources>
  3858. <library_output>./../../class/lib/net_4_x/mkbundle.exe</library_output>
  3859. <fx_version>4.5</fx_version>
  3860. <profile>net_4_x</profile>
  3861. <response>mkbundle.exe.sources</response>
  3862. </project>
  3863. <project dir="tools/monop" library="monop-net_4_x">
  3864. <boot></boot>
  3865. <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 -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  3866. <output>monop.exe</output>
  3867. <built_sources></built_sources>
  3868. <library_output>./../../class/lib/net_4_x/monop.exe</library_output>
  3869. <fx_version>4.5</fx_version>
  3870. <profile>net_4_x</profile>
  3871. <response>monop.exe.sources</response>
  3872. </project>
  3873. <project dir="tools/mono-service" library="mono-service-net_4_x">
  3874. <boot></boot>
  3875. <flags>/codepage:65001 -r:System.ServiceProcess.dll -r:Mono.Posix.dll -unsafe -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  3876. <output>mono-service.exe</output>
  3877. <built_sources></built_sources>
  3878. <library_output>./../../class/lib/net_4_x/mono-service.exe</library_output>
  3879. <fx_version>4.5</fx_version>
  3880. <profile>net_4_x</profile>
  3881. <response>mono-service.exe.sources</response>
  3882. </project>
  3883. <project dir="tools/mono-xsd" library="xsd-net_4_x">
  3884. <boot></boot>
  3885. <flags>/codepage:65001 -r:System.Xml.dll -r:System.Data.dll -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  3886. <output>xsd.exe</output>
  3887. <built_sources></built_sources>
  3888. <library_output>./../../class/lib/net_4_x/xsd.exe</library_output>
  3889. <fx_version>4.5</fx_version>
  3890. <profile>net_4_x</profile>
  3891. <response>xsd.exe.sources</response>
  3892. </project>
  3893. <project dir="tools/resgen" library="resgen-net_4_x">
  3894. <boot></boot>
  3895. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  3896. <output>resgen.exe</output>
  3897. <built_sources></built_sources>
  3898. <library_output>./../../class/lib/net_4_x/resgen.exe</library_output>
  3899. <fx_version>4.5</fx_version>
  3900. <profile>net_4_x</profile>
  3901. <response>resgen.exe.sources</response>
  3902. </project>
  3903. <project dir="tools/gacutil" library="gacutil-net_4_x">
  3904. <boot></boot>
  3905. <flags>/codepage:65001 -r:Mono.Security.dll -unsafe -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  3906. <output>gacutil.exe</output>
  3907. <built_sources></built_sources>
  3908. <library_output>./../../class/lib/net_4_x/gacutil.exe</library_output>
  3909. <fx_version>4.5</fx_version>
  3910. <profile>net_4_x</profile>
  3911. <response>gacutil.exe.sources</response>
  3912. </project>
  3913. <project dir="tools/wsdl" library="wsdl-net_4_x">
  3914. <boot></boot>
  3915. <flags>/codepage:65001 -r:System.Xml.dll -r:System.Web.Services.dll -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  3916. <output>wsdl.exe</output>
  3917. <built_sources></built_sources>
  3918. <library_output>./../../class/lib/net_4_x/wsdl.exe</library_output>
  3919. <fx_version>4.5</fx_version>
  3920. <profile>net_4_x</profile>
  3921. <response>wsdl.exe.sources</response>
  3922. </project>
  3923. <project dir="tools/xbuild" library="xbuild-net_4_x">
  3924. <boot></boot>
  3925. <flags>/codepage:65001 -r:./../../class/lib/net_4_x/Microsoft.Build.Framework.dll -r:./../../class/lib/net_4_x/Microsoft.Build.Utilities.v4.0.dll -r:./../../class/lib/net_4_x/Microsoft.Build.Engine.dll -r:./../../class/lib/net_4_x/Microsoft.Build.Tasks.v4.0.dll -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  3926. <output>xbuild.exe</output>
  3927. <built_sources></built_sources>
  3928. <library_output>./../../class/lib/net_4_x/xbuild.exe</library_output>
  3929. <fx_version>4.5</fx_version>
  3930. <profile>net_4_x</profile>
  3931. <response>xbuild.exe.sources</response>
  3932. </project>
  3933. <project dir="tools/csharp" library="csharp-net_4_x">
  3934. <boot></boot>
  3935. <flags>/codepage:65001 -r:./../../class/lib/net_4_x/Mono.CSharp.dll -r:./../../class/lib/net_4_x/Mono.Posix.dll -r:Mono.Management.dll -unsafe -nowarn:3021 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  3936. <output>csharp.exe</output>
  3937. <built_sources></built_sources>
  3938. <library_output>./../../class/lib/net_4_x/csharp.exe</library_output>
  3939. <fx_version>4.5</fx_version>
  3940. <profile>net_4_x</profile>
  3941. <response>csharp.exe.sources</response>
  3942. </project>
  3943. <project dir="tools/compiler-tester" library="compiler-tester-net_4_x">
  3944. <boot></boot>
  3945. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  3946. <output>compiler-tester.exe</output>
  3947. <built_sources></built_sources>
  3948. <library_output>./../../class/lib/net_4_x/compiler-tester.exe</library_output>
  3949. <fx_version>4.5</fx_version>
  3950. <profile>net_4_x</profile>
  3951. <response>compiler-tester.exe.sources</response>
  3952. </project>
  3953. <project dir="tools/mono-xmltool" library="mono-xmltool-net_4_x">
  3954. <boot></boot>
  3955. <flags>/codepage:65001 -r:System.Xml.dll -r:Commons.Xml.Relaxng.dll -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  3956. <output>mono-xmltool.exe</output>
  3957. <built_sources></built_sources>
  3958. <library_output>./../../class/lib/net_4_x/mono-xmltool.exe</library_output>
  3959. <fx_version>4.5</fx_version>
  3960. <profile>net_4_x</profile>
  3961. <response>mono-xmltool.exe.sources</response>
  3962. </project>
  3963. <project dir="tools/mono-shlib-cop" library="mono-shlib-cop-net_4_x">
  3964. <boot></boot>
  3965. <flags>/codepage:65001 -r:Mono.Posix.dll -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  3966. <output>mono-shlib-cop.exe</output>
  3967. <built_sources></built_sources>
  3968. <library_output>./../../class/lib/net_4_x/mono-shlib-cop.exe</library_output>
  3969. <fx_version>4.5</fx_version>
  3970. <profile>net_4_x</profile>
  3971. <response>mono-shlib-cop.exe.sources</response>
  3972. </project>
  3973. <project dir="tools/sgen" library="sgen-net_4_x">
  3974. <boot></boot>
  3975. <flags>/codepage:65001 -r:System.Xml.dll -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  3976. <output>sgen.exe</output>
  3977. <built_sources></built_sources>
  3978. <library_output>./../../class/lib/net_4_x/sgen.exe</library_output>
  3979. <fx_version>4.5</fx_version>
  3980. <profile>net_4_x</profile>
  3981. <response>sgen.exe.sources</response>
  3982. </project>
  3983. <project dir="tools/mconfig" library="mconfig-net_4_x">
  3984. <boot></boot>
  3985. <flags>/codepage:65001 -r:System.Xml.dll -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  3986. <output>mconfig.exe</output>
  3987. <built_sources></built_sources>
  3988. <library_output>./../../class/lib/net_4_x/mconfig.exe</library_output>
  3989. <fx_version>4.5</fx_version>
  3990. <profile>net_4_x</profile>
  3991. <response>mconfig.exe.sources</response>
  3992. </project>
  3993. <project dir="tools/installutil" library="installutil-net_4_x">
  3994. <boot></boot>
  3995. <flags>/codepage:65001 -r:System.Configuration.Install -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  3996. <output>installutil.exe</output>
  3997. <built_sources></built_sources>
  3998. <library_output>./../../class/lib/net_4_x/installutil.exe</library_output>
  3999. <fx_version>4.5</fx_version>
  4000. <profile>net_4_x</profile>
  4001. <response>installutil.exe.sources</response>
  4002. </project>
  4003. <project dir="tools/nunitreport" library="nunitreport-net_4_x">
  4004. <boot></boot>
  4005. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  4006. <output>nunitreport.exe</output>
  4007. <built_sources></built_sources>
  4008. <library_output>./../../class/lib/net_4_x/nunitreport.exe</library_output>
  4009. <fx_version>4.5</fx_version>
  4010. <profile>net_4_x</profile>
  4011. <response>nunitreport.exe.sources</response>
  4012. </project>
  4013. <project dir="tools/pdb2mdb" library="pdb2mdb-net_4_x">
  4014. <boot></boot>
  4015. <flags>/codepage:65001 /r:Mono.Cecil.dll /r:Mono.CompilerServices.SymbolWriter.dll -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  4016. <output>pdb2mdb.exe</output>
  4017. <built_sources></built_sources>
  4018. <library_output>./../../class/lib/net_4_x/pdb2mdb.exe</library_output>
  4019. <fx_version>4.5</fx_version>
  4020. <profile>net_4_x</profile>
  4021. <response>pdb2mdb.exe.sources</response>
  4022. </project>
  4023. <project dir="tools/SqlSharp" library="sqlsharp-net_4_x">
  4024. <boot></boot>
  4025. <flags>/codepage:65001 -r:System.dll -r:System.Xml.dll -r:System.Data.dll -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  4026. <output>sqlsharp.exe</output>
  4027. <built_sources></built_sources>
  4028. <library_output>./../../class/lib/net_4_x/sqlsharp.exe</library_output>
  4029. <fx_version>4.5</fx_version>
  4030. <profile>net_4_x</profile>
  4031. <response>sqlsharp.exe.sources</response>
  4032. </project>
  4033. <project dir="tools/sqlmetal" library="sqlmetal-net_4_x">
  4034. <boot></boot>
  4035. <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 -r:System.Configuration -r:System.Core -r:System.Data -r:System.Data.Linq -r:System.Xml -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  4036. <output>sqlmetal.exe</output>
  4037. <built_sources></built_sources>
  4038. <library_output>./../../class/lib/net_4_x/sqlmetal.exe</library_output>
  4039. <fx_version>4.5</fx_version>
  4040. <profile>net_4_x</profile>
  4041. <response>sqlmetal.exe.sources</response>
  4042. </project>
  4043. <project dir="tools/svcutil" library="svcutil-net_4_x">
  4044. <boot></boot>
  4045. <flags>/codepage:65001 -r:System.Core.dll -r:System.Runtime.Serialization.dll -r:System.ServiceModel.dll -r:System.Web.Services.dll -r:System.Configuration.dll -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  4046. <output>svcutil.exe</output>
  4047. <built_sources></built_sources>
  4048. <library_output>./../../class/lib/net_4_x/svcutil.exe</library_output>
  4049. <fx_version>4.5</fx_version>
  4050. <profile>net_4_x</profile>
  4051. <response>svcutil.exe.sources</response>
  4052. </project>
  4053. <project dir="tools/ictool" library="ictool-net_4_x">
  4054. <boot></boot>
  4055. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  4056. <output>ictool.exe</output>
  4057. <built_sources></built_sources>
  4058. <library_output>./../../class/lib/net_4_x/ictool.exe</library_output>
  4059. <fx_version>4.5</fx_version>
  4060. <profile>net_4_x</profile>
  4061. <response>ictool.exe.sources</response>
  4062. </project>
  4063. <project dir="tools/disco" library="disco-net_4_x">
  4064. <boot></boot>
  4065. <flags>/codepage:65001 -r:System.Xml.dll -r:System.Web.Services.dll -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  4066. <output>disco.exe</output>
  4067. <built_sources></built_sources>
  4068. <library_output>./../../class/lib/net_4_x/disco.exe</library_output>
  4069. <fx_version>4.5</fx_version>
  4070. <profile>net_4_x</profile>
  4071. <response>disco.exe.sources</response>
  4072. </project>
  4073. <project dir="tools/soapsuds" library="soapsuds-net_4_x">
  4074. <boot></boot>
  4075. <flags>/codepage:65001 -r:System.Runtime.Remoting.dll -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  4076. <output>soapsuds.exe</output>
  4077. <built_sources></built_sources>
  4078. <library_output>./../../class/lib/net_4_x/soapsuds.exe</library_output>
  4079. <fx_version>4.5</fx_version>
  4080. <profile>net_4_x</profile>
  4081. <response>soapsuds.exe.sources</response>
  4082. </project>
  4083. <project dir="tools/browsercaps-updater" library="browsercaps-updater-net_4_x">
  4084. <boot></boot>
  4085. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  4086. <output>browsercaps-updater.exe</output>
  4087. <built_sources></built_sources>
  4088. <library_output>./../../class/lib/net_4_x/browsercaps-updater.exe</library_output>
  4089. <fx_version>4.5</fx_version>
  4090. <profile>net_4_x</profile>
  4091. <response>browsercaps-updater.exe.sources</response>
  4092. </project>
  4093. <project dir="tools/cil-strip" library="mono-cil-strip-net_4_x">
  4094. <boot></boot>
  4095. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  4096. <output>mono-cil-strip.exe</output>
  4097. <built_sources></built_sources>
  4098. <library_output>./../../class/lib/net_4_x/mono-cil-strip.exe</library_output>
  4099. <fx_version>4.5</fx_version>
  4100. <profile>net_4_x</profile>
  4101. <response>mono-cil-strip.exe.sources</response>
  4102. </project>
  4103. <project dir="tools/macpack" library="macpack-net_4_x">
  4104. <boot></boot>
  4105. <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 -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  4106. <output>macpack.exe</output>
  4107. <built_sources></built_sources>
  4108. <library_output>./../../class/lib/net_4_x/macpack.exe</library_output>
  4109. <fx_version>4.5</fx_version>
  4110. <profile>net_4_x</profile>
  4111. <response>macpack.exe.sources</response>
  4112. </project>
  4113. <project dir="tools/dtd2rng" library="dtd2rng-net_4_x">
  4114. <boot></boot>
  4115. <flags>/codepage:65001 -r:System.Xml.dll -r:Commons.Xml.Relaxng.dll -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  4116. <output>dtd2rng.exe</output>
  4117. <built_sources></built_sources>
  4118. <library_output>./../../class/lib/net_4_x/dtd2rng.exe</library_output>
  4119. <fx_version>4.5</fx_version>
  4120. <profile>net_4_x</profile>
  4121. <response>dtd2rng.exe.sources</response>
  4122. </project>
  4123. <project dir="tools/dtd2xsd" library="dtd2xsd-net_4_x">
  4124. <boot></boot>
  4125. <flags>/codepage:65001 -r:System.Xml.dll -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  4126. <output>dtd2xsd.exe</output>
  4127. <built_sources></built_sources>
  4128. <library_output>./../../class/lib/net_4_x/dtd2xsd.exe</library_output>
  4129. <fx_version>4.5</fx_version>
  4130. <profile>net_4_x</profile>
  4131. <response>dtd2xsd.exe.sources</response>
  4132. </project>
  4133. <project dir="tools/mdoc" library="mdoc-net_4_x">
  4134. <boot></boot>
  4135. <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 /r:System.Web.dll /r:System.Xml.Linq.dll /r:ICSharpCode.SharpZipLib.dll /r:Mono.Cecil.dll /r:monodoc.dll -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  4136. <output>mdoc.exe</output>
  4137. <built_sources></built_sources>
  4138. <library_output>./../../class/lib/net_4_x/mdoc.exe</library_output>
  4139. <fx_version>4.5</fx_version>
  4140. <profile>net_4_x</profile>
  4141. <response>mdoc.exe.sources</response>
  4142. </project>
  4143. <project dir="tools/mod" library="mod-net_4_x">
  4144. <boot></boot>
  4145. <flags>/codepage:65001 /r:monodoc.dll -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  4146. <output>mod.exe</output>
  4147. <built_sources></built_sources>
  4148. <library_output>./../../class/lib/net_4_x/mod.exe</library_output>
  4149. <fx_version>4.5</fx_version>
  4150. <profile>net_4_x</profile>
  4151. <response>mod.exe.sources</response>
  4152. </project>
  4153. <project dir="tools/installvst" library="installvst-net_4_x">
  4154. <boot></boot>
  4155. <flags>/codepage:65001 -r:System.Xml.dll -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  4156. <output>installvst.exe</output>
  4157. <built_sources></built_sources>
  4158. <library_output>./../../class/lib/net_4_x/installvst.exe</library_output>
  4159. <fx_version>4.5</fx_version>
  4160. <profile>net_4_x</profile>
  4161. <response>installvst.exe.sources</response>
  4162. </project>
  4163. <project dir="tools/lc" library="lc-net_4_x">
  4164. <boot></boot>
  4165. <flags>/codepage:65001 -r:System.dll -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  4166. <output>lc.exe</output>
  4167. <built_sources></built_sources>
  4168. <library_output>./../../class/lib/net_4_x/lc.exe</library_output>
  4169. <fx_version>4.5</fx_version>
  4170. <profile>net_4_x</profile>
  4171. <response>lc.exe.sources</response>
  4172. </project>
  4173. <project dir="tools/mono-configuration-crypto/lib" library="Mono.Configuration.Crypto-net_4_x">
  4174. <boot>false</boot>
  4175. <flags>/codepage:65001 -r:System.dll -r:Mono.Security.dll -r:System.Security.dll -r:System.Configuration.dll -r:System.Xml.dll -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  4176. <output>Mono.Configuration.Crypto.dll</output>
  4177. <built_sources></built_sources>
  4178. <library_output>./../../../class/lib/net_4_x/Mono.Configuration.Crypto.dll</library_output>
  4179. <fx_version>4.5</fx_version>
  4180. <profile>net_4_x</profile>
  4181. <response>Mono.Configuration.Crypto.dll.sources</response>
  4182. </project>
  4183. <project dir="tools/mono-configuration-crypto/cli" library="mono-configuration-crypto-net_4_x">
  4184. <boot></boot>
  4185. <flags>/codepage:65001 -r:Mono.Security.dll -r:System.Security.dll -r:System.Configuration.dll -r:System.dll -r:./../../../class/lib/net_4_x/Mono.Configuration.Crypto.dll -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  4186. <output>mono-configuration-crypto.exe</output>
  4187. <built_sources></built_sources>
  4188. <library_output>./../../../class/lib/net_4_x/mono-configuration-crypto.exe</library_output>
  4189. <fx_version>4.5</fx_version>
  4190. <profile>net_4_x</profile>
  4191. <response>mono-configuration-crypto.exe.sources</response>
  4192. </project>
  4193. <project dir="tools/ccrewrite" library="ccrewrite-net_4_x">
  4194. <boot></boot>
  4195. <flags>/codepage:65001 -r:Mono.CodeContracts.dll -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  4196. <output>ccrewrite.exe</output>
  4197. <built_sources></built_sources>
  4198. <library_output>./../../class/lib/net_4_x/ccrewrite.exe</library_output>
  4199. <fx_version>4.5</fx_version>
  4200. <profile>net_4_x</profile>
  4201. <response>ccrewrite.exe.sources</response>
  4202. </project>
  4203. <project dir="tools/cccheck" library="cccheck-net_4_x">
  4204. <boot></boot>
  4205. <flags>/codepage:65001 -r:Mono.CodeContracts.dll -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  4206. <output>cccheck.exe</output>
  4207. <built_sources></built_sources>
  4208. <library_output>./../../class/lib/net_4_x/cccheck.exe</library_output>
  4209. <fx_version>4.5</fx_version>
  4210. <profile>net_4_x</profile>
  4211. <response>cccheck.exe.sources</response>
  4212. </project>
  4213. <project dir="tools/mdb-rebase" library="mdbrebase-net_4_x">
  4214. <boot></boot>
  4215. <flags>/codepage:65001 /r:Mono.CompilerServices.SymbolWriter.dll -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  4216. <output>mdbrebase.exe</output>
  4217. <built_sources></built_sources>
  4218. <library_output>./../../class/lib/net_4_x/mdbrebase.exe</library_output>
  4219. <fx_version>4.5</fx_version>
  4220. <profile>net_4_x</profile>
  4221. <response>mdbrebase.exe.sources</response>
  4222. </project>
  4223. <project dir="tools/ikdasm" library="ikdasm-net_4_x">
  4224. <boot></boot>
  4225. <flags>/codepage:65001 -d:NO_SYMBOL_WRITER /r:System.Security.dll -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  4226. <output>ikdasm.exe</output>
  4227. <built_sources></built_sources>
  4228. <library_output>./../../class/lib/net_4_x/ikdasm.exe</library_output>
  4229. <fx_version>4.5</fx_version>
  4230. <profile>net_4_x</profile>
  4231. <response>ikdasm.exe.sources</response>
  4232. </project>
  4233. <project dir="tools/mono-symbolicate" library="mono-symbolicate-net_4_x">
  4234. <boot></boot>
  4235. <flags>/codepage:65001 /r:Mono.Cecil.dll /r:Mono.CompilerServices.SymbolWriter.dll /r:System.Xml -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/net_4_x -r:mscorlib.dll -debug -optimize /noconfig</flags>
  4236. <output>mono-symbolicate.exe</output>
  4237. <built_sources></built_sources>
  4238. <library_output>./../../class/lib/net_4_x/mono-symbolicate.exe</library_output>
  4239. <fx_version>4.5</fx_version>
  4240. <profile>net_4_x</profile>
  4241. <response>mono-symbolicate.exe.sources</response>
  4242. </project>
  4243. <project dir="class/Microsoft.Build.Framework" library="Microsoft.Build.Framework-xbuild_12">
  4244. <boot>false</boot>
  4245. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/xbuild_12 -r:mscorlib.dll -debug -d:XBUILD_12 -d:MONO -d:DISABLE_CAS_USE -lib:./../../class/lib/net_4_x -optimize /noconfig /r:mscorlib.dll /r:System.dll -r:System</flags>
  4246. <output>Microsoft.Build.Framework.dll</output>
  4247. <built_sources></built_sources>
  4248. <library_output>./../../class/lib/xbuild_12/Microsoft.Build.Framework.dll</library_output>
  4249. <fx_version>4.5</fx_version>
  4250. <profile>xbuild_12</profile>
  4251. <response>Microsoft.Build.Framework.dll.sources</response>
  4252. </project>
  4253. <project dir="class/Microsoft.Build.Framework" library="Microsoft.Build.Framework-tests-xbuild_12">
  4254. <boot>false</boot>
  4255. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/xbuild_12 -r:mscorlib.dll -debug -d:XBUILD_12 -d:MONO -d:DISABLE_CAS_USE -lib:./../../class/lib/net_4_x -optimize -r:./../../class/lib/xbuild_12/Microsoft.Build.Framework.dll</flags>
  4256. <output>Microsoft.Build.Framework_test_xbuild_12.dll</output>
  4257. <built_sources></built_sources>
  4258. <library_output>Microsoft.Build.Framework_test_xbuild_12.dll</library_output>
  4259. <fx_version>4.5</fx_version>
  4260. <profile>xbuild_12</profile>
  4261. <response>./../../build/deps/Microsoft.Build.Framework_test_xbuild_12.dll.response</response>
  4262. </project>
  4263. <project dir="class/Microsoft.Build.Utilities" library="Microsoft.Build.Utilities-xbuild_12">
  4264. <boot>false</boot>
  4265. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/xbuild_12 -r:mscorlib.dll -debug -d:XBUILD_12 -d:MONO -d:DISABLE_CAS_USE -lib:./../../class/lib/net_4_x -optimize /noconfig /r:mscorlib.dll /r:System.dll /r:System.Core.dll /r:System.Xml.dll /r:./../../class/lib/xbuild_12/Microsoft.Build.Framework.dll -r:System -r:System.Core -r:System.Xml</flags>
  4266. <output>Microsoft.Build.Utilities.v12.0.dll</output>
  4267. <built_sources></built_sources>
  4268. <library_output>./../../class/lib/xbuild_12/Microsoft.Build.Utilities.v12.0.dll</library_output>
  4269. <fx_version>4.5</fx_version>
  4270. <profile>xbuild_12</profile>
  4271. <response>Microsoft.Build.Utilities.dll.sources</response>
  4272. </project>
  4273. <project dir="class/Microsoft.Build.Utilities" library="Microsoft.Build.Utilities-tests-xbuild_12">
  4274. <boot>false</boot>
  4275. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/xbuild_12 -r:mscorlib.dll -debug -d:XBUILD_12 -d:MONO -d:DISABLE_CAS_USE -lib:./../../class/lib/net_4_x -optimize -r:./../../class/lib/xbuild_12/Microsoft.Build.Utilities.v12.0.dll /r:./../../class/lib/xbuild_12/Microsoft.Build.Engine.dll /r:./../../class/lib/xbuild_12/Microsoft.Build.Framework.dll -r:System.dll -r:System.Core.dll</flags>
  4276. <output>Microsoft.Build.Utilities_test_xbuild_12.dll</output>
  4277. <built_sources></built_sources>
  4278. <library_output>Microsoft.Build.Utilities_test_xbuild_12.dll</library_output>
  4279. <fx_version>4.5</fx_version>
  4280. <profile>xbuild_12</profile>
  4281. <response>./../../build/deps/Microsoft.Build.Utilities_test_xbuild_12.dll.response</response>
  4282. </project>
  4283. <project dir="class/Microsoft.Build.Engine" library="Microsoft.Build.Engine-xbuild_12">
  4284. <boot>false</boot>
  4285. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/xbuild_12 -r:mscorlib.dll -debug -d:XBUILD_12 -d:MONO -d:DISABLE_CAS_USE -lib:./../../class/lib/net_4_x -optimize /noconfig /r:mscorlib.dll /r:System.dll /r:System.Core.dll /r:System.Xml.dll /r:./../../class/lib/xbuild_12/Microsoft.Build.Framework.dll /r:./../../class/lib/xbuild_12/Microsoft.Build.Utilities.v12.0.dll -r:System -r:System.Core -r:System.Xml</flags>
  4286. <output>Microsoft.Build.Engine.dll</output>
  4287. <built_sources></built_sources>
  4288. <library_output>./../../class/lib/xbuild_12/Microsoft.Build.Engine.dll</library_output>
  4289. <fx_version>4.5</fx_version>
  4290. <profile>xbuild_12</profile>
  4291. <response>Microsoft.Build.Engine.dll.sources</response>
  4292. </project>
  4293. <project dir="class/Microsoft.Build.Engine" library="Microsoft.Build.Engine-tests-xbuild_12">
  4294. <boot>false</boot>
  4295. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/xbuild_12 -r:mscorlib.dll -debug -d:XBUILD_12 -d:MONO -d:DISABLE_CAS_USE -lib:./../../class/lib/net_4_x -optimize -r:./../../class/lib/xbuild_12/Microsoft.Build.Engine.dll /r:./../../class/lib/xbuild_12/Microsoft.Build.Framework.dll /r:./../../class/lib/xbuild_12/Microsoft.Build.Utilities.v12.0.dll /r:System.Xml.dll</flags>
  4296. <output>Microsoft.Build.Engine_test_xbuild_12.dll</output>
  4297. <built_sources></built_sources>
  4298. <library_output>Microsoft.Build.Engine_test_xbuild_12.dll</library_output>
  4299. <fx_version>4.5</fx_version>
  4300. <profile>xbuild_12</profile>
  4301. <response>./../../build/deps/Microsoft.Build.Engine_test_xbuild_12.dll.response</response>
  4302. </project>
  4303. <project dir="class/Mono.XBuild.Tasks" library="Mono.XBuild.Tasks-xbuild_12">
  4304. <boot>false</boot>
  4305. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/xbuild_12 -r:mscorlib.dll -debug -d:XBUILD_12 -d:MONO -d:DISABLE_CAS_USE -lib:./../../class/lib/net_4_x -optimize /noconfig /r:mscorlib.dll /r:System.dll /r:System.Xml.dll -r:System -r:System.Xml</flags>
  4306. <output>Mono.XBuild.Tasks.dll</output>
  4307. <built_sources></built_sources>
  4308. <library_output>./../../class/lib/xbuild_12/Mono.XBuild.Tasks.dll</library_output>
  4309. <fx_version>4.5</fx_version>
  4310. <profile>xbuild_12</profile>
  4311. <response>Mono.XBuild.Tasks.dll.sources</response>
  4312. </project>
  4313. <project dir="class/Mono.XBuild.Tasks" library="Mono.XBuild.Tasks-tests-xbuild_12">
  4314. <boot>false</boot>
  4315. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/xbuild_12 -r:mscorlib.dll -debug -d:XBUILD_12 -d:MONO -d:DISABLE_CAS_USE -lib:./../../class/lib/net_4_x -optimize -r:./../../class/lib/xbuild_12/Mono.XBuild.Tasks.dll</flags>
  4316. <output>Mono.XBuild.Tasks_test_xbuild_12.dll</output>
  4317. <built_sources></built_sources>
  4318. <library_output>Mono.XBuild.Tasks_test_xbuild_12.dll</library_output>
  4319. <fx_version>4.5</fx_version>
  4320. <profile>xbuild_12</profile>
  4321. <response>./../../build/deps/Mono.XBuild.Tasks_test_xbuild_12.dll.response</response>
  4322. </project>
  4323. <project dir="class/Microsoft.Build.Tasks" library="Microsoft.Build.Tasks-xbuild_12">
  4324. <boot>false</boot>
  4325. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/xbuild_12 -r:mscorlib.dll -debug -d:XBUILD_12 -d:MONO -d:DISABLE_CAS_USE -lib:./../../class/lib/net_4_x -optimize /noconfig /r:mscorlib.dll /r:System.dll /r:System.Core.dll /r:System.Xml.dll /r: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 -r:System -r:System.Core -r:System.Xml -r:System.Windows.Forms</flags>
  4326. <output>Microsoft.Build.Tasks.v12.0.dll</output>
  4327. <built_sources></built_sources>
  4328. <library_output>./../../class/lib/xbuild_12/Microsoft.Build.Tasks.v12.0.dll</library_output>
  4329. <fx_version>4.5</fx_version>
  4330. <profile>xbuild_12</profile>
  4331. <response>Microsoft.Build.Tasks.dll.sources</response>
  4332. </project>
  4333. <project dir="class/Microsoft.Build.Tasks" library="Microsoft.Build.Tasks-tests-xbuild_12">
  4334. <boot>false</boot>
  4335. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/xbuild_12 -r:mscorlib.dll -debug -d:XBUILD_12 -d:MONO -d:DISABLE_CAS_USE -lib:./../../class/lib/net_4_x -optimize -r:./../../class/lib/xbuild_12/Microsoft.Build.Tasks.v12.0.dll /r:System.Xml.dll /r:./../../class/lib/xbuild_12/Microsoft.Build.Engine.dll /r:./../../class/lib/xbuild_12/Microsoft.Build.Framework.dll /r:./../../class/lib/xbuild_12/Mono.XBuild.Tasks.dll /r:./../../class/lib/xbuild_12/Microsoft.Build.Utilities.v12.0.dll /r:System.Core.dll /r:Microsoft.Build.dll</flags>
  4336. <output>Microsoft.Build.Tasks_test_xbuild_12.dll</output>
  4337. <built_sources></built_sources>
  4338. <library_output>Microsoft.Build.Tasks_test_xbuild_12.dll</library_output>
  4339. <fx_version>4.5</fx_version>
  4340. <profile>xbuild_12</profile>
  4341. <response>./../../build/deps/Microsoft.Build.Tasks_test_xbuild_12.dll.response</response>
  4342. </project>
  4343. <project dir="class/Microsoft.Build" library="Microsoft.Build-xbuild_12">
  4344. <boot>false</boot>
  4345. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/xbuild_12 -r:mscorlib.dll -debug -d:XBUILD_12 -d:MONO -d:DISABLE_CAS_USE -lib:./../../class/lib/net_4_x -optimize /noconfig /r:mscorlib.dll /r:System.dll /r:System.Core.dll /r:System.Xml.dll /r:Microsoft.Build.Engine.dll /r:Microsoft.Build.Framework.dll /d:MICROSOFT_BUILD_DLL -r:System -r:System.Core -r:System.Xml -r:Microsoft.Build.Engine -r:Microsoft.Build.Framework</flags>
  4346. <output>Microsoft.Build.dll</output>
  4347. <built_sources>Microsoft.Build.Internal/ExpressionParser.cs</built_sources>
  4348. <library_output>./../../class/lib/xbuild_12/Microsoft.Build.dll</library_output>
  4349. <fx_version>4.5</fx_version>
  4350. <profile>xbuild_12</profile>
  4351. <response>Microsoft.Build.dll.sources</response>
  4352. </project>
  4353. <project dir="class/Microsoft.Build" library="Microsoft.Build-tests-xbuild_12">
  4354. <boot>false</boot>
  4355. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/xbuild_12 -r:mscorlib.dll -debug -d:XBUILD_12 -d:MONO -d:DISABLE_CAS_USE -lib:./../../class/lib/net_4_x -optimize -r:./../../class/lib/xbuild_12/Microsoft.Build.dll /r:mscorlib.dll /r:System.dll /r:System.Core.dll /r:System.Xml.dll /r:Microsoft.Build.Engine.dll /r:Microsoft.Build.Framework.dll /d:MICROSOFT_BUILD_DLL -r:System -r:System.Core -r:System.Xml -r:Microsoft.Build.Engine -r:Microsoft.Build.Framework /r:Microsoft.Build.Utilities.v4.0.dll</flags>
  4356. <output>Microsoft.Build_test_xbuild_12.dll</output>
  4357. <built_sources>Microsoft.Build.Internal/ExpressionParser.cs</built_sources>
  4358. <library_output>Microsoft.Build_test_xbuild_12.dll</library_output>
  4359. <fx_version>4.5</fx_version>
  4360. <profile>xbuild_12</profile>
  4361. <response>./../../build/deps/Microsoft.Build_test_xbuild_12.dll.response</response>
  4362. </project>
  4363. <project dir="tools/xbuild" library="xbuild-xbuild_12">
  4364. <boot></boot>
  4365. <flags>/codepage:65001 -r:./../../class/lib/xbuild_12/Microsoft.Build.Framework.dll -r:./../../class/lib/xbuild_12/Microsoft.Build.Utilities.v12.0.dll -r:./../../class/lib/xbuild_12/Microsoft.Build.Engine.dll -r:./../../class/lib/xbuild_12/Microsoft.Build.Tasks.v12.0.dll -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/xbuild_12 -r:mscorlib.dll -debug -d:XBUILD_12 -d:MONO -d:DISABLE_CAS_USE -lib:./../../class/lib/net_4_x -optimize /noconfig</flags>
  4366. <output>xbuild.exe</output>
  4367. <built_sources></built_sources>
  4368. <library_output>./../../class/lib/xbuild_12/xbuild.exe</library_output>
  4369. <fx_version>4.5</fx_version>
  4370. <profile>xbuild_12</profile>
  4371. <response>xbuild.exe.sources</response>
  4372. </project>
  4373. <project dir="class/Microsoft.Build.Framework" library="Microsoft.Build.Framework-xbuild_14">
  4374. <boot>false</boot>
  4375. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/xbuild_14 -r:mscorlib.dll -debug -d:XBUILD_12 -d:XBUILD_14 -d:MONO -d:DISABLE_CAS_USE -lib:./../../class/lib/net_4_x -optimize /noconfig /r:mscorlib.dll /r:System.dll -r:System</flags>
  4376. <output>Microsoft.Build.Framework.dll</output>
  4377. <built_sources></built_sources>
  4378. <library_output>./../../class/lib/xbuild_14/Microsoft.Build.Framework.dll</library_output>
  4379. <fx_version>4.5</fx_version>
  4380. <profile>xbuild_14</profile>
  4381. <response>Microsoft.Build.Framework.dll.sources</response>
  4382. </project>
  4383. <project dir="class/Microsoft.Build.Framework" library="Microsoft.Build.Framework-tests-xbuild_14">
  4384. <boot>false</boot>
  4385. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/xbuild_14 -r:mscorlib.dll -debug -d:XBUILD_12 -d:XBUILD_14 -d:MONO -d:DISABLE_CAS_USE -lib:./../../class/lib/net_4_x -optimize -r:./../../class/lib/xbuild_14/Microsoft.Build.Framework.dll</flags>
  4386. <output>Microsoft.Build.Framework_test_xbuild_14.dll</output>
  4387. <built_sources></built_sources>
  4388. <library_output>Microsoft.Build.Framework_test_xbuild_14.dll</library_output>
  4389. <fx_version>4.5</fx_version>
  4390. <profile>xbuild_14</profile>
  4391. <response>./../../build/deps/Microsoft.Build.Framework_test_xbuild_14.dll.response</response>
  4392. </project>
  4393. <project dir="class/Microsoft.Build.Utilities" library="Microsoft.Build.Utilities-xbuild_14">
  4394. <boot>false</boot>
  4395. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/xbuild_14 -r:mscorlib.dll -debug -d:XBUILD_12 -d:XBUILD_14 -d:MONO -d:DISABLE_CAS_USE -lib:./../../class/lib/net_4_x -optimize /noconfig /r:mscorlib.dll /r:System.dll /r:System.Core.dll /r:System.Xml.dll /r:./../../class/lib/xbuild_14/Microsoft.Build.Framework.dll -r:System -r:System.Core -r:System.Xml</flags>
  4396. <output>Microsoft.Build.Utilities.Core.dll</output>
  4397. <built_sources></built_sources>
  4398. <library_output>./../../class/lib/xbuild_14/Microsoft.Build.Utilities.Core.dll</library_output>
  4399. <fx_version>4.5</fx_version>
  4400. <profile>xbuild_14</profile>
  4401. <response>Microsoft.Build.Utilities.dll.sources</response>
  4402. </project>
  4403. <project dir="class/Microsoft.Build.Utilities" library="Microsoft.Build.Utilities-tests-xbuild_14">
  4404. <boot>false</boot>
  4405. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/xbuild_14 -r:mscorlib.dll -debug -d:XBUILD_12 -d:XBUILD_14 -d:MONO -d:DISABLE_CAS_USE -lib:./../../class/lib/net_4_x -optimize -r:./../../class/lib/xbuild_14/Microsoft.Build.Utilities.Core.dll /r:./../../class/lib/xbuild_14/Microsoft.Build.Engine.dll /r:./../../class/lib/xbuild_14/Microsoft.Build.Framework.dll -r:System.dll -r:System.Core.dll</flags>
  4406. <output>Microsoft.Build.Utilities_test_xbuild_14.dll</output>
  4407. <built_sources></built_sources>
  4408. <library_output>Microsoft.Build.Utilities_test_xbuild_14.dll</library_output>
  4409. <fx_version>4.5</fx_version>
  4410. <profile>xbuild_14</profile>
  4411. <response>./../../build/deps/Microsoft.Build.Utilities_test_xbuild_14.dll.response</response>
  4412. </project>
  4413. <project dir="class/Microsoft.Build.Engine" library="Microsoft.Build.Engine-xbuild_14">
  4414. <boot>false</boot>
  4415. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/xbuild_14 -r:mscorlib.dll -debug -d:XBUILD_12 -d:XBUILD_14 -d:MONO -d:DISABLE_CAS_USE -lib:./../../class/lib/net_4_x -optimize /noconfig /r:mscorlib.dll /r:System.dll /r:System.Core.dll /r:System.Xml.dll /r:./../../class/lib/xbuild_14/Microsoft.Build.Framework.dll /r:./../../class/lib/xbuild_14/Microsoft.Build.Utilities.Core.dll -r:System -r:System.Core -r:System.Xml</flags>
  4416. <output>Microsoft.Build.Engine.dll</output>
  4417. <built_sources></built_sources>
  4418. <library_output>./../../class/lib/xbuild_14/Microsoft.Build.Engine.dll</library_output>
  4419. <fx_version>4.5</fx_version>
  4420. <profile>xbuild_14</profile>
  4421. <response>Microsoft.Build.Engine.dll.sources</response>
  4422. </project>
  4423. <project dir="class/Microsoft.Build.Engine" library="Microsoft.Build.Engine-tests-xbuild_14">
  4424. <boot>false</boot>
  4425. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/xbuild_14 -r:mscorlib.dll -debug -d:XBUILD_12 -d:XBUILD_14 -d:MONO -d:DISABLE_CAS_USE -lib:./../../class/lib/net_4_x -optimize -r:./../../class/lib/xbuild_14/Microsoft.Build.Engine.dll /r:./../../class/lib/xbuild_14/Microsoft.Build.Framework.dll /r:./../../class/lib/xbuild_14/Microsoft.Build.Utilities.Core.dll /r:System.Xml.dll</flags>
  4426. <output>Microsoft.Build.Engine_test_xbuild_14.dll</output>
  4427. <built_sources></built_sources>
  4428. <library_output>Microsoft.Build.Engine_test_xbuild_14.dll</library_output>
  4429. <fx_version>4.5</fx_version>
  4430. <profile>xbuild_14</profile>
  4431. <response>./../../build/deps/Microsoft.Build.Engine_test_xbuild_14.dll.response</response>
  4432. </project>
  4433. <project dir="class/Mono.XBuild.Tasks" library="Mono.XBuild.Tasks-xbuild_14">
  4434. <boot>false</boot>
  4435. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/xbuild_14 -r:mscorlib.dll -debug -d:XBUILD_12 -d:XBUILD_14 -d:MONO -d:DISABLE_CAS_USE -lib:./../../class/lib/net_4_x -optimize /noconfig /r:mscorlib.dll /r:System.dll /r:System.Xml.dll -r:System -r:System.Xml</flags>
  4436. <output>Mono.XBuild.Tasks.dll</output>
  4437. <built_sources></built_sources>
  4438. <library_output>./../../class/lib/xbuild_14/Mono.XBuild.Tasks.dll</library_output>
  4439. <fx_version>4.5</fx_version>
  4440. <profile>xbuild_14</profile>
  4441. <response>Mono.XBuild.Tasks.dll.sources</response>
  4442. </project>
  4443. <project dir="class/Mono.XBuild.Tasks" library="Mono.XBuild.Tasks-tests-xbuild_14">
  4444. <boot>false</boot>
  4445. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/xbuild_14 -r:mscorlib.dll -debug -d:XBUILD_12 -d:XBUILD_14 -d:MONO -d:DISABLE_CAS_USE -lib:./../../class/lib/net_4_x -optimize -r:./../../class/lib/xbuild_14/Mono.XBuild.Tasks.dll</flags>
  4446. <output>Mono.XBuild.Tasks_test_xbuild_14.dll</output>
  4447. <built_sources></built_sources>
  4448. <library_output>Mono.XBuild.Tasks_test_xbuild_14.dll</library_output>
  4449. <fx_version>4.5</fx_version>
  4450. <profile>xbuild_14</profile>
  4451. <response>./../../build/deps/Mono.XBuild.Tasks_test_xbuild_14.dll.response</response>
  4452. </project>
  4453. <project dir="class/Microsoft.Build.Tasks" library="Microsoft.Build.Tasks-xbuild_14">
  4454. <boot>false</boot>
  4455. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/xbuild_14 -r:mscorlib.dll -debug -d:XBUILD_12 -d:XBUILD_14 -d:MONO -d:DISABLE_CAS_USE -lib:./../../class/lib/net_4_x -optimize /noconfig /r:mscorlib.dll /r:System.dll /r:System.Core.dll /r:System.Xml.dll /r: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 -r:System -r:System.Core -r:System.Xml -r:System.Windows.Forms</flags>
  4456. <output>Microsoft.Build.Tasks.Core.dll</output>
  4457. <built_sources></built_sources>
  4458. <library_output>./../../class/lib/xbuild_14/Microsoft.Build.Tasks.Core.dll</library_output>
  4459. <fx_version>4.5</fx_version>
  4460. <profile>xbuild_14</profile>
  4461. <response>Microsoft.Build.Tasks.dll.sources</response>
  4462. </project>
  4463. <project dir="class/Microsoft.Build.Tasks" library="Microsoft.Build.Tasks-tests-xbuild_14">
  4464. <boot>false</boot>
  4465. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/xbuild_14 -r:mscorlib.dll -debug -d:XBUILD_12 -d:XBUILD_14 -d:MONO -d:DISABLE_CAS_USE -lib:./../../class/lib/net_4_x -optimize -r:./../../class/lib/xbuild_14/Microsoft.Build.Tasks.Core.dll /r:System.Xml.dll /r:./../../class/lib/xbuild_14/Microsoft.Build.Engine.dll /r:./../../class/lib/xbuild_14/Microsoft.Build.Framework.dll /r:./../../class/lib/xbuild_14/Mono.XBuild.Tasks.dll /r:./../../class/lib/xbuild_14/Microsoft.Build.Utilities.Core.dll /r:System.Core.dll /r:Microsoft.Build.dll</flags>
  4466. <output>Microsoft.Build.Tasks_test_xbuild_14.dll</output>
  4467. <built_sources></built_sources>
  4468. <library_output>Microsoft.Build.Tasks_test_xbuild_14.dll</library_output>
  4469. <fx_version>4.5</fx_version>
  4470. <profile>xbuild_14</profile>
  4471. <response>./../../build/deps/Microsoft.Build.Tasks_test_xbuild_14.dll.response</response>
  4472. </project>
  4473. <project dir="class/Microsoft.Build" library="Microsoft.Build-xbuild_14">
  4474. <boot>false</boot>
  4475. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/xbuild_14 -r:mscorlib.dll -debug -d:XBUILD_12 -d:XBUILD_14 -d:MONO -d:DISABLE_CAS_USE -lib:./../../class/lib/net_4_x -optimize /noconfig /r:mscorlib.dll /r:System.dll /r:System.Core.dll /r:System.Xml.dll /r:Microsoft.Build.Engine.dll /r:Microsoft.Build.Framework.dll /d:MICROSOFT_BUILD_DLL -r:System -r:System.Core -r:System.Xml -r:Microsoft.Build.Engine -r:Microsoft.Build.Framework</flags>
  4476. <output>Microsoft.Build.dll</output>
  4477. <built_sources>Microsoft.Build.Internal/ExpressionParser.cs</built_sources>
  4478. <library_output>./../../class/lib/xbuild_14/Microsoft.Build.dll</library_output>
  4479. <fx_version>4.5</fx_version>
  4480. <profile>xbuild_14</profile>
  4481. <response>Microsoft.Build.dll.sources</response>
  4482. </project>
  4483. <project dir="class/Microsoft.Build" library="Microsoft.Build-tests-xbuild_14">
  4484. <boot>false</boot>
  4485. <flags>/codepage:65001 -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/xbuild_14 -r:mscorlib.dll -debug -d:XBUILD_12 -d:XBUILD_14 -d:MONO -d:DISABLE_CAS_USE -lib:./../../class/lib/net_4_x -optimize -r:./../../class/lib/xbuild_14/Microsoft.Build.dll /r:mscorlib.dll /r:System.dll /r:System.Core.dll /r:System.Xml.dll /r:Microsoft.Build.Engine.dll /r:Microsoft.Build.Framework.dll /d:MICROSOFT_BUILD_DLL -r:System -r:System.Core -r:System.Xml -r:Microsoft.Build.Engine -r:Microsoft.Build.Framework /r:Microsoft.Build.Utilities.v4.0.dll</flags>
  4486. <output>Microsoft.Build_test_xbuild_14.dll</output>
  4487. <built_sources>Microsoft.Build.Internal/ExpressionParser.cs</built_sources>
  4488. <library_output>Microsoft.Build_test_xbuild_14.dll</library_output>
  4489. <fx_version>4.5</fx_version>
  4490. <profile>xbuild_14</profile>
  4491. <response>./../../build/deps/Microsoft.Build_test_xbuild_14.dll.response</response>
  4492. </project>
  4493. <project dir="tools/xbuild" library="xbuild-xbuild_14">
  4494. <boot></boot>
  4495. <flags>/codepage:65001 -r:./../../class/lib/xbuild_14/Microsoft.Build.Framework.dll -r:./../../class/lib/xbuild_14/Microsoft.Build.Utilities.Core.dll -r:./../../class/lib/xbuild_14/Microsoft.Build.Engine.dll -r:./../../class/lib/xbuild_14/Microsoft.Build.Tasks.Core.dll -d:NET_4_0 -d:NET_4_5 -d:NET_4_6 -d:MONO -d:DISABLE_CAS_USE -nowarn:1699 -nostdlib -lib:./../../class/lib/xbuild_14 -r:mscorlib.dll -debug -d:XBUILD_12 -d:XBUILD_14 -d:MONO -d:DISABLE_CAS_USE -lib:./../../class/lib/net_4_x -optimize /noconfig</flags>
  4496. <output>xbuild.exe</output>
  4497. <built_sources></built_sources>
  4498. <library_output>./../../class/lib/xbuild_14/xbuild.exe</library_output>
  4499. <fx_version>4.5</fx_version>
  4500. <profile>xbuild_14</profile>
  4501. <response>xbuild.exe.sources</response>
  4502. </project>
  4503. </root>