| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617 |
- <?xml version="1.0" encoding="utf-8"?>
- <!-- WARNING: this file is autogenerated, don't modify it. Edit the .sources file of the corresponding assembly instead if you want to add/remove C# source files. -->
- <Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <PropertyGroup>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">net_4_x</Platform>
- <ProjectGuid>{8E30FC6B-D06F-495E-A5C9-18B40575FD60}</ProjectGuid>
- <OutputType>Library</OutputType>
- <NoWarn>1699,436</NoWarn>
- <LangVersion>latest</LangVersion>
- <HostPlatform Condition=" '$(HostPlatform)' == '' and '$(OS)' == 'Windows_NT'">win32</HostPlatform>
- <HostPlatform Condition=" '$(HostPlatform)' == '' and '$(OS)' == 'Unix' and $([System.IO.File]::Exists('/usr/lib/libc.dylib'))">macos</HostPlatform>
- <HostPlatform Condition=" '$(HostPlatform)' == '' and '$(OS)' == 'Unix'">linux</HostPlatform>
- <GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
- <NoStdLib>True</NoStdLib>
- <NoConfig>True</NoConfig>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <AssemblyName>System</AssemblyName>
- <TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
- </PropertyGroup>
- <PropertyGroup>
- <!-- Set AddAdditionalExplicitAssemblyReferences to false, otherwise if targetting .NET4.0,
- Microsoft.NETFramework.props will force a dependency on the assembly System.Core. This
- is a problem to compile the Mono mscorlib.dll -->
- <AddAdditionalExplicitAssemblyReferences>false</AddAdditionalExplicitAssemblyReferences>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Platform)' == 'net_4_x' ">
- <OutputPath>./../../class/lib/net_4_x-$(HostPlatform)</OutputPath>
- <IntermediateOutputPath>./../../class/obj/$(AssemblyName)-net_4_x-$(HostPlatform)</IntermediateOutputPath>
- <DefineConstants>NET_4_0;NET_4_5;NET_4_6;MONO;WIN_PLATFORM;COREFX;CONFIGURATION_2_0;SYSTEM_NET_PRIMITIVES_DLL;XML_DEP;SECURITY_DEP;FEATURE_PAL;SYSTEM_NAMESPACE;MONO;PLATFORM_UNIX;MONO_FEATURE_PROCESS_START;MONO_FEATURE_THREAD_ABORT;MONO_FEATURE_THREAD_SUSPEND_RESUME;MONO_FEATURE_MULTIPLE_APPDOMAINS;MONO_SECURITY_ALIAS;CODEDOM;FEATURE_COMPILED;MONO_FEATURE_BTLS;CONFIGURATION_DEP</DefineConstants>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Platform)' == 'monodroid' ">
- <OutputPath>./../../class/lib/monodroid</OutputPath>
- <IntermediateOutputPath>./../../class/obj/$(AssemblyName)-monodroid</IntermediateOutputPath>
- <DefineConstants>NET_1_1;NET_2_0;NET_2_1;NET_3_5;NET_4_0;NET_4_5;MONO;MOBILE;MOBILE_LEGACY;MOBILE_DYNAMIC;MONODROID;ANDROID;COREFX;CONFIGURATION_2_0;SYSTEM_NET_PRIMITIVES_DLL;XML_DEP;SECURITY_DEP;FEATURE_PAL;SYSTEM_NAMESPACE;MONO;PLATFORM_UNIX;MONO_FEATURE_PROCESS_START;MONO_FEATURE_THREAD_ABORT;MONO_FEATURE_THREAD_SUSPEND_RESUME;MONO_FEATURE_MULTIPLE_APPDOMAINS;MONO_SECURITY_ALIAS;FEATURE_COMPILED;MONO_FEATURE_BTLS</DefineConstants>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Platform)' == 'monotouch' ">
- <OutputPath>./../../class/lib/monotouch</OutputPath>
- <IntermediateOutputPath>./../../class/obj/$(AssemblyName)-monotouch</IntermediateOutputPath>
- <DefineConstants>NET_1_1;NET_2_0;NET_2_1;NET_3_5;NET_4_0;NET_4_5;MOBILE;MOBILE_LEGACY;MONO;MONOTOUCH;DISABLE_REMOTING;DISABLE_COM;FEATURE_INTERCEPTABLE_THREADPOOL_CALLBACK;FULL_AOT_RUNTIME;COREFX;CONFIGURATION_2_0;SYSTEM_NET_PRIMITIVES_DLL;XML_DEP;SECURITY_DEP;FEATURE_PAL;SYSTEM_NAMESPACE;MONO;PLATFORM_UNIX;MONO_FEATURE_PROCESS_START;MONO_FEATURE_THREAD_ABORT;MONO_FEATURE_THREAD_SUSPEND_RESUME;MONO_FEATURE_MULTIPLE_APPDOMAINS;MONO_SECURITY_ALIAS;MONO_FEATURE_APPLETLS;ONLY_APPLETLS;ENABLE_GSS</DefineConstants>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Platform)' == 'monotouch_runtime' ">
- <OutputPath>./../../class/lib/monotouch_runtime</OutputPath>
- <IntermediateOutputPath>./../../class/obj/$(AssemblyName)-monotouch_runtime</IntermediateOutputPath>
- <DefineConstants>NET_1_1;NET_2_0;NET_2_1;NET_3_5;NET_4_0;NET_4_5;MOBILE;MOBILE_LEGACY;MONO;MONOTOUCH;DISABLE_REMOTING;DISABLE_COM;FEATURE_INTERCEPTABLE_THREADPOOL_CALLBACK;COREFX;CONFIGURATION_2_0;SYSTEM_NET_PRIMITIVES_DLL;XML_DEP;SECURITY_DEP;FEATURE_PAL;SYSTEM_NAMESPACE;MONO;PLATFORM_UNIX;MONO_FEATURE_PROCESS_START;MONO_FEATURE_THREAD_ABORT;MONO_FEATURE_THREAD_SUSPEND_RESUME;MONO_FEATURE_MULTIPLE_APPDOMAINS;MONO_SECURITY_ALIAS;MONO_FEATURE_APPLETLS;ONLY_APPLETLS;ENABLE_GSS</DefineConstants>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Platform)' == 'monotouch_watch' ">
- <OutputPath>./../../class/lib/monotouch_watch</OutputPath>
- <IntermediateOutputPath>./../../class/obj/$(AssemblyName)-monotouch_watch</IntermediateOutputPath>
- <DefineConstants>NET_1_1;NET_2_0;NET_2_1;NET_3_5;NET_4_0;NET_4_5;MOBILE;MOBILE_LEGACY;MONO;MONOTOUCH;DISABLE_REMOTING;DISABLE_COM;FEATURE_INTERCEPTABLE_THREADPOOL_CALLBACK;FULL_AOT_RUNTIME;FEATURE_NO_BSD_SOCKETS;MONOTOUCH_WATCH;COREFX;CONFIGURATION_2_0;SYSTEM_NET_PRIMITIVES_DLL;XML_DEP;SECURITY_DEP;FEATURE_PAL;SYSTEM_NAMESPACE;MONO;PLATFORM_UNIX;INSIDE_SYSTEM;MONO_FEATURE_APPLE_X509</DefineConstants>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Platform)' == 'monotouch_watch_runtime' ">
- <OutputPath>./../../class/lib/monotouch_watch_runtime</OutputPath>
- <IntermediateOutputPath>./../../class/obj/$(AssemblyName)-monotouch_watch_runtime</IntermediateOutputPath>
- <DefineConstants>NET_1_1;NET_2_0;NET_2_1;NET_3_5;NET_4_0;NET_4_5;MOBILE;MOBILE_LEGACY;MONO;MONOTOUCH;DISABLE_REMOTING;DISABLE_COM;FEATURE_INTERCEPTABLE_THREADPOOL_CALLBACK;FEATURE_NO_BSD_SOCKETS;MONOTOUCH_WATCH;COREFX;CONFIGURATION_2_0;SYSTEM_NET_PRIMITIVES_DLL;XML_DEP;SECURITY_DEP;FEATURE_PAL;SYSTEM_NAMESPACE;MONO;PLATFORM_UNIX;MONO_FEATURE_PROCESS_START;MONO_FEATURE_MULTIPLE_APPDOMAINS;INSIDE_SYSTEM;MONO_FEATURE_APPLE_X509</DefineConstants>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Platform)' == 'monotouch_tv' ">
- <OutputPath>./../../class/lib/monotouch_tv</OutputPath>
- <IntermediateOutputPath>./../../class/obj/$(AssemblyName)-monotouch_tv</IntermediateOutputPath>
- <DefineConstants>NET_1_1;NET_2_0;NET_2_1;NET_3_5;NET_4_0;NET_4_5;MOBILE;MOBILE_LEGACY;MONO;MONOTOUCH;DISABLE_REMOTING;DISABLE_COM;FEATURE_INTERCEPTABLE_THREADPOOL_CALLBACK;FULL_AOT_RUNTIME;MONOTOUCH_TV;COREFX;CONFIGURATION_2_0;SYSTEM_NET_PRIMITIVES_DLL;XML_DEP;SECURITY_DEP;FEATURE_PAL;SYSTEM_NAMESPACE;MONO;PLATFORM_UNIX;MONO_SECURITY_ALIAS;MONO_FEATURE_APPLETLS;ONLY_APPLETLS</DefineConstants>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Platform)' == 'monotouch_tv_runtime' ">
- <OutputPath>./../../class/lib/monotouch_tv_runtime</OutputPath>
- <IntermediateOutputPath>./../../class/obj/$(AssemblyName)-monotouch_tv_runtime</IntermediateOutputPath>
- <DefineConstants>NET_1_1;NET_2_0;NET_2_1;NET_3_5;NET_4_0;NET_4_5;MOBILE;MOBILE_LEGACY;MONO;MONOTOUCH;DISABLE_REMOTING;DISABLE_COM;FEATURE_INTERCEPTABLE_THREADPOOL_CALLBACK;MONOTOUCH_TV;COREFX;CONFIGURATION_2_0;SYSTEM_NET_PRIMITIVES_DLL;XML_DEP;SECURITY_DEP;FEATURE_PAL;SYSTEM_NAMESPACE;MONO;PLATFORM_UNIX;MONO_FEATURE_PROCESS_START;MONO_FEATURE_MULTIPLE_APPDOMAINS;MONO_SECURITY_ALIAS;MONO_FEATURE_APPLETLS;ONLY_APPLETLS</DefineConstants>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Platform)' == 'testing_aot_full_interp' ">
- <OutputPath>./../../class/lib/testing_aot_full_interp</OutputPath>
- <IntermediateOutputPath>./../../class/obj/$(AssemblyName)-testing_aot_full_interp</IntermediateOutputPath>
- <DefineConstants>NET_1_1;NET_2_0;NET_2_1;NET_3_5;NET_4_0;NET_4_5;MONO;MOBILE;MOBILE_LEGACY;FULL_AOT_INTERP;DISABLE_COM;COREFX;CONFIGURATION_2_0;SYSTEM_NET_PRIMITIVES_DLL;XML_DEP;SECURITY_DEP;FEATURE_PAL;SYSTEM_NAMESPACE;MONO;PLATFORM_UNIX;MONO_FEATURE_PROCESS_START;MONO_FEATURE_THREAD_ABORT;MONO_FEATURE_THREAD_SUSPEND_RESUME;MONO_FEATURE_MULTIPLE_APPDOMAINS;MONO_SECURITY_ALIAS;FEATURE_COMPILED;MONO_FEATURE_BTLS</DefineConstants>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Platform)' == 'testing_aot_hybrid' ">
- <OutputPath>./../../class/lib/testing_aot_hybrid</OutputPath>
- <IntermediateOutputPath>./../../class/obj/$(AssemblyName)-testing_aot_hybrid</IntermediateOutputPath>
- <DefineConstants>NET_1_1;NET_2_0;NET_2_1;NET_3_5;NET_4_0;NET_4_5;MONO;MOBILE;MOBILE_LEGACY;MOBILE_DYNAMIC;COREFX;CONFIGURATION_2_0;SYSTEM_NET_PRIMITIVES_DLL;XML_DEP;SECURITY_DEP;FEATURE_PAL;SYSTEM_NAMESPACE;MONO;PLATFORM_UNIX;MONO_FEATURE_PROCESS_START;MONO_FEATURE_THREAD_ABORT;MONO_FEATURE_THREAD_SUSPEND_RESUME;MONO_FEATURE_MULTIPLE_APPDOMAINS;MONO_SECURITY_ALIAS;FEATURE_COMPILED;MONO_FEATURE_BTLS</DefineConstants>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Platform)' == 'testing_aot_full' ">
- <OutputPath>./../../class/lib/testing_aot_full</OutputPath>
- <IntermediateOutputPath>./../../class/obj/$(AssemblyName)-testing_aot_full</IntermediateOutputPath>
- <DefineConstants>NET_1_1;NET_2_0;NET_2_1;NET_3_5;NET_4_0;NET_4_5;MONO;MOBILE;MOBILE_LEGACY;FULL_AOT_DESKTOP;FULL_AOT_RUNTIME;DISABLE_REMOTING;DISABLE_COM;COREFX;CONFIGURATION_2_0;SYSTEM_NET_PRIMITIVES_DLL;XML_DEP;SECURITY_DEP;FEATURE_PAL;SYSTEM_NAMESPACE;MONO;PLATFORM_UNIX;MONO_FEATURE_PROCESS_START;MONO_FEATURE_THREAD_ABORT;MONO_FEATURE_THREAD_SUSPEND_RESUME;MONO_FEATURE_MULTIPLE_APPDOMAINS;MONO_SECURITY_ALIAS;MONO_FEATURE_BTLS</DefineConstants>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Platform)' == 'winaot' ">
- <OutputPath>./../../class/lib/winaot</OutputPath>
- <IntermediateOutputPath>./../../class/obj/$(AssemblyName)-winaot</IntermediateOutputPath>
- <DefineConstants>NET_1_1;NET_2_0;NET_2_1;NET_3_5;NET_4_0;NET_4_5;MONO;MOBILE;MOBILE_LEGACY;FULL_AOT_DESKTOP;FULL_AOT_RUNTIME;DISABLE_REMOTING;DISABLE_COM;WIN_PLATFORM;COREFX;CONFIGURATION_2_0;SYSTEM_NET_PRIMITIVES_DLL;XML_DEP;SECURITY_DEP;FEATURE_PAL;SYSTEM_NAMESPACE;MONO;PLATFORM_UNIX;MONO_FEATURE_PROCESS_START;MONO_FEATURE_THREAD_ABORT;MONO_FEATURE_THREAD_SUSPEND_RESUME;MONO_FEATURE_MULTIPLE_APPDOMAINS;MONO_SECURITY_ALIAS;MONO_FEATURE_BTLS</DefineConstants>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Platform)' == 'xammac' ">
- <OutputPath>./../../class/lib/xammac</OutputPath>
- <IntermediateOutputPath>./../../class/obj/$(AssemblyName)-xammac</IntermediateOutputPath>
- <DefineConstants>NET_1_1;NET_2_0;NET_2_1;NET_3_5;NET_4_0;NET_4_5;MONO;MOBILE;MOBILE_DYNAMIC;XAMMAC;FEATURE_INTERCEPTABLE_THREADPOOL_CALLBACK;XAMARIN_MODERN;COREFX;CONFIGURATION_2_0;SYSTEM_NET_PRIMITIVES_DLL;XML_DEP;SECURITY_DEP;FEATURE_PAL;SYSTEM_NAMESPACE;MONO;PLATFORM_UNIX;MONO_FEATURE_PROCESS_START;MONO_FEATURE_THREAD_ABORT;MONO_FEATURE_THREAD_SUSPEND_RESUME;MONO_FEATURE_MULTIPLE_APPDOMAINS;MONO_SECURITY_ALIAS;MONO_FEATURE_APPLETLS;FEATURE_COMPILED;ONLY_APPLETLS;ENABLE_GSS</DefineConstants>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Platform)' == 'xammac_net_4_5' ">
- <OutputPath>./../../class/lib/xammac_net_4_5</OutputPath>
- <IntermediateOutputPath>./../../class/obj/$(AssemblyName)-xammac_net_4_5</IntermediateOutputPath>
- <DefineConstants>NET_4_0;NET_4_5;NET_4_6;MONO;FEATURE_INTERCEPTABLE_THREADPOOL_CALLBACK;NO_SYSTEM_DRAWING_DEPENDENCY;NO_WINFORMS_DEPENDENCY;NO_SYSTEM_WEB_DEPENDENCY;XAMMAC_4_5;XAMARIN_MODERN;COREFX;CONFIGURATION_2_0;SYSTEM_NET_PRIMITIVES_DLL;XML_DEP;SECURITY_DEP;FEATURE_PAL;SYSTEM_NAMESPACE;MONO;PLATFORM_UNIX;MONO_FEATURE_PROCESS_START;MONO_FEATURE_THREAD_ABORT;MONO_FEATURE_THREAD_SUSPEND_RESUME;MONO_FEATURE_MULTIPLE_APPDOMAINS;MONO_SECURITY_ALIAS;CODEDOM;MONO_FEATURE_APPLETLS;FEATURE_COMPILED;ONLY_APPLETLS;ENABLE_GSS;CONFIGURATION_DEP</DefineConstants>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Platform)' == 'orbis' ">
- <OutputPath>./../../class/lib/orbis</OutputPath>
- <IntermediateOutputPath>./../../class/obj/$(AssemblyName)-orbis</IntermediateOutputPath>
- <DefineConstants>NET_1_1;NET_2_0;NET_2_1;NET_3_5;NET_4_0;NET_4_5;MONO;MOBILE;MOBILE_LEGACY;FULL_AOT_DESKTOP;FULL_AOT_RUNTIME;ORBIS;DISABLE_REMOTING;DISABLE_COM;COREFX;CONFIGURATION_2_0;SYSTEM_NET_PRIMITIVES_DLL;XML_DEP;SECURITY_DEP;FEATURE_PAL;SYSTEM_NAMESPACE;MONO;PLATFORM_UNIX;MONO_FEATURE_PROCESS_START;MONO_FEATURE_THREAD_ABORT;MONO_FEATURE_THREAD_SUSPEND_RESUME;MONO_FEATURE_MULTIPLE_APPDOMAINS;MONO_SECURITY_ALIAS</DefineConstants>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Platform)' == 'unreal' ">
- <OutputPath>./../../class/lib/unreal</OutputPath>
- <IntermediateOutputPath>./../../class/obj/$(AssemblyName)-unreal</IntermediateOutputPath>
- <DefineConstants>NET_1_1;NET_2_0;NET_2_1;MOBILE;MOBILE_DYNAMIC;NET_3_5;NET_4_0;NET_4_5;MONO;COREFX;CONFIGURATION_2_0;SYSTEM_NET_PRIMITIVES_DLL;XML_DEP;SECURITY_DEP;FEATURE_PAL;SYSTEM_NAMESPACE;MONO;PLATFORM_UNIX;MONO_FEATURE_PROCESS_START;MONO_FEATURE_THREAD_ABORT;MONO_FEATURE_THREAD_SUSPEND_RESUME;MONO_FEATURE_MULTIPLE_APPDOMAINS;MONO_SECURITY_ALIAS;FEATURE_COMPILED;MONO_FEATURE_BTLS</DefineConstants>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Platform)' == 'wasm' ">
- <OutputPath>./../../class/lib/wasm</OutputPath>
- <IntermediateOutputPath>./../../class/obj/$(AssemblyName)-wasm</IntermediateOutputPath>
- <DefineConstants>NET_1_1;NET_2_0;NET_2_1;NET_3_5;NET_4_0;NET_4_5;MONO;MOBILE;MOBILE_LEGACY;FULL_AOT_DESKTOP;FULL_AOT_RUNTIME;WASM;DISABLE_REMOTING;DISABLE_COM;FEATURE_NO_BSD_SOCKETS;COREFX;CONFIGURATION_2_0;SYSTEM_NET_PRIMITIVES_DLL;XML_DEP;SECURITY_DEP;FEATURE_PAL;SYSTEM_NAMESPACE;MONO;PLATFORM_UNIX;MONO_FEATURE_PROCESS_START;MONO_SECURITY_ALIAS;MONO_FEATURE_BTLS</DefineConstants>
- </PropertyGroup>
- <!-- @ALL_PROFILE_PROPERTIES@ -->
- <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <!-- TRACE is set only for Debug configuration, so inherit from platform-specific value -->
- <DefineConstants>TRACE;$(DefineConstants)</DefineConstants>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
- <DebugType>pdbonly</DebugType>
- <Optimize>true</Optimize>
- </PropertyGroup>
- <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
- <!-- @BUILT_SOURCES@ -->
- <!--Common files-->
- <ItemGroup>
- <Compile Include="..\..\..\external\corefx\src\Common\src\CoreLib\System\Collections\Generic\ValueListBuilder.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\CoreLib\System\ComponentModel\DefaultValueAttribute.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\CoreLib\System\ComponentModel\EditorBrowsableAttribute.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\IO\ChunkedMemoryStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\IO\DelegatingStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\IO\PathInternal.CaseSensitivity.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\IO\ReadOnlyMemoryStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\ContextFlagsPal.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\DebugCriticalHandleMinusOneIsInvalid.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\DebugSafeHandle.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\ExceptionCheck.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\HttpStatusDescription.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\IPAddressParserStatics.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\IPv4AddressHelper.Common.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Logging\NetEventSource.Common.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Mail\DomainLiteralReader.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Mail\DotAtomReader.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Mail\MailAddressParser.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Mail\MailBnfHelper.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Mail\QuotedPairReader.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Mail\QuotedStringFormatReader.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Mail\WhitespaceReader.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\NTAuthentication.Common.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\NegotiationInfoClass.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\SecurityProtocol.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\SecurityStatusPal.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\CertificateHelper.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\SSPIHandleCache.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\SecurityBuffer.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\SecurityBufferType.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\TcpValidationHelpers.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\UriScheme.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\WebSockets\ManagedWebSocket.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\WebSockets\WebSocketValidate.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\NotImplemented.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\PasteArguments.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Security\Cryptography\DerEncoder.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Security\Cryptography\DerSequenceReader.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\StringExtensions.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Collections.Concurrent\src\System\Collections\Concurrent\BlockingCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Collections.Concurrent\src\System\Collections\Concurrent\CDSCollectionETWBCLProvider.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Collections.Concurrent\src\System\Collections\Concurrent\ConcurrentBag.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Collections.NonGeneric\src\System\Collections\Specialized\CollectionsUtil.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Collections.Specialized\src\System\Collections\Specialized\BitVector32.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Collections.Specialized\src\System\Collections\Specialized\HybridDictionary.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Collections.Specialized\src\System\Collections\Specialized\IOrderedDictionary.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Collections.Specialized\src\System\Collections\Specialized\ListDictionary.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Collections.Specialized\src\System\Collections\Specialized\NameValueCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Collections.Specialized\src\System\Collections\Specialized\OrderedDictionary.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Collections.Specialized\src\System\Collections\Specialized\StringCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Collections.Specialized\src\System\Collections\Specialized\StringDictionary.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Collections\src\System\Collections\Generic\BitHelper.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Collections\src\System\Collections\Generic\ICollectionDebugView.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Collections\src\System\Collections\Generic\IDictionaryDebugView.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Collections\src\System\Collections\Generic\LinkedList.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Collections\src\System\Collections\Generic\SortedDictionary.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Collections\src\System\Collections\Generic\SortedList.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Collections\src\System\Collections\Generic\SortedSet.TreeSubSet.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Collections\src\System\Collections\Generic\SortedSet.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Collections\src\System\Collections\Generic\SortedSetEqualityComparer.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.EventBasedAsync\src\System\ComponentModel\AsyncOperation.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.EventBasedAsync\src\System\ComponentModel\AsyncOperationManager.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.EventBasedAsync\src\System\ComponentModel\BackgroundWorker.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.Primitives\src\System\ComponentModel\BrowsableAttribute.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.Primitives\src\System\ComponentModel\ComponentCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.Primitives\src\System\ComponentModel\DescriptionAttribute.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.Primitives\src\System\ComponentModel\DesignOnlyAttribute.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.Primitives\src\System\ComponentModel\DesignerCategoryAttribute.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.Primitives\src\System\ComponentModel\DesignerSerializationVisibility.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.Primitives\src\System\ComponentModel\DesignerSerializationVisibilityAttribute.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.Primitives\src\System\ComponentModel\DisplayNameAttribute.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.Primitives\src\System\ComponentModel\EventHandlerList.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.Primitives\src\System\ComponentModel\IContainer.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.Primitives\src\System\ComponentModel\ISite.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.Primitives\src\System\ComponentModel\ISupportInitialize.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.Primitives\src\System\ComponentModel\ISynchronizeInvoke.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.Primitives\src\System\ComponentModel\ImmutableObjectAttribute.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.Primitives\src\System\ComponentModel\InitializationEventAttribute.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.Primitives\src\System\ComponentModel\InvalidEnumArgumentException.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.Primitives\src\System\ComponentModel\LocalizableAttribute.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.Primitives\src\System\ComponentModel\MergablePropertyAttribute.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.Primitives\src\System\ComponentModel\ReadOnlyAttribute.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\AddingNewEventArgs.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\AddingNewEventHandler.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\AmbientValueAttribute.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\ArrayConverter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\AttributeCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\AttributeProviderAttribute.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\BaseComponentEditor.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\BaseNumberConverter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\BindableAttribute.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\BindableSupport.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\BindingDirection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\BindingList.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\BooleanConverter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\ByteConverter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\CancelEventHandler.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\CharConverter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\CollectionChangeAction.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\CollectionChangeEventArgs.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\CollectionChangeEventHandler.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\ComplexBindingPropertiesAttribute.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\ComponentResourceManager.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\ContainerFilterService.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\CultureInfoConverter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\CustomTypeDescriptor.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\DataObjectAttribute.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\DataObjectFieldAttribute.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\DataObjectMethodAttribute.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\DataObjectMethodType.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\DateTimeConverter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\DecimalConverter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\DefaultBindingPropertyAttribute.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\DefaultEventAttribute.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\DefaultPropertyAttribute.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\DelegatingTypeDescriptionProvider.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\DesignTimeVisibleAttribute.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\ActiveDocumentEvent.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\ActiveDocumentEventHandler.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\CheckoutException.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\CommandID.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\ComponentChangedEvent.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\ComponentChangedEventHandler.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\ComponentChangingEvent.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\ComponentChangingEventHandler.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\ComponentEvent.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\ComponentEventHandler.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\ComponentRenameEvent.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\ComponentRenameEventHandler.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\DesignerTransaction.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\DesignerTransactionCloseEvent.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\DesignerTransactionCloseEventHandler.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\DesignerVerb.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\DesignerVerbCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\DesigntimeLicenseContext.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\DesigntimeLicenseContextSerializer.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\DocumentCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\DocumentEventArgs.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\DocumentEventHandler.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\HelpContextType.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\HelpKeywordAttribute.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\HelpKeywordType.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\IComponentChangeService.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\IComponentDiscoveryService.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\IComponentInitializer.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\IDesigner.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\IDesignerEventService.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\IDesignerFilter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\IDesignerHost.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\IDesignerHostTransactionState.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\IDesignerOptionService.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\IDictionaryService.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\IEventPropertyService.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\IExtenderListService.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\IExtenderProviderService.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\IHelpService.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\IInheritanceService.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\IMenuCommandService.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\IReferenceService.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\IResourceService.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\IRootDesigner.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\ISelectionService.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\IServiceObjectContainer.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\ITreeDesigner.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\ITypeDescriptorFilterService.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\ITypeDiscoveryService.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\ITypeResolutionService.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\InheritanceAttribute.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\InheritanceLevel.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\MenuCommand.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\PropertyTabAttribute.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\PropertyTabScope.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\SelectionTypes.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\Serialization\ComponentSerializationService.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\Serialization\ContextStack.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\Serialization\DefaultSerializationProviderAttribute.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\Serialization\DesignerLoader.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\Serialization\DesignerSerializerAttribute.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\Serialization\IDesignerLoaderHost.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\Serialization\IDesignerLoaderService.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\Serialization\IDesignerSerializationManager.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\Serialization\IDesignerSerializationProvider.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\Serialization\IDesignerSerializationService.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\Serialization\INameCreationService.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\Serialization\InstanceDescriptor.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\Serialization\MemberRelationshipService.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\Serialization\ResolveNameEventArgs.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\Serialization\ResolveNameEventHandler.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\Serialization\RootDesignerSerializerAttribute.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\Serialization\SerializationStore.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\ServiceCreatorCallback.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\ServiceObjectContainer.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\StandardCommands.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\StandardToolWindows.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\ToolboxItemAttribute.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Design\ViewTechnology.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\DoubleConverter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\EditorAttribute.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\EventDescriptor.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\EventDescriptorCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\ExpandableObjectConverter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\ExtendedPropertyDescriptor.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\ExtenderProvidedPropertyAttribute.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\GuidConverter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\HandledEventArgs.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\HandledEventHandler.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\IBindingList.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\IBindingListView.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\ICancelAddNew.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\IComNativeDescriptorHandler.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\ICustomTypeDescriptor.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\IDataErrorInfo.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\IExtenderProvider.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\IIntellisenseBuilder.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\IListSource.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\INestedContainer.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\INestedSite.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\IRaiseItemChangedEvents.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\ISupportInitializeNotification.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\ITypeDescriptorContext.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\ITypedList.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\InstallerTypeAttribute.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\InstanceCreationEditor.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Int16Converter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Int32Converter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\Int64Converter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\InvalidAsynchronousStateException.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\LicFileLicenseProvider.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\License.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\LicenseContext.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\LicenseManager.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\LicenseProvider.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\LicenseProviderAttribute.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\LicenseUsageMode.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\ListBindableAttribute.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\ListChangedEventArgs.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\ListChangedEventHandler.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\ListChangedType.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\ListSortDescription.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\ListSortDescriptionCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\ListSortDirection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\LookupBindingPropertiesAttribute.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\MarshalByValueComponent.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\MaskedTextProvider.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\MaskedTextResultHint.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\MultilineStringConverter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\NestedContainer.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\NullableConverter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\PasswordPropertyTextAttribute.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\PropertyDescriptor.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\PropertyDescriptorCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\ProvidePropertyAttribute.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\RecommendedAsConfigurableAttribute.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\ReferenceConverter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\ReflectEventDescriptor.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\RefreshEventArgs.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\RefreshEventHandler.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\RunInstallerAttribute.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\SByteConverter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\SettingsBindableAttribute.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\SingleConverter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\StringConverter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\SyntaxCheck.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\TimeSpanConverter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\ToolboxItemFilterAttribute.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\ToolboxItemFilterType.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\TypeConverterAttribute.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\TypeDescriptionProvider.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\TypeDescriptionProviderAttribute.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\TypeDescriptionProviderService.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\TypeListConverter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\UInt16Converter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\UInt32Converter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\UInt64Converter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel.TypeConverter\src\System\ComponentModel\WarningException.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel\src\System\ComponentModel\CancelEventArgs.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel\src\System\ComponentModel\IChangeTracking.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel\src\System\ComponentModel\IEditableObject.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ComponentModel\src\System\ComponentModel\IRevertibleChangeTracking.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Diagnostics.StackTrace\src\System\Diagnostics\StackFrameExtensions.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.IO.Compression\src\System\IO\Compression\CompressionLevel.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.IO.Compression\src\System\IO\Compression\CompressionMode.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.IO.Compression\src\System\IO\Compression\GZipStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.IO.FileSystem.Watcher\src\System\IO\FileSystemWatcher.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.IO.FileSystem.Watcher\src\System\IO\WaitForChangedResult.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Mail\src\System\Net\Base64Stream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Mail\src\System\Net\BufferBuilder.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Mail\src\System\Net\CloseableStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Mail\src\System\Net\DelegatedStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Mail\src\System\Net\Mail\MailAddress.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Mail\src\System\Net\Mail\MailAddressCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Mail\src\System\Net\Mail\MailHeaderID.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Mail\src\System\Net\Mail\MailHeaderInfo.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Mail\src\System\Net\Mime\Base64WriteStateInfo.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Mail\src\System\Net\Mime\BaseWriter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Mail\src\System\Net\Mime\ContentDisposition.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Mail\src\System\Net\Mime\ContentType.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Mail\src\System\Net\Mime\DispositionTypeNames.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Mail\src\System\Net\Mime\EightBitStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Mail\src\System\Net\Mime\EncodedStreamFactory.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Mail\src\System\Net\Mime\HeaderCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Mail\src\System\Net\Mime\IEncodableStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Mail\src\System\Net\Mime\MediaTypeNames.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Mail\src\System\Net\Mime\MimeBasePart.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Mail\src\System\Net\Mime\MimeMultiPart.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Mail\src\System\Net\Mime\MimeMultiPartType.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Mail\src\System\Net\Mime\MimePart.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Mail\src\System\Net\Mime\MimeWriter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Mail\src\System\Net\Mime\MultiAsyncResult.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Mail\src\System\Net\Mime\QEncodedStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Mail\src\System\Net\Mime\QuotedPrintableStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Mail\src\System\Net\Mime\SmtpDateTime.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Mail\src\System\Net\Mime\TransferEncoding.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Mail\src\System\Net\Mime\WriteStateInfoBase.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Mail\src\System\Net\TrackingStringDictionary.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Mail\src\System\Net\TrackingValidationObjectDictionary.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Primitives\src\System\Net\HttpStatusCode.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Primitives\src\System\Net\HttpVersion.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Primitives\src\System\Net\IPAddress.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Primitives\src\System\Net\IPEndPoint.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.ServicePoint\src\System\Net\SecurityProtocolType.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.WebClient\src\System\Net\WebClient.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.WebSockets.Client\src\System\Net\WebSockets\ClientWebSocket.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.WebSockets.Client\src\System\Net\WebSockets\ClientWebSocketOptions.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.WebSockets.Client\src\System\Net\WebSockets\WebSocketHandle.Managed.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.WebSockets.WebSocketProtocol\src\System\Net\WebSockets\ManagedWebSocket.netstandard.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.WebSockets\src\System\Net\WebSockets\ValueWebSocketReceiveResult.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.WebSockets\src\System\Net\WebSockets\WebSocket.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.WebSockets\src\System\Net\WebSockets\WebSocketCloseStatus.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.WebSockets\src\System\Net\WebSockets\WebSocketContext.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.WebSockets\src\System\Net\WebSockets\WebSocketError.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.WebSockets\src\System\Net\WebSockets\WebSocketException.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.WebSockets\src\System\Net\WebSockets\WebSocketMessageType.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.WebSockets\src\System\Net\WebSockets\WebSocketReceiveResult.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.WebSockets\src\System\Net\WebSockets\WebSocketState.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ObjectModel\src\System\Collections\Generic\DebugView.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ObjectModel\src\System\Collections\ObjectModel\ObservableCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ObjectModel\src\System\Collections\ObjectModel\ReadOnlyObservableCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ObjectModel\src\System\Collections\Specialized\INotifyCollectionChanged.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ObjectModel\src\System\Collections\Specialized\NotifyCollectionChangedEventArgs.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ObjectModel\src\System\ComponentModel\DataErrorsChangedEventArgs.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ObjectModel\src\System\ComponentModel\INotifyDataErrorInfo.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ObjectModel\src\System\ComponentModel\INotifyPropertyChanged.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ObjectModel\src\System\ComponentModel\INotifyPropertyChanging.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ObjectModel\src\System\ComponentModel\PropertyChangedEventArgs.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ObjectModel\src\System\ComponentModel\PropertyChangedEventHandler.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ObjectModel\src\System\ComponentModel\PropertyChangingEventArgs.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.ObjectModel\src\System\ComponentModel\PropertyChangingEventHandler.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Private.Uri\src\System\IPv4AddressHelper.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Private.Uri\src\System\IPv6AddressHelper.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Private.Uri\src\System\UriBuilder.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Runtime.Extensions\src\System\CodeDom\Compiler\IndentedTextWriter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Runtime.Extensions\src\System\StringNormalizationExtensions.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Runtime.InteropServices\src\System\Security\SecureStringMarshal.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Runtime\src\System\Collections\Generic\ISet.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Security.Cryptography.Encoding\src\Internal\Cryptography\OidLookup.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Security.Cryptography.Encoding\src\System\Security\Cryptography\AsnEncodedDataCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Security.Cryptography.Encoding\src\System\Security\Cryptography\AsnEncodedDataEnumerator.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Security.Cryptography.Encoding\src\System\Security\Cryptography\Oid.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Security.Cryptography.Encoding\src\System\Security\Cryptography\OidCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Security.Cryptography.Encoding\src\System\Security\Cryptography\OidEnumerator.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Security.Cryptography.Encoding\src\System\Security\Cryptography\OidGroup.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Security.Cryptography.X509Certificates\src\Internal\Cryptography\Oids.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Security.Cryptography.X509Certificates\src\Internal\Cryptography\Pal.OSX\CertificateData.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Security.Cryptography.X509Certificates\src\System\Security\Cryptography\X509Certificates\GeneralNameEncoder.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Security.Cryptography.X509Certificates\src\System\Security\Cryptography\X509Certificates\OpenFlags.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Security.Cryptography.X509Certificates\src\System\Security\Cryptography\X509Certificates\StoreLocation.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Security.Cryptography.X509Certificates\src\System\Security\Cryptography\X509Certificates\StoreName.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Security.Cryptography.X509Certificates\src\System\Security\Cryptography\X509Certificates\SubjectAlternativeNameBuilder.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Security.Cryptography.X509Certificates\src\System\Security\Cryptography\X509Certificates\X500DistinguishedNameFlags.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Security.Cryptography.X509Certificates\src\System\Security\Cryptography\X509Certificates\X509ChainStatusFlags.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Security.Cryptography.X509Certificates\src\System\Security\Cryptography\X509Certificates\X509FindType.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Security.Cryptography.X509Certificates\src\System\Security\Cryptography\X509Certificates\X509IncludeOption.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Security.Cryptography.X509Certificates\src\System\Security\Cryptography\X509Certificates\X509KeyUsageFlags.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Security.Cryptography.X509Certificates\src\System\Security\Cryptography\X509Certificates\X509NameType.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Security.Cryptography.X509Certificates\src\System\Security\Cryptography\X509Certificates\X509RevocationFlag.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Security.Cryptography.X509Certificates\src\System\Security\Cryptography\X509Certificates\X509RevocationMode.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Security.Cryptography.X509Certificates\src\System\Security\Cryptography\X509Certificates\X509SubjectKeyIdentifierHashAlgorithm.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Security.Cryptography.X509Certificates\src\System\Security\Cryptography\X509Certificates\X509VerificationFlags.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Collections\Generic\ValueListBuilder.Pop.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Collections\HashtableExtensions.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\Capture.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\CaptureCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\CollectionDebuggerProxy.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\Group.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\GroupCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\Match.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\MatchCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\Reference.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\Regex.Cache.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\Regex.Match.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\Regex.Replace.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\Regex.Split.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\Regex.Timeout.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\Regex.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\RegexBoyerMoore.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\RegexCharClass.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\RegexCode.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\RegexCompilationInfo.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\RegexFCD.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\RegexInterpreter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\RegexMatchTimeoutException.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\RegexNode.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\RegexOptions.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\RegexParser.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\RegexPrefix.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\RegexReplacement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\RegexRunner.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\RegexRunnerFactory.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\RegexTree.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\RegexWriter.cs" />
- <Compile Include="..\referencesource\System\compmod\microsoft\win32\safehandles\SafeProcessHandle.cs" />
- <Compile Include="..\referencesource\System\compmod\system\codedom\compiler\GeneratedCodeAttribute.cs" />
- <Compile Include="..\referencesource\System\compmod\system\collections\specialized\casesensitivestringdictionary.cs" />
- <Compile Include="..\referencesource\System\compmod\system\collections\specialized\nameobjectcollectionbase.cs" />
- <Compile Include="..\referencesource\System\compmod\system\collections\specialized\stringdictionary.cs" />
- <Compile Include="..\referencesource\System\compmod\system\componentmodel\ArraySubsetEnumerator.cs" />
- <Compile Include="..\referencesource\System\compmod\system\componentmodel\AsyncCompletedEventArgs.cs" />
- <Compile Include="..\referencesource\System\compmod\system\componentmodel\AsyncCompletedEventHandler.cs" />
- <Compile Include="..\referencesource\System\compmod\system\componentmodel\CategoryAttribute.cs" />
- <Compile Include="..\referencesource\System\compmod\system\componentmodel\CollectionConverter.cs" />
- <Compile Include="..\referencesource\System\compmod\system\componentmodel\CompModSwitches.cs" />
- <Compile Include="..\referencesource\System\compmod\system\componentmodel\Component.cs" />
- <Compile Include="..\referencesource\System\compmod\system\componentmodel\ComponentConverter.cs" />
- <Compile Include="..\referencesource\System\compmod\system\componentmodel\Container.cs" />
- <Compile Include="..\referencesource\System\compmod\system\componentmodel\DateTimeOffsetConverter.cs" />
- <Compile Include="..\referencesource\System\compmod\system\componentmodel\DebugExtendedPropertyDescriptor.cs" />
- <Compile Include="..\referencesource\System\compmod\system\componentmodel\DebugReflectEventDescriptor.cs" />
- <Compile Include="..\referencesource\System\compmod\system\componentmodel\DebugReflectPropertyDescriptor.cs" />
- <Compile Include="..\referencesource\System\compmod\system\componentmodel\DebugTypeDescriptor.cs" />
- <Compile Include="..\referencesource\System\compmod\system\componentmodel\DesignerAttribute.cs" />
- <Compile Include="..\referencesource\System\compmod\system\componentmodel\DoWorkEventArgs.cs" />
- <Compile Include="..\referencesource\System\compmod\system\componentmodel\DoWorkEventHandler.cs" />
- <Compile Include="..\referencesource\System\compmod\system\componentmodel\EnumConverter.cs" />
- <Compile Include="..\referencesource\System\compmod\system\componentmodel\FxCopSuppression.cs" />
- <Compile Include="..\referencesource\System\compmod\system\componentmodel\IComponent.cs" />
- <Compile Include="..\referencesource\System\compmod\system\componentmodel\IntSecurity.cs" />
- <Compile Include="..\referencesource\System\compmod\system\componentmodel\LicenseException.cs" />
- <Compile Include="..\referencesource\System\compmod\system\componentmodel\MemberDescriptor.cs" />
- <Compile Include="..\referencesource\System\compmod\system\componentmodel\ProgressChangedEventArgs.cs" />
- <Compile Include="..\referencesource\System\compmod\system\componentmodel\ProgressChangedEventHandler.cs" />
- <Compile Include="..\referencesource\System\compmod\system\componentmodel\ReflectPropertyDescriptor.cs" />
- <Compile Include="..\referencesource\System\compmod\system\componentmodel\ReflectTypeDescriptionProvider.cs" />
- <Compile Include="..\referencesource\System\compmod\system\componentmodel\RunWorkerCompletedEventArgs.cs" />
- <Compile Include="..\referencesource\System\compmod\system\componentmodel\RunWorkerCompletedEventHandler.cs" />
- <Compile Include="..\referencesource\System\compmod\system\componentmodel\TypeConverter.cs" />
- <Compile Include="..\referencesource\System\compmod\system\componentmodel\TypeDescriptor.cs" />
- <Compile Include="..\referencesource\System\compmod\system\componentmodel\Win32Exception.cs" />
- <Compile Include="..\referencesource\System\compmod\system\componentmodel\design\DesignerOptionService.cs" />
- <Compile Include="..\referencesource\System\compmod\system\componentmodel\design\NotifyParentPropertyAttribute.cs" />
- <Compile Include="..\referencesource\System\compmod\system\componentmodel\design\ParenthesizePropertyNameAttribute.cs" />
- <Compile Include="..\referencesource\System\compmod\system\componentmodel\design\RefreshProperties.cs" />
- <Compile Include="..\referencesource\System\compmod\system\componentmodel\design\RefreshPropertiesAttribute.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\AssertSection.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\BooleanSwitch.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\CorrelationManager.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\Debug.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\DelimitedListTraceListener.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\DiagnosticsConfiguration.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\ListenerElementsCollection.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\SeverityFilter.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\SourceFilter.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\SourceLevels.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\SourceSwitch.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\Switch.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\SwitchAttribute.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\SwitchLevelAttribute.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\TextWriterTraceListener.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\Trace.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\TraceEventCache.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\TraceEventType.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\TraceFilter.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\TraceInternal.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\TraceLevel.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\TraceListener.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\TraceListeners.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\TraceOptions.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\TraceSource.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\TraceSwitch.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\traceutils.cs" />
- <Compile Include="..\referencesource\System\misc\SecurityUtils.cs" />
- <Compile Include="..\referencesource\System\misc\WeakHashtable.cs" />
- <Compile Include="..\referencesource\System\misc\hresults.cs" />
- <Compile Include="..\referencesource\System\misc\invariantcomparer.cs" />
- <Compile Include="..\referencesource\System\net\System\GenericUriParser.cs" />
- <Compile Include="..\referencesource\System\net\System\IriHelper.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\AuthenticationScheme.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\AuthenticationSchemeSelector.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Authorization.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Cache\RequestCache.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Cache\RequestCacheEntry.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Cache\RequestCacheManager.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Cache\RequestCachePolicy.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Configuration\DefaultProxySection.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\CredentialCache.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\DnsEndPoint.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\EndPoint.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\FtpStatusCode.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\GlobalProxySelection.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\HttpListenerException.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\HttpListenerRequestUriBuilder.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\HttpRequestHeader.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\HttpResponseHeader.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\IAuthenticationModule.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\ICertificatePolicy.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\ICredentials.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\ICredentialsByHost.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\IPHostEntry.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\IWebProxyFinder.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\IWebRequestCreate.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Internal.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\NetworkAccess.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\NetworkCredential.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\NetworkInformation\DuplicateAddressDetectionState.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\NetworkInformation\GatewayIPAddressInformation.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\NetworkInformation\GatewayIPAddressInformationCollection.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\NetworkInformation\IPAddressCollection.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\NetworkInformation\IPAddressInformation.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\NetworkInformation\IPAddressInformationCollection.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\NetworkInformation\IPGlobalProperties.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\NetworkInformation\IPGlobalStatistics.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\NetworkInformation\IPInterfaceProperties.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\NetworkInformation\IPInterfaceStatistics.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\NetworkInformation\IPStatus.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\NetworkInformation\IPv4InterfaceProperties.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\NetworkInformation\IPv6InterfaceProperties.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\NetworkInformation\IcmpV4Statistics.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\NetworkInformation\IcmpV6Statistics.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\NetworkInformation\MulticastIPAddressInformation.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\NetworkInformation\MulticastIPAddressInformationCollection.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\NetworkInformation\NetworkAddressChange.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\NetworkInformation\NetworkInformationException.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\NetworkInformation\NetworkInformationPermission.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\NetworkInformation\NetworkInterface.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\NetworkInformation\NetworkInterfaceComponent.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\NetworkInformation\OperationalStatus.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\NetworkInformation\PhysicalAddress.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\NetworkInformation\PingOptions.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\NetworkInformation\PingReply.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\NetworkInformation\PrefixOrigin.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\NetworkInformation\ScopeLevel.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\NetworkInformation\SuffixOrigin.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\NetworkInformation\SystemGatewayIPAddressInformation.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\NetworkInformation\SystemIPAddressInformation.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\NetworkInformation\SystemMulticastIPAddressInformation.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\NetworkInformation\SystemTcpConnection.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\NetworkInformation\TcpConnection.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\NetworkInformation\TcpState.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\NetworkInformation\TcpStatistics.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\NetworkInformation\UdpStatistics.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\NetworkInformation\UnicastIPAddressInformation.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\NetworkInformation\UnicastIPAddressInformationCollection.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\NetworkInformation\interfacetype.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\NetworkInformation\nodetype.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\NetworkInformation\pingexception.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\ProtocolViolationException.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\SecureProtocols\AuthenticatedStream.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\SecureProtocols\NegotiateEnumTypes.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\ServicePointManager.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\SocketAddress.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\SocketException.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\AddressFamily.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\IOControlCode.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\IPPacketInformation.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\IPProtectionLevel.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\LingerOption.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\MulticastOption.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\NetworkStream.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\ProtocolFamily.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\ProtocolType.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\SelectMode.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\Socket.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\SocketErrors.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\SocketFlags.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\SocketInformation.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\SocketInformationOptions.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\SocketOptionLevel.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\SocketOptionName.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\SocketShutdown.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\SocketType.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\TransmitFileFlags.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\UdpReceiveResult.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\_MultipleConnectAsync.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\TransportContext.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\TransportType.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\UnicodeDecodingConformance.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\UnicodeEncodingConformance.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\WebException.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\WebExceptionStatus.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\WebHeaderCollection.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\WebPermission.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\WebRequest.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\WebRequestMethods.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\WebResponse.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\WebUtility.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\_BufferOffsetSize.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\_Connection.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\_HTTPDateParse.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\_HeaderInfo.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\_HeaderInfoTable.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\_IStreams.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\_LazyAsyncResult.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\_LoggingObject.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\_NetRes.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\_PooledStream.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\_ProxyChain.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\_ScatterGatherBuffers.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\_Semaphore.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\_ServiceNameStore.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\_TimerThread.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\_WebProxyDataBuilder.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\_emptywebproxy.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\connectionpool.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\cookie.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\cookiecollection.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\cookiecontainer.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\cookieexception.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\filewebrequest.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\filewebresponse.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\iwebproxy.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\webproxy.cs" />
- <Compile Include="..\referencesource\System\net\System\URI.cs" />
- <Compile Include="..\referencesource\System\net\System\URIFormatException.cs" />
- <Compile Include="..\referencesource\System\net\System\URIPartial.cs" />
- <Compile Include="..\referencesource\System\net\System\UriEnumTypes.cs" />
- <Compile Include="..\referencesource\System\net\System\UriExt.cs" />
- <Compile Include="..\referencesource\System\net\System\UriHelper.cs" />
- <Compile Include="..\referencesource\System\net\System\UriHostNameType.cs" />
- <Compile Include="..\referencesource\System\net\System\UriParserTemplates.cs" />
- <Compile Include="..\referencesource\System\net\System\UriScheme.cs" />
- <Compile Include="..\referencesource\System\net\System\_DomainName.cs" />
- <Compile Include="..\referencesource\System\net\System\_UncName.cs" />
- <Compile Include="..\referencesource\System\net\System\_UriSyntax.cs" />
- <Compile Include="..\referencesource\System\security\system\security\Authentication\ExtendedProtection\ServiceNameCollection.cs" />
- <Compile Include="..\referencesource\System\security\system\security\Authentication\ExtendedProtection\TokenBinding.cs" />
- <Compile Include="..\referencesource\System\security\system\security\permissions\typedescriptorpermission.cs" />
- <Compile Include="..\referencesource\System\services\monitoring\system\diagnosticts\AsyncStreamReader.cs" />
- <Compile Include="..\referencesource\System\services\monitoring\system\diagnosticts\Process.cs" />
- <Compile Include="..\referencesource\System\services\monitoring\system\diagnosticts\ProcessModuleCollection.cs" />
- <Compile Include="..\referencesource\System\services\monitoring\system\diagnosticts\ProcessStartInfo.cs" />
- <Compile Include="..\referencesource\System\services\monitoring\system\diagnosticts\ProcessThreadCollection.cs" />
- <Compile Include="..\referencesource\System\services\monitoring\system\diagnosticts\processwaithandle.cs" />
- <Compile Include="..\referencesource\System\services\timers\system\timers\ElapsedEventHandler.cs" />
- <Compile Include="..\referencesource\System\services\timers\system\timers\Timer.cs" />
- <Compile Include="..\referencesource\System\services\timers\system\timers\TimersDescriptionAttribute.cs" />
- <Compile Include="..\referencesource\System\sys\system\Diagnostics\CodeAnalysis\ExcludeFromCodeCoverageAttribute.cs" />
- <Compile Include="..\referencesource\System\sys\system\IO\ports\InternalResources.cs" />
- <Compile Include="..\referencesource\System\sys\system\runtime\interopservices\DefaultParameterValueAttribute.cs" />
- <Compile Include="..\referencesource\System\sys\system\runtime\interopservices\handlecollector.cs" />
- <Compile Include="..\referencesource\System\sys\system\runtime\versioning\FrameworkName.cs" />
- <Compile Include="..\referencesource\System\sys\system\threading\Barrier.cs" />
- <Compile Include="..\referencesource\System\sys\system\threading\semaphore.cs" />
- <Compile Include="..\referencesource\System\sys\system\windows\markup\ValueSerializerAttribute.cs" />
- <Compile Include="Assembly\AssemblyInfo.cs" />
- <Compile Include="Microsoft.Win32.SafeHandles\SafeX509ChainHandle.cs" />
- <Compile Include="Mono.AppleTls\INativeObject.cs" />
- <Compile Include="Mono.Btls\MonoBtlsBio.cs" />
- <Compile Include="Mono.Btls\MonoBtlsContext.cs" />
- <Compile Include="Mono.Btls\MonoBtlsError.cs" />
- <Compile Include="Mono.Btls\MonoBtlsException.cs" />
- <Compile Include="Mono.Btls\MonoBtlsKey.cs" />
- <Compile Include="Mono.Btls\MonoBtlsObject.cs" />
- <Compile Include="Mono.Btls\MonoBtlsPkcs12.cs" />
- <Compile Include="Mono.Btls\MonoBtlsProvider.cs" />
- <Compile Include="Mono.Btls\MonoBtlsSsl.cs" />
- <Compile Include="Mono.Btls\MonoBtlsSslCtx.cs" />
- <Compile Include="Mono.Btls\MonoBtlsSslError.cs" />
- <Compile Include="Mono.Btls\MonoBtlsSslRenegotiateMode.cs" />
- <Compile Include="Mono.Btls\MonoBtlsStream.cs" />
- <Compile Include="Mono.Btls\MonoBtlsUtils.cs" />
- <Compile Include="Mono.Btls\MonoBtlsX509.cs" />
- <Compile Include="Mono.Btls\MonoBtlsX509Chain.cs" />
- <Compile Include="Mono.Btls\MonoBtlsX509Crl.cs" />
- <Compile Include="Mono.Btls\MonoBtlsX509Error.cs" />
- <Compile Include="Mono.Btls\MonoBtlsX509Exception.cs" />
- <Compile Include="Mono.Btls\MonoBtlsX509FileType.cs" />
- <Compile Include="Mono.Btls\MonoBtlsX509Format.cs" />
- <Compile Include="Mono.Btls\MonoBtlsX509Lookup.cs" />
- <Compile Include="Mono.Btls\MonoBtlsX509LookupMono.cs" />
- <Compile Include="Mono.Btls\MonoBtlsX509LookupMonoCollection.cs" />
- <Compile Include="Mono.Btls\MonoBtlsX509LookupType.cs" />
- <Compile Include="Mono.Btls\MonoBtlsX509Name.cs" />
- <Compile Include="Mono.Btls\MonoBtlsX509NameEntryType.cs" />
- <Compile Include="Mono.Btls\MonoBtlsX509Purpose.cs" />
- <Compile Include="Mono.Btls\MonoBtlsX509Revoked.cs" />
- <Compile Include="Mono.Btls\MonoBtlsX509Store.cs" />
- <Compile Include="Mono.Btls\MonoBtlsX509StoreCtx.cs" />
- <Compile Include="Mono.Btls\MonoBtlsX509StoreManager.cs" />
- <Compile Include="Mono.Btls\MonoBtlsX509StoreType.cs" />
- <Compile Include="Mono.Btls\MonoBtlsX509TrustKind.cs" />
- <Compile Include="Mono.Btls\MonoBtlsX509VerifyFlags.cs" />
- <Compile Include="Mono.Btls\MonoBtlsX509VerifyParam.cs" />
- <Compile Include="Mono.Btls\X509CertificateImplBtls.cs" />
- <Compile Include="Mono.Btls\X509ChainImplBtls.cs" />
- <Compile Include="Mono.Btls\X509PalImpl.Btls.cs" />
- <Compile Include="Mono.Util\MonoPInvokeCallbackAttribute.cs" />
- <Compile Include="MonoTouch\Dummy.cs" />
- <Compile Include="Mono\AppleTypes.cs" />
- <Compile Include="Mono\SystemCertificateProvider.cs" />
- <Compile Include="Mono\SystemDependencyProvider.cs" />
- <Compile Include="Mono\X509Pal.cs" />
- <Compile Include="Mono\X509PalImpl.Mono.cs" />
- <Compile Include="Mono\X509PalImpl.cs" />
- <Compile Include="ReferenceSources\AssertWrapper.cs" />
- <Compile Include="ReferenceSources\AutoWebProxyScriptEngine.cs" />
- <Compile Include="ReferenceSources\EnvironmentHelpers.cs" />
- <Compile Include="ReferenceSources\HttpApi.cs" />
- <Compile Include="ReferenceSources\HttpSysSettings.cs" />
- <Compile Include="ReferenceSources\LocalAppContextSwitches.cs" />
- <Compile Include="ReferenceSources\Logging.cs" />
- <Compile Include="ReferenceSources\NativeMethods.cs" />
- <Compile Include="ReferenceSources\RequestCacheProtocol.cs" />
- <Compile Include="ReferenceSources\SRCategoryAttribute.cs" />
- <Compile Include="ReferenceSources\SecureStringHelper.cs" />
- <Compile Include="ReferenceSources\ServerCertValidationCallback.cs" />
- <Compile Include="ReferenceSources\SettingsSectionInternal.cs" />
- <Compile Include="ReferenceSources\Socket.cs" />
- <Compile Include="ReferenceSources\Win32Exception.cs" />
- <Compile Include="System.Diagnostics\DataReceivedEventArgs.cs" />
- <Compile Include="System.Diagnostics\DataReceivedEventHandler.cs" />
- <Compile Include="System.Diagnostics\DefaultTraceListener.cs" />
- <Compile Include="System.Diagnostics\FileVersionInfo.cs" />
- <Compile Include="System.Diagnostics\MonitoringDescriptionAttribute.cs" />
- <Compile Include="System.Diagnostics\Process.cs" />
- <Compile Include="System.Diagnostics\ProcessModule.cs" />
- <Compile Include="System.Diagnostics\ProcessPriorityClass.cs" />
- <Compile Include="System.Diagnostics\ProcessStartInfo.cs" />
- <Compile Include="System.Diagnostics\ProcessThread.cs" />
- <Compile Include="System.Diagnostics\ProcessWindowStyle.cs" />
- <Compile Include="System.Diagnostics\Stopwatch.cs" />
- <Compile Include="System.Diagnostics\ThreadPriorityLevel.cs" />
- <Compile Include="System.Diagnostics\ThreadState.cs" />
- <Compile Include="System.Diagnostics\ThreadWaitReason.cs" />
- <Compile Include="System.Diagnostics\TraceImpl.cs" />
- <Compile Include="System.IO.Compression\DeflateStream.cs" />
- <Compile Include="System.IO\ErrorEventArgs.cs" />
- <Compile Include="System.IO\ErrorEventHandler.cs" />
- <Compile Include="System.IO\FileSystemEventArgs.cs" />
- <Compile Include="System.IO\FileSystemEventHandler.cs" />
- <Compile Include="System.IO\IODescriptionAttribute.cs" />
- <Compile Include="System.IO\InternalBufferOverflowException.cs" />
- <Compile Include="System.IO\InvalidDataException.cs" />
- <Compile Include="System.IO\NotifyFilters.cs" />
- <Compile Include="System.IO\RenamedEventArgs.cs" />
- <Compile Include="System.IO\RenamedEventHandler.cs" />
- <Compile Include="System.IO\WatcherChangeTypes.cs" />
- <Compile Include="System.Net.Mail\AlternateView.cs" />
- <Compile Include="System.Net.Mail\AlternateViewCollection.cs" />
- <Compile Include="System.Net.Mail\Attachment.cs" />
- <Compile Include="System.Net.Mail\AttachmentBase.cs" />
- <Compile Include="System.Net.Mail\AttachmentCollection.cs" />
- <Compile Include="System.Net.Mail\DeliveryNotificationOptions.cs" />
- <Compile Include="System.Net.Mail\LinkedResource.cs" />
- <Compile Include="System.Net.Mail\LinkedResourceCollection.cs" />
- <Compile Include="System.Net.Mail\MailMessage.cs" />
- <Compile Include="System.Net.Mail\MailPriority.cs" />
- <Compile Include="System.Net.Mail\SendCompletedEventHandler.cs" />
- <Compile Include="System.Net.Mail\SmtpAccess.cs" />
- <Compile Include="System.Net.Mail\SmtpDeliveryFormat.cs" />
- <Compile Include="System.Net.Mail\SmtpDeliveryMethod.cs" />
- <Compile Include="System.Net.Mail\SmtpException.cs" />
- <Compile Include="System.Net.Mail\SmtpFailedRecipientException.cs" />
- <Compile Include="System.Net.Mail\SmtpFailedRecipientsException.cs" />
- <Compile Include="System.Net.Mail\SmtpStatusCode.cs" />
- <Compile Include="System.Net.NetworkInformation\IPGlobalPropertiesFactory.cs" />
- <Compile Include="System.Net.NetworkInformation\NetworkChange.cs" />
- <Compile Include="System.Net.NetworkInformation\NetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\NetworkInterfaceFactory.cs" />
- <Compile Include="System.Net.NetworkInformation\Ping.cs" />
- <Compile Include="System.Net.NetworkInformation\PingCompletedEventArgs.cs" />
- <Compile Include="System.Net.NetworkInformation\PingCompletedEventHandler.cs" />
- <Compile Include="System.Net.NetworkInformation\Win32IPAddressCollection.cs" />
- <Compile Include="System.Net.NetworkInformation\Win32IPGlobalProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\Win32IPGlobalStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\Win32IPInterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\Win32IPv4InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\Win32IPv4InterfaceStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\Win32IPv6InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\Win32IcmpV4Statistics.cs" />
- <Compile Include="System.Net.NetworkInformation\Win32IcmpV6Statistics.cs" />
- <Compile Include="System.Net.NetworkInformation\Win32NetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\Win32NetworkInterfaceFactory.cs" />
- <Compile Include="System.Net.NetworkInformation\Win32NetworkInterfaceMarshal.cs" />
- <Compile Include="System.Net.NetworkInformation\Win32TcpStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\Win32UdpStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\Win32UnicastIPAddressInformation.cs" />
- <Compile Include="System.Net.Security\EncryptionPolicy.cs" />
- <Compile Include="System.Net.Security\LocalCertificateSelectionCallback.cs" />
- <Compile Include="System.Net.Security\NegotiateStream.cs" />
- <Compile Include="System.Net.Security\RemoteCertificateValidationCallback.cs" />
- <Compile Include="System.Net.Security\SslPolicyErrors.cs" />
- <Compile Include="System.Net.Sockets\SafeSocketHandle.cs" />
- <Compile Include="System.Net.Sockets\Socket.cs" />
- <Compile Include="System.Net.Sockets\SocketAsyncEventArgs.cs" />
- <Compile Include="System.Net.Sockets\SocketAsyncResult.cs" />
- <Compile Include="System.Net.Sockets\SocketOperation.cs" />
- <Compile Include="System.Net.Sockets\SocketReceiveFromResult.cs" />
- <Compile Include="System.Net.Sockets\SocketReceiveMessageFromResult.cs" />
- <Compile Include="System.Net.Sockets\SocketTaskExtensions.cs" />
- <Compile Include="System.Net\BasicClient.cs" />
- <Compile Include="System.Net\BindIPEndPoint.cs" />
- <Compile Include="System.Net\DecompressionMethods.cs" />
- <Compile Include="System.Net\DefaultCertificatePolicy.cs" />
- <Compile Include="System.Net\DigestClient.cs" />
- <Compile Include="System.Net\Dns.cs" />
- <Compile Include="System.Net\EndpointPermission.cs" />
- <Compile Include="System.Net\HttpRequestCreator.cs" />
- <Compile Include="System.Net\HttpStreamAsyncResult.cs" />
- <Compile Include="System.Net\ICredentialPolicy.cs" />
- <Compile Include="System.Net\IPv6Address.cs" />
- <Compile Include="System.Net\IWebProxyScript.cs" />
- <Compile Include="System.Net\ListenerPrefix.cs" />
- <Compile Include="System.Net\MonoChunkParser.cs" />
- <Compile Include="System.Net\MonoHttpDate.cs" />
- <Compile Include="System.Net\NetConfig.cs" />
- <Compile Include="System.Net\RequestStream.cs" />
- <Compile Include="System.Net\SocketPermission.cs" />
- <Compile Include="System.Net\SocketPermissionAttribute.cs" />
- <Compile Include="System.Runtime.InteropServices.ComTypes\ADVF.cs" />
- <Compile Include="System.Runtime.InteropServices.ComTypes\DATADIR.cs" />
- <Compile Include="System.Runtime.InteropServices.ComTypes\DVASPECT.cs" />
- <Compile Include="System.Runtime.InteropServices.ComTypes\FORMATETC.cs" />
- <Compile Include="System.Runtime.InteropServices.ComTypes\IAdviseSink.cs" />
- <Compile Include="System.Runtime.InteropServices.ComTypes\IDataObject.cs" />
- <Compile Include="System.Runtime.InteropServices.ComTypes\IEnumFORMATETC.cs" />
- <Compile Include="System.Runtime.InteropServices.ComTypes\IEnumSTATDATA.cs" />
- <Compile Include="System.Runtime.InteropServices.ComTypes\STATDATA.cs" />
- <Compile Include="System.Runtime.InteropServices.ComTypes\STGMEDIUM.cs" />
- <Compile Include="System.Runtime.InteropServices.ComTypes\TYMED.cs" />
- <Compile Include="System.Security.AccessControl\SemaphoreAccessRule.cs" />
- <Compile Include="System.Security.AccessControl\SemaphoreAuditRule.cs" />
- <Compile Include="System.Security.AccessControl\SemaphoreRights.cs" />
- <Compile Include="System.Security.AccessControl\SemaphoreSecurity.cs" />
- <Compile Include="System.Security.Authentication.ExtendedProtection.Configuration\ConfigUtil.cs" />
- <Compile Include="System.Security.Authentication.ExtendedProtection.Configuration\ExtendedProtectionPolicyElement.cs" />
- <Compile Include="System.Security.Authentication.ExtendedProtection.Configuration\ServiceNameElement.cs" />
- <Compile Include="System.Security.Authentication.ExtendedProtection.Configuration\ServiceNameElementCollection.cs" />
- <Compile Include="System.Security.Authentication.ExtendedProtection\ChannelBinding.cs" />
- <Compile Include="System.Security.Authentication.ExtendedProtection\ChannelBindingKind.cs" />
- <Compile Include="System.Security.Authentication.ExtendedProtection\ExtendedProtectionPolicy.cs" />
- <Compile Include="System.Security.Authentication.ExtendedProtection\ExtendedProtectionPolicyTypeConverter.cs" />
- <Compile Include="System.Security.Authentication.ExtendedProtection\PolicyEnforcement.cs" />
- <Compile Include="System.Security.Authentication.ExtendedProtection\ProtectionScenario.cs" />
- <Compile Include="System.Security.Authentication\AuthenticationException.cs" />
- <Compile Include="System.Security.Authentication\CipherAlgorithmType.cs" />
- <Compile Include="System.Security.Authentication\ExchangeAlgorithmType.cs" />
- <Compile Include="System.Security.Authentication\HashAlgorithmType.cs" />
- <Compile Include="System.Security.Authentication\InvalidCredentialException.cs" />
- <Compile Include="System.Security.Authentication\SslProtocols.cs" />
- <Compile Include="System.Security.Cryptography.X509Certificates\PublicKey.cs" />
- <Compile Include="System.Security.Cryptography.X509Certificates\X500DistinguishedName.cs" />
- <Compile Include="System.Security.Cryptography.X509Certificates\X509BasicConstraintsExtension.cs" />
- <Compile Include="System.Security.Cryptography.X509Certificates\X509Certificate2.cs" />
- <Compile Include="System.Security.Cryptography.X509Certificates\X509Certificate2Collection.cs" />
- <Compile Include="System.Security.Cryptography.X509Certificates\X509Certificate2Enumerator.cs" />
- <Compile Include="System.Security.Cryptography.X509Certificates\X509Certificate2Impl.cs" />
- <Compile Include="System.Security.Cryptography.X509Certificates\X509Certificate2ImplMono.cs" />
- <Compile Include="System.Security.Cryptography.X509Certificates\X509Certificate2ImplUnix.cs" />
- <Compile Include="System.Security.Cryptography.X509Certificates\X509CertificateCollection.cs" />
- <Compile Include="System.Security.Cryptography.X509Certificates\X509CertificateImplCollection.cs" />
- <Compile Include="System.Security.Cryptography.X509Certificates\X509Chain.cs" />
- <Compile Include="System.Security.Cryptography.X509Certificates\X509ChainElement.cs" />
- <Compile Include="System.Security.Cryptography.X509Certificates\X509ChainElementCollection.cs" />
- <Compile Include="System.Security.Cryptography.X509Certificates\X509ChainElementEnumerator.cs" />
- <Compile Include="System.Security.Cryptography.X509Certificates\X509ChainImpl.cs" />
- <Compile Include="System.Security.Cryptography.X509Certificates\X509ChainImplMono.cs" />
- <Compile Include="System.Security.Cryptography.X509Certificates\X509ChainPolicy.cs" />
- <Compile Include="System.Security.Cryptography.X509Certificates\X509ChainStatus.cs" />
- <Compile Include="System.Security.Cryptography.X509Certificates\X509EnhancedKeyUsageExtension.cs" />
- <Compile Include="System.Security.Cryptography.X509Certificates\X509Extension.cs" />
- <Compile Include="System.Security.Cryptography.X509Certificates\X509ExtensionCollection.cs" />
- <Compile Include="System.Security.Cryptography.X509Certificates\X509ExtensionEnumerator.cs" />
- <Compile Include="System.Security.Cryptography.X509Certificates\X509Helper2.cs" />
- <Compile Include="System.Security.Cryptography.X509Certificates\X509KeyUsageExtension.cs" />
- <Compile Include="System.Security.Cryptography.X509Certificates\X509Store.cs" />
- <Compile Include="System.Security.Cryptography.X509Certificates\X509SubjectKeyIdentifierExtension.cs" />
- <Compile Include="System.Security.Cryptography\AsnEncodedData.cs" />
- <Compile Include="System.Threading\ThreadExceptionEventArgs.cs" />
- <Compile Include="System.Threading\ThreadExceptionEventHandler.cs" />
- <Compile Include="System.Timers\ElapsedEventArgs.cs" />
- <Compile Include="System.Windows.Input\ICommand.cs" />
- <Compile Include="System\IOSelector.cs" />
- <Compile Include="System\Platform.cs" />
- <Compile Include="System\SRDescriptionAttribute.cs" />
- <Compile Include="System\UriTypeConverter.cs" />
- <Compile Include="corefx\NameValueCollection.cs" />
- <Compile Include="corefx\StringDictionary.cs" />
- <Compile Include="corefx\ZLibNative.cs" />
- <Compile Include="corefx\tmp\IPAddressParser.cs" />
- <Compile Include="corefx\tmp\IPv6AddressHelper.Common.cs" />
- </ItemGroup>
- <!--End of common files-->
- <!--Per-profile files-->
- <Choose>
- <When Condition="'$(Platform)' == 'xammac'">
- <ItemGroup>
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\Interop.Errors.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\Interop.IOErrors.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\Interop.Libraries.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Net.Security.Native\Interop.GssApiException.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Net.Security.Native\Interop.GssBuffer.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Net.Security.Native\Interop.NetSecurityNative.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Microsoft\Win32\SafeHandles\GssSafeHandles.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\ContextAwareResult.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\ContextAwareResult.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\ContextFlagsAdapterPal.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\HttpValidationHelpers.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\CertificateHelper.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\NegotiateStreamPal.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\SslClientAuthenticationOptionsExtensions.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeDeleteContext.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeDeleteNegoContext.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeFreeCredentials.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeFreeNegoCredentials.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\TlsStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.IO.FileSystem.Watcher\src\System\IO\FileSystemWatcher.UnknownUnix.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.HttpListener\src\System\Net\WebSockets\HttpListenerWebSocketContext.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\CommandStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpControlStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpDataStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpWebRequest.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpWebResponse.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\NetworkStreamWrapper.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslApplicationProtocol.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslAuthenticationOptions.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslClientAuthenticationOptions.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslServerAuthenticationOptions.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\CompiledRegexRunner.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\CompiledRegexRunnerFactory.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\RegexCompiler.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\RegexLWCGCompiler.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\TCPClient.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\TCPListener.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\UDPClient.cs" />
- <Compile Include="Internal.Cryptography\OidLookup.Managed.cs" />
- <Compile Include="Mono.AppleTls\AppleCertificateHelper.cs" />
- <Compile Include="Mono.AppleTls\AppleTlsContext.cs" />
- <Compile Include="Mono.AppleTls\AppleTlsProvider.cs" />
- <Compile Include="Mono.AppleTls\AppleTlsStream.cs" />
- <Compile Include="Mono.AppleTls\Enums.cs" />
- <Compile Include="Mono.AppleTls\MonoCertificatePal.Mobile.cs" />
- <Compile Include="Mono.AppleTls\MonoCertificatePal.cs" />
- <Compile Include="Mono.AppleTls\Policy.cs" />
- <Compile Include="Mono.AppleTls\SafeHandles.Mono.cs" />
- <Compile Include="Mono.AppleTls\SafeHandles.cs" />
- <Compile Include="Mono.AppleTls\SecureTransport.cs" />
- <Compile Include="Mono.AppleTls\SslConnection.cs" />
- <Compile Include="Mono.AppleTls\Trust.cs" />
- <Compile Include="Mono.AppleTls\X509CertificateImplApple.cs" />
- <Compile Include="Mono.AppleTls\X509PalImpl.Apple.cs" />
- <Compile Include="Mono.Http\NtlmClient.cs" />
- <Compile Include="Mono.Net.Security\AsyncProtocolRequest.cs" />
- <Compile Include="Mono.Net.Security\CallbackHelpers.cs" />
- <Compile Include="Mono.Net.Security\ChainValidationHelper.cs" />
- <Compile Include="Mono.Net.Security\LegacySslStream.cs" />
- <Compile Include="Mono.Net.Security\LegacyTlsProvider.cs" />
- <Compile Include="Mono.Net.Security\MobileAuthenticatedStream.cs" />
- <Compile Include="Mono.Net.Security\MobileTlsContext.cs" />
- <Compile Include="Mono.Net.Security\MonoSslAuthenticationOptions.cs" />
- <Compile Include="Mono.Net.Security\MonoSslClientAuthenticationOptions.cs" />
- <Compile Include="Mono.Net.Security\MonoSslServerAuthenticationOptions.cs" />
- <Compile Include="Mono.Net.Security\MonoTlsProviderFactory.cs" />
- <Compile Include="Mono.Net.Security\MonoTlsStream.cs" />
- <Compile Include="Mono.Net.Security\NoReflectionHelper.cs" />
- <Compile Include="Mono.Net.Security\SystemCertificateValidator.cs" />
- <Compile Include="System.Net.Mail\SmtpClient.cs" />
- <Compile Include="System.Net.NetworkInformation\AixIPInterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\AixIPv4InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\AixIPv4InterfaceStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\AixNetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\AixNetworkInterfaceMarshal.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxIPInterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxIPv4InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxIPv4InterfaceStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxNetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxNetworkInterfaceMarshal.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxUnicastIPAddressInformation.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsIPInterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsIPv4InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsIPv4InterfaceStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsNetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsNetworkInterfaceMarshal.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIPGlobalProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIPGlobalStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIPInterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIPv4InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIcmpV4Statistics.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIcmpV6Statistics.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixNetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixNetworkInterfaceFactory.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixTcpStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixUdpStatistics.cs" />
- <Compile Include="System.Net.Security\SslStream.cs" />
- <Compile Include="System.Net\AuthenticationManager.cs" />
- <Compile Include="System.Net\BufferedReadStream.cs" />
- <Compile Include="System.Net\ChunkedInputStream.cs" />
- <Compile Include="System.Net\ContentDecodeStream.cs" />
- <Compile Include="System.Net\EndPointListener.cs" />
- <Compile Include="System.Net\EndPointManager.cs" />
- <Compile Include="System.Net\FixedSizeReadStream.cs" />
- <Compile Include="System.Net\HttpConnection.cs" />
- <Compile Include="System.Net\HttpListener.Mono.cs" />
- <Compile Include="System.Net\HttpListener.cs" />
- <Compile Include="System.Net\HttpListenerBasicIdentity.cs" />
- <Compile Include="System.Net\HttpListenerContext.cs" />
- <Compile Include="System.Net\HttpListenerPrefixCollection.cs" />
- <Compile Include="System.Net\HttpListenerRequest.cs" />
- <Compile Include="System.Net\HttpListenerResponse.cs" />
- <Compile Include="System.Net\HttpListenerTimeoutManager.cs" />
- <Compile Include="System.Net\HttpWebRequest.cs" />
- <Compile Include="System.Net\HttpWebResponse.cs" />
- <Compile Include="System.Net\ListenerAsyncResult.cs" />
- <Compile Include="System.Net\MacProxy.cs" />
- <Compile Include="System.Net\MonoChunkStream.cs" />
- <Compile Include="System.Net\NtlmClient.cs" />
- <Compile Include="System.Net\ResponseStream.cs" />
- <Compile Include="System.Net\ServicePoint.cs" />
- <Compile Include="System.Net\ServicePointManager.cs" />
- <Compile Include="System.Net\ServicePointManager.extra.cs" />
- <Compile Include="System.Net\ServicePointScheduler.cs" />
- <Compile Include="System.Net\WebCompletionSource.cs" />
- <Compile Include="System.Net\WebConnection.cs" />
- <Compile Include="System.Net\WebConnectionStream.cs" />
- <Compile Include="System.Net\WebConnectionTunnel.cs" />
- <Compile Include="System.Net\WebOperation.cs" />
- <Compile Include="System.Net\WebReadStream.cs" />
- <Compile Include="System.Net\WebRequestStream.cs" />
- <Compile Include="System.Net\WebResponseStream.cs" />
- <Compile Include="System.Security.Cryptography.X509Certificates\OSX509Certificates.cs" />
- <Compile Include="corefx\Unix\Interop.Read.cs" />
- <Compile Include="corefx\Unix\Interop.cs" />
- </ItemGroup>
- </When>
- <When Condition="'$(Platform)' == 'winaot'">
- <ItemGroup>
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\Interop.Errors.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\Interop.IOErrors.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\Interop.Libraries.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Net.Security.Native\Interop.GssApiException.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Net.Security.Native\Interop.GssBuffer.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Net.Security.Native\Interop.NetSecurityNative.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Microsoft\Win32\SafeHandles\GssSafeHandles.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\ContextAwareResult.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\ContextAwareResult.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\ContextFlagsAdapterPal.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\HttpValidationHelpers.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\CertificateHelper.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\NegotiateStreamPal.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\SslClientAuthenticationOptionsExtensions.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeDeleteContext.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeDeleteNegoContext.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeFreeCredentials.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeFreeNegoCredentials.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\TlsStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.IO.FileSystem.Watcher\src\System\IO\FileSystemWatcher.UnknownUnix.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.HttpListener\src\System\Net\WebSockets\HttpListenerWebSocketContext.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\CommandStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpControlStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpDataStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpWebRequest.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpWebResponse.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\NetworkStreamWrapper.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslApplicationProtocol.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslAuthenticationOptions.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslClientAuthenticationOptions.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslServerAuthenticationOptions.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\TCPClient.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\TCPListener.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\UDPClient.cs" />
- <Compile Include="Internal.Cryptography\OidLookup.Managed.cs" />
- <Compile Include="Mono.Http\NtlmClient.cs" />
- <Compile Include="Mono.Net.Security\AsyncProtocolRequest.cs" />
- <Compile Include="Mono.Net.Security\CallbackHelpers.cs" />
- <Compile Include="Mono.Net.Security\ChainValidationHelper.cs" />
- <Compile Include="Mono.Net.Security\LegacySslStream.cs" />
- <Compile Include="Mono.Net.Security\LegacyTlsProvider.cs" />
- <Compile Include="Mono.Net.Security\MobileAuthenticatedStream.cs" />
- <Compile Include="Mono.Net.Security\MobileTlsContext.cs" />
- <Compile Include="Mono.Net.Security\MonoSslAuthenticationOptions.cs" />
- <Compile Include="Mono.Net.Security\MonoSslClientAuthenticationOptions.cs" />
- <Compile Include="Mono.Net.Security\MonoSslServerAuthenticationOptions.cs" />
- <Compile Include="Mono.Net.Security\MonoTlsProviderFactory.cs" />
- <Compile Include="Mono.Net.Security\MonoTlsStream.cs" />
- <Compile Include="Mono.Net.Security\NoReflectionHelper.cs" />
- <Compile Include="Mono.Net.Security\SystemCertificateValidator.cs" />
- <Compile Include="System.Net.Mail\SmtpClient.cs" />
- <Compile Include="System.Net.NetworkInformation\Win32UnixFactoryPal.cs" />
- <Compile Include="System.Net.Security\SslStream.cs" />
- <Compile Include="System.Net\AuthenticationManager.cs" />
- <Compile Include="System.Net\BufferedReadStream.cs" />
- <Compile Include="System.Net\ChunkedInputStream.cs" />
- <Compile Include="System.Net\ContentDecodeStream.cs" />
- <Compile Include="System.Net\EndPointListener.cs" />
- <Compile Include="System.Net\EndPointManager.cs" />
- <Compile Include="System.Net\FixedSizeReadStream.cs" />
- <Compile Include="System.Net\HttpConnection.cs" />
- <Compile Include="System.Net\HttpListener.Mono.cs" />
- <Compile Include="System.Net\HttpListener.cs" />
- <Compile Include="System.Net\HttpListenerBasicIdentity.cs" />
- <Compile Include="System.Net\HttpListenerContext.cs" />
- <Compile Include="System.Net\HttpListenerPrefixCollection.cs" />
- <Compile Include="System.Net\HttpListenerRequest.cs" />
- <Compile Include="System.Net\HttpListenerResponse.cs" />
- <Compile Include="System.Net\HttpListenerTimeoutManager.cs" />
- <Compile Include="System.Net\HttpWebRequest.cs" />
- <Compile Include="System.Net\HttpWebResponse.cs" />
- <Compile Include="System.Net\ListenerAsyncResult.cs" />
- <Compile Include="System.Net\MacProxy.cs" />
- <Compile Include="System.Net\MonoChunkStream.cs" />
- <Compile Include="System.Net\NtlmClient.cs" />
- <Compile Include="System.Net\ResponseStream.cs" />
- <Compile Include="System.Net\ServicePoint.cs" />
- <Compile Include="System.Net\ServicePointManager.cs" />
- <Compile Include="System.Net\ServicePointManager.extra.cs" />
- <Compile Include="System.Net\ServicePointScheduler.cs" />
- <Compile Include="System.Net\WebCompletionSource.cs" />
- <Compile Include="System.Net\WebConnection.cs" />
- <Compile Include="System.Net\WebConnectionStream.cs" />
- <Compile Include="System.Net\WebConnectionTunnel.cs" />
- <Compile Include="System.Net\WebOperation.cs" />
- <Compile Include="System.Net\WebReadStream.cs" />
- <Compile Include="System.Net\WebRequestStream.cs" />
- <Compile Include="System.Net\WebResponseStream.cs" />
- <Compile Include="System.Security.Cryptography.X509Certificates\OSX509Certificates.cs" />
- <Compile Include="corefx\Unix\Interop.Read.cs" />
- <Compile Include="corefx\Unix\Interop.cs" />
- </ItemGroup>
- </When>
- <When Condition="'$(Platform)' == 'wasm'">
- <ItemGroup>
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\Interop.Errors.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\Interop.IOErrors.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\Interop.Libraries.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Net.Security.Native\Interop.GssApiException.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Net.Security.Native\Interop.GssBuffer.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Net.Security.Native\Interop.NetSecurityNative.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Microsoft\Win32\SafeHandles\GssSafeHandles.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\ContextAwareResult.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\ContextAwareResult.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\ContextFlagsAdapterPal.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\HttpValidationHelpers.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\CertificateHelper.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\NegotiateStreamPal.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\SslClientAuthenticationOptionsExtensions.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeDeleteContext.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeDeleteNegoContext.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeFreeCredentials.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeFreeNegoCredentials.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\TlsStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.IO.FileSystem.Watcher\src\System\IO\FileSystemWatcher.UnknownUnix.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.HttpListener\src\System\Net\WebSockets\HttpListenerWebSocketContext.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\CommandStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpControlStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpDataStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpWebRequest.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpWebResponse.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\NetworkStreamWrapper.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslApplicationProtocol.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslAuthenticationOptions.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslClientAuthenticationOptions.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslServerAuthenticationOptions.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\TCPClient.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\TCPListener.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\UDPClient.cs" />
- <Compile Include="Internal.Cryptography\OidLookup.Managed.cs" />
- <Compile Include="Mono.Http\NtlmClient.cs" />
- <Compile Include="Mono.Net.Security\AsyncProtocolRequest.cs" />
- <Compile Include="Mono.Net.Security\CallbackHelpers.cs" />
- <Compile Include="Mono.Net.Security\ChainValidationHelper.cs" />
- <Compile Include="Mono.Net.Security\LegacySslStream.cs" />
- <Compile Include="Mono.Net.Security\LegacyTlsProvider.cs" />
- <Compile Include="Mono.Net.Security\MobileAuthenticatedStream.cs" />
- <Compile Include="Mono.Net.Security\MobileTlsContext.cs" />
- <Compile Include="Mono.Net.Security\MonoSslAuthenticationOptions.cs" />
- <Compile Include="Mono.Net.Security\MonoSslClientAuthenticationOptions.cs" />
- <Compile Include="Mono.Net.Security\MonoSslServerAuthenticationOptions.cs" />
- <Compile Include="Mono.Net.Security\MonoTlsProviderFactory.cs" />
- <Compile Include="Mono.Net.Security\MonoTlsStream.cs" />
- <Compile Include="Mono.Net.Security\NoReflectionHelper.cs" />
- <Compile Include="Mono.Net.Security\SystemCertificateValidator.cs" />
- <Compile Include="System.Net.Mail\SmtpClient.cs" />
- <Compile Include="System.Net.NetworkInformation\AixIPInterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\AixIPv4InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\AixIPv4InterfaceStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\AixNetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\AixNetworkInterfaceMarshal.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxIPInterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxIPv4InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxIPv4InterfaceStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxNetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxNetworkInterfaceMarshal.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxUnicastIPAddressInformation.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsIPInterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsIPv4InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsIPv4InterfaceStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsNetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsNetworkInterfaceMarshal.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIPGlobalProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIPGlobalStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIPInterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIPv4InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIcmpV4Statistics.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIcmpV6Statistics.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixNetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixNetworkInterfaceFactory.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixTcpStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixUdpStatistics.cs" />
- <Compile Include="System.Net.Security\SslStream.cs" />
- <Compile Include="System.Net\AuthenticationManager.cs" />
- <Compile Include="System.Net\BufferedReadStream.cs" />
- <Compile Include="System.Net\ChunkedInputStream.cs" />
- <Compile Include="System.Net\ContentDecodeStream.cs" />
- <Compile Include="System.Net\EndPointListener.cs" />
- <Compile Include="System.Net\EndPointManager.cs" />
- <Compile Include="System.Net\FixedSizeReadStream.cs" />
- <Compile Include="System.Net\HttpConnection.cs" />
- <Compile Include="System.Net\HttpListener.Mono.cs" />
- <Compile Include="System.Net\HttpListener.cs" />
- <Compile Include="System.Net\HttpListenerBasicIdentity.cs" />
- <Compile Include="System.Net\HttpListenerContext.cs" />
- <Compile Include="System.Net\HttpListenerPrefixCollection.cs" />
- <Compile Include="System.Net\HttpListenerRequest.cs" />
- <Compile Include="System.Net\HttpListenerResponse.cs" />
- <Compile Include="System.Net\HttpListenerTimeoutManager.cs" />
- <Compile Include="System.Net\HttpWebRequest.cs" />
- <Compile Include="System.Net\HttpWebResponse.cs" />
- <Compile Include="System.Net\ListenerAsyncResult.cs" />
- <Compile Include="System.Net\MacProxy.cs" />
- <Compile Include="System.Net\MonoChunkStream.cs" />
- <Compile Include="System.Net\NtlmClient.cs" />
- <Compile Include="System.Net\ResponseStream.cs" />
- <Compile Include="System.Net\ServicePoint.cs" />
- <Compile Include="System.Net\ServicePointManager.cs" />
- <Compile Include="System.Net\ServicePointManager.extra.cs" />
- <Compile Include="System.Net\ServicePointScheduler.cs" />
- <Compile Include="System.Net\WebCompletionSource.cs" />
- <Compile Include="System.Net\WebConnection.cs" />
- <Compile Include="System.Net\WebConnectionStream.cs" />
- <Compile Include="System.Net\WebConnectionTunnel.cs" />
- <Compile Include="System.Net\WebOperation.cs" />
- <Compile Include="System.Net\WebReadStream.cs" />
- <Compile Include="System.Net\WebRequestStream.cs" />
- <Compile Include="System.Net\WebResponseStream.cs" />
- <Compile Include="System.Security.Cryptography.X509Certificates\OSX509Certificates.cs" />
- <Compile Include="corefx\Unix\Interop.Read.cs" />
- <Compile Include="corefx\Unix\Interop.cs" />
- </ItemGroup>
- </When>
- <When Condition="'$(Platform)' == 'unreal'">
- <ItemGroup>
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\Interop.Errors.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\Interop.IOErrors.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\Interop.Libraries.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Net.Security.Native\Interop.GssApiException.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Net.Security.Native\Interop.GssBuffer.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Net.Security.Native\Interop.NetSecurityNative.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Microsoft\Win32\SafeHandles\GssSafeHandles.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\ContextAwareResult.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\ContextAwareResult.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\ContextFlagsAdapterPal.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\HttpValidationHelpers.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\CertificateHelper.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\NegotiateStreamPal.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\SslClientAuthenticationOptionsExtensions.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeDeleteContext.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeDeleteNegoContext.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeFreeCredentials.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeFreeNegoCredentials.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\TlsStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.IO.FileSystem.Watcher\src\System\IO\FileSystemWatcher.UnknownUnix.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.HttpListener\src\System\Net\WebSockets\HttpListenerWebSocketContext.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\CommandStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpControlStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpDataStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpWebRequest.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpWebResponse.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\NetworkStreamWrapper.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslApplicationProtocol.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslAuthenticationOptions.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslClientAuthenticationOptions.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslServerAuthenticationOptions.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\CompiledRegexRunner.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\CompiledRegexRunnerFactory.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\RegexCompiler.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\RegexLWCGCompiler.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\TCPClient.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\TCPListener.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\UDPClient.cs" />
- <Compile Include="Internal.Cryptography\OidLookup.Managed.cs" />
- <Compile Include="Mono.Http\NtlmClient.cs" />
- <Compile Include="Mono.Net.Security\AsyncProtocolRequest.cs" />
- <Compile Include="Mono.Net.Security\CallbackHelpers.cs" />
- <Compile Include="Mono.Net.Security\ChainValidationHelper.cs" />
- <Compile Include="Mono.Net.Security\LegacySslStream.cs" />
- <Compile Include="Mono.Net.Security\LegacyTlsProvider.cs" />
- <Compile Include="Mono.Net.Security\MobileAuthenticatedStream.cs" />
- <Compile Include="Mono.Net.Security\MobileTlsContext.cs" />
- <Compile Include="Mono.Net.Security\MonoSslAuthenticationOptions.cs" />
- <Compile Include="Mono.Net.Security\MonoSslClientAuthenticationOptions.cs" />
- <Compile Include="Mono.Net.Security\MonoSslServerAuthenticationOptions.cs" />
- <Compile Include="Mono.Net.Security\MonoTlsProviderFactory.cs" />
- <Compile Include="Mono.Net.Security\MonoTlsStream.cs" />
- <Compile Include="Mono.Net.Security\NoReflectionHelper.cs" />
- <Compile Include="Mono.Net.Security\SystemCertificateValidator.cs" />
- <Compile Include="System.Net.Mail\SmtpClient.cs" />
- <Compile Include="System.Net.NetworkInformation\AixIPInterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\AixIPv4InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\AixIPv4InterfaceStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\AixNetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\AixNetworkInterfaceMarshal.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxIPInterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxIPv4InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxIPv4InterfaceStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxNetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxNetworkInterfaceMarshal.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxUnicastIPAddressInformation.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsIPInterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsIPv4InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsIPv4InterfaceStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsNetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsNetworkInterfaceMarshal.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIPGlobalProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIPGlobalStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIPInterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIPv4InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIcmpV4Statistics.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIcmpV6Statistics.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixNetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixNetworkInterfaceFactory.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixTcpStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixUdpStatistics.cs" />
- <Compile Include="System.Net.Security\SslStream.cs" />
- <Compile Include="System.Net\AuthenticationManager.cs" />
- <Compile Include="System.Net\BufferedReadStream.cs" />
- <Compile Include="System.Net\ChunkedInputStream.cs" />
- <Compile Include="System.Net\ContentDecodeStream.cs" />
- <Compile Include="System.Net\EndPointListener.cs" />
- <Compile Include="System.Net\EndPointManager.cs" />
- <Compile Include="System.Net\FixedSizeReadStream.cs" />
- <Compile Include="System.Net\HttpConnection.cs" />
- <Compile Include="System.Net\HttpListener.Mono.cs" />
- <Compile Include="System.Net\HttpListener.cs" />
- <Compile Include="System.Net\HttpListenerBasicIdentity.cs" />
- <Compile Include="System.Net\HttpListenerContext.cs" />
- <Compile Include="System.Net\HttpListenerPrefixCollection.cs" />
- <Compile Include="System.Net\HttpListenerRequest.cs" />
- <Compile Include="System.Net\HttpListenerResponse.cs" />
- <Compile Include="System.Net\HttpListenerTimeoutManager.cs" />
- <Compile Include="System.Net\HttpWebRequest.cs" />
- <Compile Include="System.Net\HttpWebResponse.cs" />
- <Compile Include="System.Net\ListenerAsyncResult.cs" />
- <Compile Include="System.Net\MacProxy.cs" />
- <Compile Include="System.Net\MonoChunkStream.cs" />
- <Compile Include="System.Net\NtlmClient.cs" />
- <Compile Include="System.Net\ResponseStream.cs" />
- <Compile Include="System.Net\ServicePoint.cs" />
- <Compile Include="System.Net\ServicePointManager.cs" />
- <Compile Include="System.Net\ServicePointManager.extra.cs" />
- <Compile Include="System.Net\ServicePointScheduler.cs" />
- <Compile Include="System.Net\WebCompletionSource.cs" />
- <Compile Include="System.Net\WebConnection.cs" />
- <Compile Include="System.Net\WebConnectionStream.cs" />
- <Compile Include="System.Net\WebConnectionTunnel.cs" />
- <Compile Include="System.Net\WebOperation.cs" />
- <Compile Include="System.Net\WebReadStream.cs" />
- <Compile Include="System.Net\WebRequestStream.cs" />
- <Compile Include="System.Net\WebResponseStream.cs" />
- <Compile Include="System.Security.Cryptography.X509Certificates\OSX509Certificates.cs" />
- <Compile Include="corefx\Unix\Interop.Read.cs" />
- <Compile Include="corefx\Unix\Interop.cs" />
- </ItemGroup>
- </When>
- <When Condition="'$(Platform)' == 'orbis'">
- <ItemGroup>
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\Interop.Errors.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\Interop.IOErrors.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\Interop.Libraries.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Net.Security.Native\Interop.GssApiException.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Net.Security.Native\Interop.GssBuffer.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Net.Security.Native\Interop.NetSecurityNative.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Microsoft\Win32\SafeHandles\GssSafeHandles.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\ContextAwareResult.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\ContextAwareResult.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\ContextFlagsAdapterPal.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\HttpValidationHelpers.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\CertificateHelper.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\NegotiateStreamPal.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\SslClientAuthenticationOptionsExtensions.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeDeleteContext.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeDeleteNegoContext.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeFreeCredentials.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeFreeNegoCredentials.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\TlsStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.IO.FileSystem.Watcher\src\System\IO\FileSystemWatcher.UnknownUnix.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.HttpListener\src\System\Net\WebSockets\HttpListenerWebSocketContext.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\CommandStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpControlStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpDataStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpWebRequest.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpWebResponse.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\NetworkStreamWrapper.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslApplicationProtocol.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslAuthenticationOptions.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslClientAuthenticationOptions.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslServerAuthenticationOptions.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\TCPClient.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\TCPListener.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\UDPClient.cs" />
- <Compile Include="Internal.Cryptography\OidLookup.Managed.cs" />
- <Compile Include="Mono.Http\NtlmClient.cs" />
- <Compile Include="Mono.Net.Security\AsyncProtocolRequest.cs" />
- <Compile Include="Mono.Net.Security\CallbackHelpers.cs" />
- <Compile Include="Mono.Net.Security\ChainValidationHelper.cs" />
- <Compile Include="Mono.Net.Security\LegacySslStream.cs" />
- <Compile Include="Mono.Net.Security\LegacyTlsProvider.cs" />
- <Compile Include="Mono.Net.Security\MobileAuthenticatedStream.cs" />
- <Compile Include="Mono.Net.Security\MobileTlsContext.cs" />
- <Compile Include="Mono.Net.Security\MonoSslAuthenticationOptions.cs" />
- <Compile Include="Mono.Net.Security\MonoSslClientAuthenticationOptions.cs" />
- <Compile Include="Mono.Net.Security\MonoSslServerAuthenticationOptions.cs" />
- <Compile Include="Mono.Net.Security\MonoTlsProviderFactory.cs" />
- <Compile Include="Mono.Net.Security\MonoTlsStream.cs" />
- <Compile Include="Mono.Net.Security\NoReflectionHelper.cs" />
- <Compile Include="Mono.Net.Security\SystemCertificateValidator.cs" />
- <Compile Include="System.Net.Mail\SmtpClient.cs" />
- <Compile Include="System.Net.NetworkInformation\AixIPInterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\AixIPv4InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\AixIPv4InterfaceStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\AixNetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\AixNetworkInterfaceMarshal.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxIPInterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxIPv4InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxIPv4InterfaceStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxNetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxNetworkInterfaceMarshal.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxUnicastIPAddressInformation.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsIPInterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsIPv4InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsIPv4InterfaceStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsNetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsNetworkInterfaceMarshal.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIPGlobalProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIPGlobalStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIPInterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIPv4InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIcmpV4Statistics.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIcmpV6Statistics.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixNetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixNetworkInterfaceFactory.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixTcpStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixUdpStatistics.cs" />
- <Compile Include="System.Net.Security\SslStream.cs" />
- <Compile Include="System.Net\AuthenticationManager.cs" />
- <Compile Include="System.Net\BufferedReadStream.cs" />
- <Compile Include="System.Net\ChunkedInputStream.cs" />
- <Compile Include="System.Net\ContentDecodeStream.cs" />
- <Compile Include="System.Net\EndPointListener.cs" />
- <Compile Include="System.Net\EndPointManager.cs" />
- <Compile Include="System.Net\FixedSizeReadStream.cs" />
- <Compile Include="System.Net\HttpConnection.cs" />
- <Compile Include="System.Net\HttpListener.Mono.cs" />
- <Compile Include="System.Net\HttpListener.cs" />
- <Compile Include="System.Net\HttpListenerBasicIdentity.cs" />
- <Compile Include="System.Net\HttpListenerContext.cs" />
- <Compile Include="System.Net\HttpListenerPrefixCollection.cs" />
- <Compile Include="System.Net\HttpListenerRequest.cs" />
- <Compile Include="System.Net\HttpListenerResponse.cs" />
- <Compile Include="System.Net\HttpListenerTimeoutManager.cs" />
- <Compile Include="System.Net\HttpWebRequest.cs" />
- <Compile Include="System.Net\HttpWebResponse.cs" />
- <Compile Include="System.Net\ListenerAsyncResult.cs" />
- <Compile Include="System.Net\MonoChunkStream.cs" />
- <Compile Include="System.Net\NtlmClient.cs" />
- <Compile Include="System.Net\ResponseStream.cs" />
- <Compile Include="System.Net\ServicePoint.cs" />
- <Compile Include="System.Net\ServicePointManager.cs" />
- <Compile Include="System.Net\ServicePointManager.extra.cs" />
- <Compile Include="System.Net\ServicePointScheduler.cs" />
- <Compile Include="System.Net\WebCompletionSource.cs" />
- <Compile Include="System.Net\WebConnection.cs" />
- <Compile Include="System.Net\WebConnectionStream.cs" />
- <Compile Include="System.Net\WebConnectionTunnel.cs" />
- <Compile Include="System.Net\WebOperation.cs" />
- <Compile Include="System.Net\WebReadStream.cs" />
- <Compile Include="System.Net\WebRequestStream.cs" />
- <Compile Include="System.Net\WebResponseStream.cs" />
- <Compile Include="corefx\Unix\Interop.Read.cs" />
- <Compile Include="corefx\Unix\Interop.cs" />
- </ItemGroup>
- </When>
- <When Condition="'$(Platform)' == 'net_4_x'">
- <!--Per-host-platform files-->
- <Choose>
- <When Condition="'$(HostPlatform)' == 'win32'">
- <ItemGroup>
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Windows\Crypt32\Interop.FindOidInfo.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Windows\Crypt32\Interop.certificates.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Windows\Crypt32\Interop.certificates_types.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Windows\Interop.BOOL.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Windows\Interop.Libraries.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Windows\SChannel\Interop.SECURITY_STATUS.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Windows\SChannel\Interop.SecPkgContext_ApplicationProtocol.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Windows\SChannel\SecPkgContext_ConnectionInfo.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Windows\kernel32\Interop.CloseHandle.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Windows\kernel32\Interop.CreateFile.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Windows\kernel32\Interop.FileOperations.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Windows\kernel32\Interop.ReadDirectoryChangesW.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Windows\kernel32\Interop.SECURITY_ATTRIBUTES.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Windows\sspicli\GlobalSSPI.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Windows\sspicli\Interop.SSPI.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Windows\sspicli\NegotiationInfoClass.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Windows\sspicli\SSPIAuthType.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Windows\sspicli\SSPIInterface.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Windows\sspicli\SSPISecureChannelType.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Windows\sspicli\SSPIWrapper.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Windows\sspicli\SafeDeleteContext.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Windows\sspicli\SecPkgContext_Bindings.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Windows\sspicli\SecPkgContext_NegotiationInfoW.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Windows\sspicli\SecPkgContext_Sizes.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Windows\sspicli\SecPkgContext_StreamSizes.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Windows\sspicli\SecurityPackageInfo.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Windows\sspicli\SecurityPackageInfoClass.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Windows\sspicli\SecuritySafeHandles.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\CSharpHelpers.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\CodeDom\CodeObject.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\CodeDom\CodeTypeReference.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\CodeDom\CodeTypeReferenceCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Collections\Generic\BidirectionalDictionary.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\IO\PathInternal.Windows.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\IO\TempFileCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\ContextAwareResult.Windows.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\ContextAwareResult.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\ContextFlagsAdapterPal.Windows.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\DebugCriticalHandleZeroOrMinusOneIsInvalid.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\HttpValidationHelpers.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\SecurityStatusAdapterPal.Windows.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\CertificateHelper.Windows.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\NegotiateStreamPal.Windows.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\NetEventSource.Security.Windows.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\NetEventSource.Security.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\SecurityContextTokenHandle.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\SslClientAuthenticationOptionsExtensions.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\TlsStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\Microsoft\CSharp\CSharpCodeGenerator.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\Microsoft\CSharp\CSharpCodeProvider.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\Microsoft\CSharp\CSharpMemberAttributeConverter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\Microsoft\CSharp\CSharpModifierAttributeConverter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\Microsoft\CSharp\CSharpTypeAttributeConverter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\Microsoft\VisualBasic\VBCodeGenerator.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\Microsoft\VisualBasic\VBCodeProvider.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\Microsoft\VisualBasic\VBMemberAttributeConverter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\Microsoft\VisualBasic\VBModiferAttributeConverter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\Microsoft\VisualBasic\VBTypeAttributeConverter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeArgumentReferenceExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeArrayCreateExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeArrayIndexerExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeAssignStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeAttachEventStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeAttributeArgument.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeAttributeArgumentCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeAttributeDeclaration.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeAttributeDeclarationCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeBaseReferenceExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeBinaryOperatorExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeBinaryOperatorType.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeCastExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeCatchClause.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeCatchClauseCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeChecksumPragma.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeComment.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeCommentStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeCommentStatementCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeCompileUnit.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeConditionStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeConstructor.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeDefaultValueExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeDelegateCreateExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeDelegateInvokeExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeDirectionExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeDirective.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeDirectiveCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeEntryPointMethod.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeEventReferenceExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeExpressionCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeExpressionStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeFieldReferenceExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeGotoStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeIndexerExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeIterationStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeLabeledStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeLinePragma.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeMemberEvent.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeMemberField.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeMemberMethod.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeMemberProperty.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeMethodInvokeExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeMethodReturnStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeNamespace.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeNamespaceCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeNamespaceImport.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeNamespaceImportCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeObjectCreateExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeParameterDeclarationExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeParameterDeclarationExpressionCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodePrimitiveExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodePropertyReferenceExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodePropertySetValueReferenceExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeRegionDirective.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeRegionMode.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeRemoveEventStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeSnippetCompileUnit.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeSnippetExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeSnippetStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeSnippetTypeMember.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeStatementCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeThisReferenceExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeThrowExceptionStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeTryCatchFinallyStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeTypeConstructor.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeTypeDeclaration.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeTypeDeclarationCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeTypeDelegate.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeTypeMember.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeTypeMemberCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeTypeOfExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeTypeParameter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeTypeParameterCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeTypeReferenceExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeVariableDeclarationStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeVariableReferenceExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CodeCompiler.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CodeDomProvider.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CodeGenerator.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CodeGeneratorOptions.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CodeParser.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CodeValidator.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CompilerError.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CompilerErrorCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CompilerInfo.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CompilerParameters.Evidence.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CompilerParameters.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CompilerResults.Evidence.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CompilerResults.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\ExposedTabStringIndentedTextWriter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\GeneratorSupport.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\ICodeCompiler.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\ICodeGenerator.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\ICodeParser.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\LanguageOptions.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\FieldDirection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\MemberAttributes.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\codemethodreferenceexpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\Collections\Specialized\FixedStringLookup.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.IO.FileSystem.Watcher\src\System\IO\FileSystemWatcher.Win32.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.HttpListener\src\System\Net\WebSockets\HttpListenerWebSocketContext.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\CommandStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpControlStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpDataStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpWebRequest.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpWebResponse.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\NetworkStreamWrapper.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslApplicationProtocol.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslAuthenticationOptions.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslClientAuthenticationOptions.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslServerAuthenticationOptions.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Security.Cryptography.Encoding\src\Internal\Cryptography\OidLookup.Windows.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\CompiledRegexRunner.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\CompiledRegexRunnerFactory.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\RegexCompiler.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\RegexLWCGCompiler.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\ConsoleTraceListener.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\FilterElement.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\PerfCounterSection.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\SourceElementsCollection.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\SwitchElementsCollection.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\SystemDiagnosticsSection.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\TraceSection.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\TypedElement.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\XmlWriterTraceListener.cs" />
- <Compile Include="..\referencesource\System\misc\PrivilegedConfigurationManager.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\TCPClient.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\TCPListener.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\UDPClient.cs" />
- <Compile Include="Microsoft.CSharp\CSharpCodeGenerator.cs" />
- <Compile Include="Microsoft.VisualBasic\VBCodeGenerator.cs" />
- <Compile Include="Microsoft.Win32\IntranetZoneCredentialPolicy.cs" />
- <Compile Include="Microsoft.Win32\PowerModeChangedEventArgs.cs" />
- <Compile Include="Microsoft.Win32\PowerModeChangedEventHandler.cs" />
- <Compile Include="Microsoft.Win32\PowerModes.cs" />
- <Compile Include="Microsoft.Win32\SessionEndReasons.cs" />
- <Compile Include="Microsoft.Win32\SessionEndedEventArgs.cs" />
- <Compile Include="Microsoft.Win32\SessionEndedEventHandler.cs" />
- <Compile Include="Microsoft.Win32\SessionEndingEventArgs.cs" />
- <Compile Include="Microsoft.Win32\SessionEndingEventHandler.cs" />
- <Compile Include="Microsoft.Win32\SessionSwitchEventArgs.cs" />
- <Compile Include="Microsoft.Win32\SessionSwitchEventHandler.cs" />
- <Compile Include="Microsoft.Win32\SessionSwitchReason.cs" />
- <Compile Include="Microsoft.Win32\SystemEvents.cs" />
- <Compile Include="Microsoft.Win32\TimerElapsedEventArgs.cs" />
- <Compile Include="Microsoft.Win32\TimerElapsedEventHandler.cs" />
- <Compile Include="Microsoft.Win32\UserPreferenceCategory.cs" />
- <Compile Include="Microsoft.Win32\UserPreferenceChangedEventArgs.cs" />
- <Compile Include="Microsoft.Win32\UserPreferenceChangedEventHandler.cs" />
- <Compile Include="Microsoft.Win32\UserPreferenceChangingEventArgs.cs" />
- <Compile Include="Microsoft.Win32\UserPreferenceChangingEventHandler.cs" />
- <Compile Include="Mono.Http\NtlmClient.cs" />
- <Compile Include="Mono.Net.Dns\DnsClass.cs" />
- <Compile Include="Mono.Net.Dns\DnsHeader.cs" />
- <Compile Include="Mono.Net.Dns\DnsOpCode.cs" />
- <Compile Include="Mono.Net.Dns\DnsPacket.cs" />
- <Compile Include="Mono.Net.Dns\DnsQClass.cs" />
- <Compile Include="Mono.Net.Dns\DnsQType.cs" />
- <Compile Include="Mono.Net.Dns\DnsQuery.cs" />
- <Compile Include="Mono.Net.Dns\DnsQuestion.cs" />
- <Compile Include="Mono.Net.Dns\DnsRCode.cs" />
- <Compile Include="Mono.Net.Dns\DnsResourceRecord.cs" />
- <Compile Include="Mono.Net.Dns\DnsResourceRecordA.cs" />
- <Compile Include="Mono.Net.Dns\DnsResourceRecordAAAA.cs" />
- <Compile Include="Mono.Net.Dns\DnsResourceRecordCName.cs" />
- <Compile Include="Mono.Net.Dns\DnsResourceRecordIPAddress.cs" />
- <Compile Include="Mono.Net.Dns\DnsResourceRecordPTR.cs" />
- <Compile Include="Mono.Net.Dns\DnsResponse.cs" />
- <Compile Include="Mono.Net.Dns\DnsType.cs" />
- <Compile Include="Mono.Net.Dns\DnsUtil.cs" />
- <Compile Include="Mono.Net.Dns\ResolverAsyncOperation.cs" />
- <Compile Include="Mono.Net.Dns\ResolverError.cs" />
- <Compile Include="Mono.Net.Dns\SimpleResolver.cs" />
- <Compile Include="Mono.Net.Dns\SimpleResolverEventArgs.cs" />
- <Compile Include="Mono.Net.Security\AsyncProtocolRequest.cs" />
- <Compile Include="Mono.Net.Security\CallbackHelpers.cs" />
- <Compile Include="Mono.Net.Security\ChainValidationHelper.cs" />
- <Compile Include="Mono.Net.Security\LegacySslStream.cs" />
- <Compile Include="Mono.Net.Security\LegacyTlsProvider.cs" />
- <Compile Include="Mono.Net.Security\MobileAuthenticatedStream.cs" />
- <Compile Include="Mono.Net.Security\MobileTlsContext.cs" />
- <Compile Include="Mono.Net.Security\MonoSslAuthenticationOptions.cs" />
- <Compile Include="Mono.Net.Security\MonoSslClientAuthenticationOptions.cs" />
- <Compile Include="Mono.Net.Security\MonoSslServerAuthenticationOptions.cs" />
- <Compile Include="Mono.Net.Security\MonoTlsProviderFactory.cs" />
- <Compile Include="Mono.Net.Security\MonoTlsStream.cs" />
- <Compile Include="Mono.Net.Security\NoReflectionHelper.cs" />
- <Compile Include="Mono.Net.Security\SystemCertificateValidator.cs" />
- <Compile Include="ReferenceSources\BinaryCompatibility.cs" />
- <Compile Include="ReferenceSources\ConfigurationManagerInternalFactory.cs" />
- <Compile Include="System.CodeDom.Compiler\CodeDomConfigurationHandler.cs" />
- <Compile Include="System.CodeDom.Compiler\Compiler.cs" />
- <Compile Include="System.CodeDom.Compiler\CompilerCollection.cs" />
- <Compile Include="System.CodeDom.Compiler\CompilerProviderOption.cs" />
- <Compile Include="System.CodeDom.Compiler\CompilerProviderOptionsCollection.cs" />
- <Compile Include="System.CodeDom.Compiler\Executor.cs" />
- <Compile Include="System.Configuration\AppSettingsReader.cs" />
- <Compile Include="System.Configuration\ApplicationScopedSettingAttribute.cs" />
- <Compile Include="System.Configuration\ApplicationSettingsBase.cs" />
- <Compile Include="System.Configuration\ApplicationSettingsGroup.cs" />
- <Compile Include="System.Configuration\ClientSettingsSection.cs" />
- <Compile Include="System.Configuration\ConfigHelper.cs" />
- <Compile Include="System.Configuration\ConfigXmlDocument.cs" />
- <Compile Include="System.Configuration\ConfigurationException.cs" />
- <Compile Include="System.Configuration\ConfigurationSettings.cs" />
- <Compile Include="System.Configuration\CustomizableFileSettingsProvider.cs" />
- <Compile Include="System.Configuration\DefaultSettingValueAttribute.cs" />
- <Compile Include="System.Configuration\DictionarySectionHandler.cs" />
- <Compile Include="System.Configuration\IApplicationSettingsProvider.cs" />
- <Compile Include="System.Configuration\IConfigXmlNode.cs" />
- <Compile Include="System.Configuration\IConfigurationSectionHandler.cs" />
- <Compile Include="System.Configuration\IConfigurationSystem.cs" />
- <Compile Include="System.Configuration\IPersistComponentSettings.cs" />
- <Compile Include="System.Configuration\ISettingsProviderService.cs" />
- <Compile Include="System.Configuration\IdnElement.cs" />
- <Compile Include="System.Configuration\IgnoreSectionHandler.cs" />
- <Compile Include="System.Configuration\IriParsingElement.cs" />
- <Compile Include="System.Configuration\LocalFileSettingsProvider.cs" />
- <Compile Include="System.Configuration\NameValueFileSectionHandler.cs" />
- <Compile Include="System.Configuration\NameValueSectionHandler.cs" />
- <Compile Include="System.Configuration\NoSettingsVersionUpgradeAttribute.cs" />
- <Compile Include="System.Configuration\SettingAttribute.cs" />
- <Compile Include="System.Configuration\SettingChangingEventArgs.cs" />
- <Compile Include="System.Configuration\SettingChangingEventHandler.cs" />
- <Compile Include="System.Configuration\SettingElement.cs" />
- <Compile Include="System.Configuration\SettingElementCollection.cs" />
- <Compile Include="System.Configuration\SettingValueElement.cs" />
- <Compile Include="System.Configuration\SettingsAttributeDictionary.cs" />
- <Compile Include="System.Configuration\SettingsBase.cs" />
- <Compile Include="System.Configuration\SettingsContext.cs" />
- <Compile Include="System.Configuration\SettingsDescriptionAttribute.cs" />
- <Compile Include="System.Configuration\SettingsGroupDescriptionAttribute.cs" />
- <Compile Include="System.Configuration\SettingsGroupNameAttribute.cs" />
- <Compile Include="System.Configuration\SettingsLoadedEventArgs.cs" />
- <Compile Include="System.Configuration\SettingsLoadedEventHandler.cs" />
- <Compile Include="System.Configuration\SettingsManageability.cs" />
- <Compile Include="System.Configuration\SettingsManageabilityAttribute.cs" />
- <Compile Include="System.Configuration\SettingsProperty.cs" />
- <Compile Include="System.Configuration\SettingsPropertyCollection.cs" />
- <Compile Include="System.Configuration\SettingsPropertyIsReadOnlyException.cs" />
- <Compile Include="System.Configuration\SettingsPropertyNotFoundException.cs" />
- <Compile Include="System.Configuration\SettingsPropertyValue.cs" />
- <Compile Include="System.Configuration\SettingsPropertyValueCollection.cs" />
- <Compile Include="System.Configuration\SettingsPropertyWrongTypeException.cs" />
- <Compile Include="System.Configuration\SettingsProvider.cs" />
- <Compile Include="System.Configuration\SettingsProviderAttribute.cs" />
- <Compile Include="System.Configuration\SettingsProviderCollection.cs" />
- <Compile Include="System.Configuration\SettingsSavingEventHandler.cs" />
- <Compile Include="System.Configuration\SettingsSerializeAs.cs" />
- <Compile Include="System.Configuration\SettingsSerializeAsAttribute.cs" />
- <Compile Include="System.Configuration\SingleTagSectionHandler.cs" />
- <Compile Include="System.Configuration\SpecialSetting.cs" />
- <Compile Include="System.Configuration\SpecialSettingAttribute.cs" />
- <Compile Include="System.Configuration\UriSection.cs" />
- <Compile Include="System.Configuration\UserScopedSettingAttribute.cs" />
- <Compile Include="System.Configuration\UserSettingsGroup.cs" />
- <Compile Include="System.Diagnostics\AlphabeticalEnumConverter.cs" />
- <Compile Include="System.Diagnostics\CounterCreationData.cs" />
- <Compile Include="System.Diagnostics\CounterCreationDataCollection.cs" />
- <Compile Include="System.Diagnostics\CounterSample.cs" />
- <Compile Include="System.Diagnostics\CounterSampleCalculator.cs" />
- <Compile Include="System.Diagnostics\DiagnosticsConfigurationHandler.cs" />
- <Compile Include="System.Diagnostics\EntryWrittenEventArgs.cs" />
- <Compile Include="System.Diagnostics\EntryWrittenEventHandler.cs" />
- <Compile Include="System.Diagnostics\EventInstance.cs" />
- <Compile Include="System.Diagnostics\EventLog.cs" />
- <Compile Include="System.Diagnostics\EventLogEntry.cs" />
- <Compile Include="System.Diagnostics\EventLogEntryCollection.cs" />
- <Compile Include="System.Diagnostics\EventLogEntryType.cs" />
- <Compile Include="System.Diagnostics\EventLogImpl.cs" />
- <Compile Include="System.Diagnostics\EventLogInstaller.cs" />
- <Compile Include="System.Diagnostics\EventLogPermission.cs" />
- <Compile Include="System.Diagnostics\EventLogPermissionAccess.cs" />
- <Compile Include="System.Diagnostics\EventLogPermissionAttribute.cs" />
- <Compile Include="System.Diagnostics\EventLogPermissionEntry.cs" />
- <Compile Include="System.Diagnostics\EventLogPermissionEntryCollection.cs" />
- <Compile Include="System.Diagnostics\EventLogTraceListener.cs" />
- <Compile Include="System.Diagnostics\EventSourceCreationData.cs" />
- <Compile Include="System.Diagnostics\ICollectData.cs" />
- <Compile Include="System.Diagnostics\InstanceData.cs" />
- <Compile Include="System.Diagnostics\InstanceDataCollection.cs" />
- <Compile Include="System.Diagnostics\InstanceDataCollectionCollection.cs" />
- <Compile Include="System.Diagnostics\LocalFileEventLog.cs" />
- <Compile Include="System.Diagnostics\NullEventLog.cs" />
- <Compile Include="System.Diagnostics\OverflowAction.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounter.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounterCategory.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounterCategoryType.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounterInstaller.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounterInstanceLifetime.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounterManager.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounterPermission.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounterPermissionAccess.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounterPermissionAttribute.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounterPermissionEntry.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounterPermissionEntryCollection.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounterType.cs" />
- <Compile Include="System.Diagnostics\TraceSourceInfo.cs" />
- <Compile Include="System.Diagnostics\Win32EventLog.cs" />
- <Compile Include="System.IO.Ports\Handshake.cs" />
- <Compile Include="System.IO.Ports\ISerialStream.cs" />
- <Compile Include="System.IO.Ports\Parity.cs" />
- <Compile Include="System.IO.Ports\SerialData.cs" />
- <Compile Include="System.IO.Ports\SerialError.cs" />
- <Compile Include="System.IO.Ports\SerialErrorEventArgs.cs" />
- <Compile Include="System.IO.Ports\SerialPinChange.cs" />
- <Compile Include="System.IO.Ports\SerialPinChangedEventArgs.cs" />
- <Compile Include="System.IO.Ports\SerialPort.cs" />
- <Compile Include="System.IO.Ports\SerialPortStream.cs" />
- <Compile Include="System.IO.Ports\SerialReceivedEventArgs.cs" />
- <Compile Include="System.IO.Ports\SerialSignal.cs" />
- <Compile Include="System.IO.Ports\StopBits.cs" />
- <Compile Include="System.IO.Ports\WinSerialStream.cs" />
- <Compile Include="System.IO\CoreFXFileSystemWatcherProxy.cs" />
- <Compile Include="System.IO\DefaultWatcher.cs" />
- <Compile Include="System.IO\FAMWatcher.cs" />
- <Compile Include="System.IO\FileAction.cs" />
- <Compile Include="System.IO\FileSystemWatcher.cs" />
- <Compile Include="System.IO\IFileWatcher.cs" />
- <Compile Include="System.IO\KeventWatcher.cs" />
- <Compile Include="System.IO\NullFileWatcher.cs" />
- <Compile Include="System.IO\SearchPattern.cs" />
- <Compile Include="System.Media\AudioData.cs" />
- <Compile Include="System.Media\AudioDevice.cs" />
- <Compile Include="System.Media\SoundPlayer.cs" />
- <Compile Include="System.Media\SystemSound.cs" />
- <Compile Include="System.Media\SystemSounds.cs" />
- <Compile Include="System.Media\Win32SoundPlayer.cs" />
- <Compile Include="System.Net.Configuration\AuthenticationModuleElement.cs" />
- <Compile Include="System.Net.Configuration\AuthenticationModuleElementCollection.cs" />
- <Compile Include="System.Net.Configuration\AuthenticationModulesSection.cs" />
- <Compile Include="System.Net.Configuration\BypassElement.cs" />
- <Compile Include="System.Net.Configuration\BypassElementCollection.cs" />
- <Compile Include="System.Net.Configuration\ConnectionManagementElement.cs" />
- <Compile Include="System.Net.Configuration\ConnectionManagementElementCollection.cs" />
- <Compile Include="System.Net.Configuration\ConnectionManagementHandler.cs" />
- <Compile Include="System.Net.Configuration\ConnectionManagementSection.cs" />
- <Compile Include="System.Net.Configuration\DefaultProxyHandler.cs" />
- <Compile Include="System.Net.Configuration\DefaultProxySection.cs" />
- <Compile Include="System.Net.Configuration\FtpCachePolicyElement.cs" />
- <Compile Include="System.Net.Configuration\HttpCachePolicyElement.cs" />
- <Compile Include="System.Net.Configuration\HttpWebRequestElement.cs" />
- <Compile Include="System.Net.Configuration\Ipv6Element.cs" />
- <Compile Include="System.Net.Configuration\MailSettingsSectionGroup.cs" />
- <Compile Include="System.Net.Configuration\ModuleElement.cs" />
- <Compile Include="System.Net.Configuration\NetAuthenticationModuleHandler.cs" />
- <Compile Include="System.Net.Configuration\NetConfigurationHandler.cs" />
- <Compile Include="System.Net.Configuration\NetSectionGroup.cs" />
- <Compile Include="System.Net.Configuration\PerformanceCountersElement.cs" />
- <Compile Include="System.Net.Configuration\ProxyElement.cs" />
- <Compile Include="System.Net.Configuration\RequestCachingSection.cs" />
- <Compile Include="System.Net.Configuration\ServicePointManagerElement.cs" />
- <Compile Include="System.Net.Configuration\SettingsSection.cs" />
- <Compile Include="System.Net.Configuration\SmtpNetworkElement.cs" />
- <Compile Include="System.Net.Configuration\SmtpSection.cs" />
- <Compile Include="System.Net.Configuration\SmtpSpecifiedPickupDirectoryElement.cs" />
- <Compile Include="System.Net.Configuration\SocketElement.cs" />
- <Compile Include="System.Net.Configuration\WebProxyScriptElement.cs" />
- <Compile Include="System.Net.Configuration\WebRequestModuleElement.cs" />
- <Compile Include="System.Net.Configuration\WebRequestModuleElementCollection.cs" />
- <Compile Include="System.Net.Configuration\WebRequestModuleHandler.cs" />
- <Compile Include="System.Net.Configuration\WebRequestModulesSection.cs" />
- <Compile Include="System.Net.Mail\SmtpClient.cs" />
- <Compile Include="System.Net.Mail\SmtpPermission.cs" />
- <Compile Include="System.Net.Mail\SmtpPermissionAttribute.cs" />
- <Compile Include="System.Net.NetworkInformation\Win32UnixFactoryPal.cs" />
- <Compile Include="System.Net.Security\SslStream.cs" />
- <Compile Include="System.Net\AuthenticationManager.cs" />
- <Compile Include="System.Net\BufferedReadStream.cs" />
- <Compile Include="System.Net\ChunkedInputStream.cs" />
- <Compile Include="System.Net\ContentDecodeStream.cs" />
- <Compile Include="System.Net\DnsAsyncResult.cs" />
- <Compile Include="System.Net\DnsPermission.cs" />
- <Compile Include="System.Net\DnsPermissionAttribute.cs" />
- <Compile Include="System.Net\EndPointListener.cs" />
- <Compile Include="System.Net\EndPointManager.cs" />
- <Compile Include="System.Net\FixedSizeReadStream.cs" />
- <Compile Include="System.Net\HttpConnection.cs" />
- <Compile Include="System.Net\HttpListener.Mono.cs" />
- <Compile Include="System.Net\HttpListener.cs" />
- <Compile Include="System.Net\HttpListenerBasicIdentity.cs" />
- <Compile Include="System.Net\HttpListenerContext.cs" />
- <Compile Include="System.Net\HttpListenerPrefixCollection.cs" />
- <Compile Include="System.Net\HttpListenerRequest.cs" />
- <Compile Include="System.Net\HttpListenerResponse.cs" />
- <Compile Include="System.Net\HttpListenerTimeoutManager.cs" />
- <Compile Include="System.Net\HttpWebRequest.cs" />
- <Compile Include="System.Net\HttpWebResponse.cs" />
- <Compile Include="System.Net\ListenerAsyncResult.cs" />
- <Compile Include="System.Net\MacProxy.cs" />
- <Compile Include="System.Net\MonoChunkStream.cs" />
- <Compile Include="System.Net\NtlmClient.cs" />
- <Compile Include="System.Net\ResponseStream.cs" />
- <Compile Include="System.Net\ServicePoint.cs" />
- <Compile Include="System.Net\ServicePointManager.cs" />
- <Compile Include="System.Net\ServicePointManager.extra.cs" />
- <Compile Include="System.Net\ServicePointScheduler.cs" />
- <Compile Include="System.Net\WebCompletionSource.cs" />
- <Compile Include="System.Net\WebConnection.cs" />
- <Compile Include="System.Net\WebConnectionStream.cs" />
- <Compile Include="System.Net\WebConnectionTunnel.cs" />
- <Compile Include="System.Net\WebOperation.cs" />
- <Compile Include="System.Net\WebReadStream.cs" />
- <Compile Include="System.Net\WebRequestStream.cs" />
- <Compile Include="System.Net\WebResponseStream.cs" />
- <Compile Include="System.Runtime.InteropServices\StandardOleMarshalObject.cs" />
- <Compile Include="System.Security.Cryptography.X509Certificates\OSX509Certificates.cs" />
- <Compile Include="System.Security.Permissions\PermissionHelper.cs" />
- <Compile Include="System.Security.Permissions\ResourcePermissionBase.cs" />
- <Compile Include="System.Security.Permissions\ResourcePermissionBaseEntry.cs" />
- <Compile Include="System.Security.Permissions\StorePermission.cs" />
- <Compile Include="System.Security.Permissions\StorePermissionAttribute.cs" />
- <Compile Include="System.Security.Permissions\StorePermissionFlags.cs" />
- <Compile Include="System.Web\AspNetHostingPermission.cs" />
- <Compile Include="System.Web\AspNetHostingPermissionAttribute.cs" />
- <Compile Include="System.Web\AspNetHostingPermissionLevel.cs" />
- <Compile Include="System\MonoToolsLocator.cs" />
- </ItemGroup>
- </When>
- <When Condition="'$(HostPlatform)' == 'unix'">
- <ItemGroup>
- <Compile Include="..\..\..\external\corefx\src\Common\src\CoreLib\Interop\Unix\System.Native\Interop.ReadDir.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Linux\Interop.Libraries.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Linux\System.Native\Interop.INotify.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\Interop.Errors.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\Interop.IOErrors.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\Interop.Libraries.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Native\Interop.Close.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Native\Interop.FLock.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Native\Interop.Open.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Native\Interop.OpenFlags.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Native\Interop.Poll.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Native\Interop.Stat.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Net.Security.Native\Interop.GssApiException.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Net.Security.Native\Interop.GssBuffer.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Net.Security.Native\Interop.NetSecurityNative.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Microsoft\Win32\SafeHandles\GssSafeHandles.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Microsoft\Win32\SafeHandles\SafeDirectoryHandle.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Microsoft\Win32\SafeHandles\SafeFileHandle.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\CSharpHelpers.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\CodeDom\CodeObject.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\CodeDom\CodeTypeReference.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\CodeDom\CodeTypeReferenceCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\IO\TempFileCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\ContextAwareResult.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\ContextAwareResult.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\ContextFlagsAdapterPal.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\HttpValidationHelpers.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\CertificateHelper.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\NegotiateStreamPal.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\SslClientAuthenticationOptionsExtensions.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeDeleteContext.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeDeleteNegoContext.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeFreeCredentials.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeFreeNegoCredentials.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\TlsStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\Microsoft\CSharp\CSharpCodeGenerator.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\Microsoft\CSharp\CSharpCodeProvider.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\Microsoft\CSharp\CSharpMemberAttributeConverter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\Microsoft\CSharp\CSharpModifierAttributeConverter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\Microsoft\CSharp\CSharpTypeAttributeConverter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\Microsoft\VisualBasic\VBCodeGenerator.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\Microsoft\VisualBasic\VBCodeProvider.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\Microsoft\VisualBasic\VBMemberAttributeConverter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\Microsoft\VisualBasic\VBModiferAttributeConverter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\Microsoft\VisualBasic\VBTypeAttributeConverter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeArgumentReferenceExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeArrayCreateExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeArrayIndexerExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeAssignStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeAttachEventStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeAttributeArgument.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeAttributeArgumentCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeAttributeDeclaration.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeAttributeDeclarationCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeBaseReferenceExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeBinaryOperatorExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeBinaryOperatorType.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeCastExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeCatchClause.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeCatchClauseCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeChecksumPragma.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeComment.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeCommentStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeCommentStatementCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeCompileUnit.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeConditionStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeConstructor.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeDefaultValueExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeDelegateCreateExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeDelegateInvokeExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeDirectionExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeDirective.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeDirectiveCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeEntryPointMethod.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeEventReferenceExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeExpressionCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeExpressionStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeFieldReferenceExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeGotoStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeIndexerExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeIterationStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeLabeledStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeLinePragma.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeMemberEvent.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeMemberField.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeMemberMethod.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeMemberProperty.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeMethodInvokeExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeMethodReturnStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeNamespace.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeNamespaceCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeNamespaceImport.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeNamespaceImportCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeObjectCreateExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeParameterDeclarationExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeParameterDeclarationExpressionCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodePrimitiveExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodePropertyReferenceExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodePropertySetValueReferenceExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeRegionDirective.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeRegionMode.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeRemoveEventStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeSnippetCompileUnit.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeSnippetExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeSnippetStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeSnippetTypeMember.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeStatementCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeThisReferenceExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeThrowExceptionStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeTryCatchFinallyStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeTypeConstructor.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeTypeDeclaration.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeTypeDeclarationCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeTypeDelegate.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeTypeMember.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeTypeMemberCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeTypeOfExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeTypeParameter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeTypeParameterCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeTypeReferenceExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeVariableDeclarationStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeVariableReferenceExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CodeCompiler.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CodeDomProvider.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CodeGenerator.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CodeGeneratorOptions.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CodeParser.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CodeValidator.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CompilerError.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CompilerErrorCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CompilerInfo.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CompilerParameters.Evidence.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CompilerParameters.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CompilerResults.Evidence.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CompilerResults.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\ExposedTabStringIndentedTextWriter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\GeneratorSupport.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\ICodeCompiler.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\ICodeGenerator.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\ICodeParser.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\LanguageOptions.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\FieldDirection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\MemberAttributes.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\codemethodreferenceexpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\Collections\Specialized\FixedStringLookup.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.IO.FileSystem.Watcher\src\System\IO\FileSystemWatcher.Linux.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.HttpListener\src\System\Net\WebSockets\HttpListenerWebSocketContext.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\CommandStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpControlStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpDataStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpWebRequest.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpWebResponse.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\NetworkStreamWrapper.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslApplicationProtocol.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslAuthenticationOptions.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslClientAuthenticationOptions.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslServerAuthenticationOptions.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\CompiledRegexRunner.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\CompiledRegexRunnerFactory.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\RegexCompiler.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\RegexLWCGCompiler.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\ConsoleTraceListener.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\FilterElement.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\PerfCounterSection.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\SourceElementsCollection.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\SwitchElementsCollection.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\SystemDiagnosticsSection.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\TraceSection.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\TypedElement.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\XmlWriterTraceListener.cs" />
- <Compile Include="..\referencesource\System\misc\PrivilegedConfigurationManager.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\TCPClient.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\TCPListener.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\UDPClient.cs" />
- <Compile Include="Internal.Cryptography\OidLookup.Managed.cs" />
- <Compile Include="Microsoft.CSharp\CSharpCodeGenerator.cs" />
- <Compile Include="Microsoft.VisualBasic\VBCodeGenerator.cs" />
- <Compile Include="Microsoft.Win32\IntranetZoneCredentialPolicy.cs" />
- <Compile Include="Microsoft.Win32\PowerModeChangedEventArgs.cs" />
- <Compile Include="Microsoft.Win32\PowerModeChangedEventHandler.cs" />
- <Compile Include="Microsoft.Win32\PowerModes.cs" />
- <Compile Include="Microsoft.Win32\SessionEndReasons.cs" />
- <Compile Include="Microsoft.Win32\SessionEndedEventArgs.cs" />
- <Compile Include="Microsoft.Win32\SessionEndedEventHandler.cs" />
- <Compile Include="Microsoft.Win32\SessionEndingEventArgs.cs" />
- <Compile Include="Microsoft.Win32\SessionEndingEventHandler.cs" />
- <Compile Include="Microsoft.Win32\SessionSwitchEventArgs.cs" />
- <Compile Include="Microsoft.Win32\SessionSwitchEventHandler.cs" />
- <Compile Include="Microsoft.Win32\SessionSwitchReason.cs" />
- <Compile Include="Microsoft.Win32\SystemEvents.cs" />
- <Compile Include="Microsoft.Win32\TimerElapsedEventArgs.cs" />
- <Compile Include="Microsoft.Win32\TimerElapsedEventHandler.cs" />
- <Compile Include="Microsoft.Win32\UserPreferenceCategory.cs" />
- <Compile Include="Microsoft.Win32\UserPreferenceChangedEventArgs.cs" />
- <Compile Include="Microsoft.Win32\UserPreferenceChangedEventHandler.cs" />
- <Compile Include="Microsoft.Win32\UserPreferenceChangingEventArgs.cs" />
- <Compile Include="Microsoft.Win32\UserPreferenceChangingEventHandler.cs" />
- <Compile Include="Mono.Http\NtlmClient.cs" />
- <Compile Include="Mono.Net.Dns\DnsClass.cs" />
- <Compile Include="Mono.Net.Dns\DnsHeader.cs" />
- <Compile Include="Mono.Net.Dns\DnsOpCode.cs" />
- <Compile Include="Mono.Net.Dns\DnsPacket.cs" />
- <Compile Include="Mono.Net.Dns\DnsQClass.cs" />
- <Compile Include="Mono.Net.Dns\DnsQType.cs" />
- <Compile Include="Mono.Net.Dns\DnsQuery.cs" />
- <Compile Include="Mono.Net.Dns\DnsQuestion.cs" />
- <Compile Include="Mono.Net.Dns\DnsRCode.cs" />
- <Compile Include="Mono.Net.Dns\DnsResourceRecord.cs" />
- <Compile Include="Mono.Net.Dns\DnsResourceRecordA.cs" />
- <Compile Include="Mono.Net.Dns\DnsResourceRecordAAAA.cs" />
- <Compile Include="Mono.Net.Dns\DnsResourceRecordCName.cs" />
- <Compile Include="Mono.Net.Dns\DnsResourceRecordIPAddress.cs" />
- <Compile Include="Mono.Net.Dns\DnsResourceRecordPTR.cs" />
- <Compile Include="Mono.Net.Dns\DnsResponse.cs" />
- <Compile Include="Mono.Net.Dns\DnsType.cs" />
- <Compile Include="Mono.Net.Dns\DnsUtil.cs" />
- <Compile Include="Mono.Net.Dns\ResolverAsyncOperation.cs" />
- <Compile Include="Mono.Net.Dns\ResolverError.cs" />
- <Compile Include="Mono.Net.Dns\SimpleResolver.cs" />
- <Compile Include="Mono.Net.Dns\SimpleResolverEventArgs.cs" />
- <Compile Include="Mono.Net.Security\AsyncProtocolRequest.cs" />
- <Compile Include="Mono.Net.Security\CallbackHelpers.cs" />
- <Compile Include="Mono.Net.Security\ChainValidationHelper.cs" />
- <Compile Include="Mono.Net.Security\LegacySslStream.cs" />
- <Compile Include="Mono.Net.Security\LegacyTlsProvider.cs" />
- <Compile Include="Mono.Net.Security\MobileAuthenticatedStream.cs" />
- <Compile Include="Mono.Net.Security\MobileTlsContext.cs" />
- <Compile Include="Mono.Net.Security\MonoSslAuthenticationOptions.cs" />
- <Compile Include="Mono.Net.Security\MonoSslClientAuthenticationOptions.cs" />
- <Compile Include="Mono.Net.Security\MonoSslServerAuthenticationOptions.cs" />
- <Compile Include="Mono.Net.Security\MonoTlsProviderFactory.cs" />
- <Compile Include="Mono.Net.Security\MonoTlsStream.cs" />
- <Compile Include="Mono.Net.Security\NoReflectionHelper.cs" />
- <Compile Include="Mono.Net.Security\SystemCertificateValidator.cs" />
- <Compile Include="ReferenceSources\BinaryCompatibility.cs" />
- <Compile Include="ReferenceSources\ConfigurationManagerInternalFactory.cs" />
- <Compile Include="System.CodeDom.Compiler\CodeDomConfigurationHandler.cs" />
- <Compile Include="System.CodeDom.Compiler\Compiler.cs" />
- <Compile Include="System.CodeDom.Compiler\CompilerCollection.cs" />
- <Compile Include="System.CodeDom.Compiler\CompilerProviderOption.cs" />
- <Compile Include="System.CodeDom.Compiler\CompilerProviderOptionsCollection.cs" />
- <Compile Include="System.CodeDom.Compiler\Executor.cs" />
- <Compile Include="System.Configuration\AppSettingsReader.cs" />
- <Compile Include="System.Configuration\ApplicationScopedSettingAttribute.cs" />
- <Compile Include="System.Configuration\ApplicationSettingsBase.cs" />
- <Compile Include="System.Configuration\ApplicationSettingsGroup.cs" />
- <Compile Include="System.Configuration\ClientSettingsSection.cs" />
- <Compile Include="System.Configuration\ConfigHelper.cs" />
- <Compile Include="System.Configuration\ConfigXmlDocument.cs" />
- <Compile Include="System.Configuration\ConfigurationException.cs" />
- <Compile Include="System.Configuration\ConfigurationSettings.cs" />
- <Compile Include="System.Configuration\CustomizableFileSettingsProvider.cs" />
- <Compile Include="System.Configuration\DefaultSettingValueAttribute.cs" />
- <Compile Include="System.Configuration\DictionarySectionHandler.cs" />
- <Compile Include="System.Configuration\IApplicationSettingsProvider.cs" />
- <Compile Include="System.Configuration\IConfigXmlNode.cs" />
- <Compile Include="System.Configuration\IConfigurationSectionHandler.cs" />
- <Compile Include="System.Configuration\IConfigurationSystem.cs" />
- <Compile Include="System.Configuration\IPersistComponentSettings.cs" />
- <Compile Include="System.Configuration\ISettingsProviderService.cs" />
- <Compile Include="System.Configuration\IdnElement.cs" />
- <Compile Include="System.Configuration\IgnoreSectionHandler.cs" />
- <Compile Include="System.Configuration\IriParsingElement.cs" />
- <Compile Include="System.Configuration\LocalFileSettingsProvider.cs" />
- <Compile Include="System.Configuration\NameValueFileSectionHandler.cs" />
- <Compile Include="System.Configuration\NameValueSectionHandler.cs" />
- <Compile Include="System.Configuration\NoSettingsVersionUpgradeAttribute.cs" />
- <Compile Include="System.Configuration\SettingAttribute.cs" />
- <Compile Include="System.Configuration\SettingChangingEventArgs.cs" />
- <Compile Include="System.Configuration\SettingChangingEventHandler.cs" />
- <Compile Include="System.Configuration\SettingElement.cs" />
- <Compile Include="System.Configuration\SettingElementCollection.cs" />
- <Compile Include="System.Configuration\SettingValueElement.cs" />
- <Compile Include="System.Configuration\SettingsAttributeDictionary.cs" />
- <Compile Include="System.Configuration\SettingsBase.cs" />
- <Compile Include="System.Configuration\SettingsContext.cs" />
- <Compile Include="System.Configuration\SettingsDescriptionAttribute.cs" />
- <Compile Include="System.Configuration\SettingsGroupDescriptionAttribute.cs" />
- <Compile Include="System.Configuration\SettingsGroupNameAttribute.cs" />
- <Compile Include="System.Configuration\SettingsLoadedEventArgs.cs" />
- <Compile Include="System.Configuration\SettingsLoadedEventHandler.cs" />
- <Compile Include="System.Configuration\SettingsManageability.cs" />
- <Compile Include="System.Configuration\SettingsManageabilityAttribute.cs" />
- <Compile Include="System.Configuration\SettingsProperty.cs" />
- <Compile Include="System.Configuration\SettingsPropertyCollection.cs" />
- <Compile Include="System.Configuration\SettingsPropertyIsReadOnlyException.cs" />
- <Compile Include="System.Configuration\SettingsPropertyNotFoundException.cs" />
- <Compile Include="System.Configuration\SettingsPropertyValue.cs" />
- <Compile Include="System.Configuration\SettingsPropertyValueCollection.cs" />
- <Compile Include="System.Configuration\SettingsPropertyWrongTypeException.cs" />
- <Compile Include="System.Configuration\SettingsProvider.cs" />
- <Compile Include="System.Configuration\SettingsProviderAttribute.cs" />
- <Compile Include="System.Configuration\SettingsProviderCollection.cs" />
- <Compile Include="System.Configuration\SettingsSavingEventHandler.cs" />
- <Compile Include="System.Configuration\SettingsSerializeAs.cs" />
- <Compile Include="System.Configuration\SettingsSerializeAsAttribute.cs" />
- <Compile Include="System.Configuration\SingleTagSectionHandler.cs" />
- <Compile Include="System.Configuration\SpecialSetting.cs" />
- <Compile Include="System.Configuration\SpecialSettingAttribute.cs" />
- <Compile Include="System.Configuration\UriSection.cs" />
- <Compile Include="System.Configuration\UserScopedSettingAttribute.cs" />
- <Compile Include="System.Configuration\UserSettingsGroup.cs" />
- <Compile Include="System.Diagnostics\AlphabeticalEnumConverter.cs" />
- <Compile Include="System.Diagnostics\CounterCreationData.cs" />
- <Compile Include="System.Diagnostics\CounterCreationDataCollection.cs" />
- <Compile Include="System.Diagnostics\CounterSample.cs" />
- <Compile Include="System.Diagnostics\CounterSampleCalculator.cs" />
- <Compile Include="System.Diagnostics\DiagnosticsConfigurationHandler.cs" />
- <Compile Include="System.Diagnostics\EntryWrittenEventArgs.cs" />
- <Compile Include="System.Diagnostics\EntryWrittenEventHandler.cs" />
- <Compile Include="System.Diagnostics\EventInstance.cs" />
- <Compile Include="System.Diagnostics\EventLog.cs" />
- <Compile Include="System.Diagnostics\EventLogEntry.cs" />
- <Compile Include="System.Diagnostics\EventLogEntryCollection.cs" />
- <Compile Include="System.Diagnostics\EventLogEntryType.cs" />
- <Compile Include="System.Diagnostics\EventLogImpl.cs" />
- <Compile Include="System.Diagnostics\EventLogInstaller.cs" />
- <Compile Include="System.Diagnostics\EventLogPermission.cs" />
- <Compile Include="System.Diagnostics\EventLogPermissionAccess.cs" />
- <Compile Include="System.Diagnostics\EventLogPermissionAttribute.cs" />
- <Compile Include="System.Diagnostics\EventLogPermissionEntry.cs" />
- <Compile Include="System.Diagnostics\EventLogPermissionEntryCollection.cs" />
- <Compile Include="System.Diagnostics\EventLogTraceListener.cs" />
- <Compile Include="System.Diagnostics\EventSourceCreationData.cs" />
- <Compile Include="System.Diagnostics\ICollectData.cs" />
- <Compile Include="System.Diagnostics\InstanceData.cs" />
- <Compile Include="System.Diagnostics\InstanceDataCollection.cs" />
- <Compile Include="System.Diagnostics\InstanceDataCollectionCollection.cs" />
- <Compile Include="System.Diagnostics\LocalFileEventLog.cs" />
- <Compile Include="System.Diagnostics\NullEventLog.cs" />
- <Compile Include="System.Diagnostics\OverflowAction.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounter.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounterCategory.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounterCategoryType.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounterInstaller.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounterInstanceLifetime.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounterManager.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounterPermission.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounterPermissionAccess.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounterPermissionAttribute.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounterPermissionEntry.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounterPermissionEntryCollection.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounterType.cs" />
- <Compile Include="System.Diagnostics\TraceSourceInfo.cs" />
- <Compile Include="System.Diagnostics\Win32EventLog.cs" />
- <Compile Include="System.IO.Ports\Handshake.cs" />
- <Compile Include="System.IO.Ports\ISerialStream.cs" />
- <Compile Include="System.IO.Ports\Parity.cs" />
- <Compile Include="System.IO.Ports\SerialData.cs" />
- <Compile Include="System.IO.Ports\SerialError.cs" />
- <Compile Include="System.IO.Ports\SerialErrorEventArgs.cs" />
- <Compile Include="System.IO.Ports\SerialPinChange.cs" />
- <Compile Include="System.IO.Ports\SerialPinChangedEventArgs.cs" />
- <Compile Include="System.IO.Ports\SerialPort.cs" />
- <Compile Include="System.IO.Ports\SerialPortStream.cs" />
- <Compile Include="System.IO.Ports\SerialReceivedEventArgs.cs" />
- <Compile Include="System.IO.Ports\SerialSignal.cs" />
- <Compile Include="System.IO.Ports\StopBits.cs" />
- <Compile Include="System.IO.Ports\WinSerialStream.cs" />
- <Compile Include="System.IO\CoreFXFileSystemWatcherProxy.cs" />
- <Compile Include="System.IO\DefaultWatcher.cs" />
- <Compile Include="System.IO\FAMWatcher.cs" />
- <Compile Include="System.IO\FileAction.cs" />
- <Compile Include="System.IO\FileSystemWatcher.cs" />
- <Compile Include="System.IO\IFileWatcher.cs" />
- <Compile Include="System.IO\KeventWatcher.cs" />
- <Compile Include="System.IO\NullFileWatcher.cs" />
- <Compile Include="System.IO\SearchPattern.cs" />
- <Compile Include="System.Media\AudioData.cs" />
- <Compile Include="System.Media\AudioDevice.cs" />
- <Compile Include="System.Media\SoundPlayer.cs" />
- <Compile Include="System.Media\SystemSound.cs" />
- <Compile Include="System.Media\SystemSounds.cs" />
- <Compile Include="System.Media\Win32SoundPlayer.cs" />
- <Compile Include="System.Net.Configuration\AuthenticationModuleElement.cs" />
- <Compile Include="System.Net.Configuration\AuthenticationModuleElementCollection.cs" />
- <Compile Include="System.Net.Configuration\AuthenticationModulesSection.cs" />
- <Compile Include="System.Net.Configuration\BypassElement.cs" />
- <Compile Include="System.Net.Configuration\BypassElementCollection.cs" />
- <Compile Include="System.Net.Configuration\ConnectionManagementElement.cs" />
- <Compile Include="System.Net.Configuration\ConnectionManagementElementCollection.cs" />
- <Compile Include="System.Net.Configuration\ConnectionManagementHandler.cs" />
- <Compile Include="System.Net.Configuration\ConnectionManagementSection.cs" />
- <Compile Include="System.Net.Configuration\DefaultProxyHandler.cs" />
- <Compile Include="System.Net.Configuration\DefaultProxySection.cs" />
- <Compile Include="System.Net.Configuration\FtpCachePolicyElement.cs" />
- <Compile Include="System.Net.Configuration\HttpCachePolicyElement.cs" />
- <Compile Include="System.Net.Configuration\HttpWebRequestElement.cs" />
- <Compile Include="System.Net.Configuration\Ipv6Element.cs" />
- <Compile Include="System.Net.Configuration\MailSettingsSectionGroup.cs" />
- <Compile Include="System.Net.Configuration\ModuleElement.cs" />
- <Compile Include="System.Net.Configuration\NetAuthenticationModuleHandler.cs" />
- <Compile Include="System.Net.Configuration\NetConfigurationHandler.cs" />
- <Compile Include="System.Net.Configuration\NetSectionGroup.cs" />
- <Compile Include="System.Net.Configuration\PerformanceCountersElement.cs" />
- <Compile Include="System.Net.Configuration\ProxyElement.cs" />
- <Compile Include="System.Net.Configuration\RequestCachingSection.cs" />
- <Compile Include="System.Net.Configuration\ServicePointManagerElement.cs" />
- <Compile Include="System.Net.Configuration\SettingsSection.cs" />
- <Compile Include="System.Net.Configuration\SmtpNetworkElement.cs" />
- <Compile Include="System.Net.Configuration\SmtpSection.cs" />
- <Compile Include="System.Net.Configuration\SmtpSpecifiedPickupDirectoryElement.cs" />
- <Compile Include="System.Net.Configuration\SocketElement.cs" />
- <Compile Include="System.Net.Configuration\WebProxyScriptElement.cs" />
- <Compile Include="System.Net.Configuration\WebRequestModuleElement.cs" />
- <Compile Include="System.Net.Configuration\WebRequestModuleElementCollection.cs" />
- <Compile Include="System.Net.Configuration\WebRequestModuleHandler.cs" />
- <Compile Include="System.Net.Configuration\WebRequestModulesSection.cs" />
- <Compile Include="System.Net.Mail\SmtpClient.cs" />
- <Compile Include="System.Net.Mail\SmtpPermission.cs" />
- <Compile Include="System.Net.Mail\SmtpPermissionAttribute.cs" />
- <Compile Include="System.Net.NetworkInformation\AixIPInterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\AixIPv4InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\AixIPv4InterfaceStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\AixNetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\AixNetworkInterfaceMarshal.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxIPInterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxIPv4InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxIPv4InterfaceStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxNetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxNetworkInterfaceMarshal.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxUnicastIPAddressInformation.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsIPInterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsIPv4InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsIPv4InterfaceStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsNetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsNetworkInterfaceMarshal.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIPGlobalProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIPGlobalStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIPInterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIPv4InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIcmpV4Statistics.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIcmpV6Statistics.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixNetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixNetworkInterfaceFactory.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixTcpStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixUdpStatistics.cs" />
- <Compile Include="System.Net.Security\SslStream.cs" />
- <Compile Include="System.Net\AuthenticationManager.cs" />
- <Compile Include="System.Net\BufferedReadStream.cs" />
- <Compile Include="System.Net\ChunkedInputStream.cs" />
- <Compile Include="System.Net\ContentDecodeStream.cs" />
- <Compile Include="System.Net\DnsAsyncResult.cs" />
- <Compile Include="System.Net\DnsPermission.cs" />
- <Compile Include="System.Net\DnsPermissionAttribute.cs" />
- <Compile Include="System.Net\EndPointListener.cs" />
- <Compile Include="System.Net\EndPointManager.cs" />
- <Compile Include="System.Net\FixedSizeReadStream.cs" />
- <Compile Include="System.Net\HttpConnection.cs" />
- <Compile Include="System.Net\HttpListener.Mono.cs" />
- <Compile Include="System.Net\HttpListener.cs" />
- <Compile Include="System.Net\HttpListenerBasicIdentity.cs" />
- <Compile Include="System.Net\HttpListenerContext.cs" />
- <Compile Include="System.Net\HttpListenerPrefixCollection.cs" />
- <Compile Include="System.Net\HttpListenerRequest.cs" />
- <Compile Include="System.Net\HttpListenerResponse.cs" />
- <Compile Include="System.Net\HttpListenerTimeoutManager.cs" />
- <Compile Include="System.Net\HttpWebRequest.cs" />
- <Compile Include="System.Net\HttpWebResponse.cs" />
- <Compile Include="System.Net\ListenerAsyncResult.cs" />
- <Compile Include="System.Net\MacProxy.cs" />
- <Compile Include="System.Net\MonoChunkStream.cs" />
- <Compile Include="System.Net\NtlmClient.cs" />
- <Compile Include="System.Net\ResponseStream.cs" />
- <Compile Include="System.Net\ServicePoint.cs" />
- <Compile Include="System.Net\ServicePointManager.cs" />
- <Compile Include="System.Net\ServicePointManager.extra.cs" />
- <Compile Include="System.Net\ServicePointScheduler.cs" />
- <Compile Include="System.Net\WebCompletionSource.cs" />
- <Compile Include="System.Net\WebConnection.cs" />
- <Compile Include="System.Net\WebConnectionStream.cs" />
- <Compile Include="System.Net\WebConnectionTunnel.cs" />
- <Compile Include="System.Net\WebOperation.cs" />
- <Compile Include="System.Net\WebReadStream.cs" />
- <Compile Include="System.Net\WebRequestStream.cs" />
- <Compile Include="System.Net\WebResponseStream.cs" />
- <Compile Include="System.Runtime.InteropServices\StandardOleMarshalObject.cs" />
- <Compile Include="System.Security.Cryptography.X509Certificates\OSX509Certificates.cs" />
- <Compile Include="System.Security.Permissions\PermissionHelper.cs" />
- <Compile Include="System.Security.Permissions\ResourcePermissionBase.cs" />
- <Compile Include="System.Security.Permissions\ResourcePermissionBaseEntry.cs" />
- <Compile Include="System.Security.Permissions\StorePermission.cs" />
- <Compile Include="System.Security.Permissions\StorePermissionAttribute.cs" />
- <Compile Include="System.Security.Permissions\StorePermissionFlags.cs" />
- <Compile Include="System.Web\AspNetHostingPermission.cs" />
- <Compile Include="System.Web\AspNetHostingPermissionAttribute.cs" />
- <Compile Include="System.Web\AspNetHostingPermissionLevel.cs" />
- <Compile Include="System\MonoToolsLocator.cs" />
- <Compile Include="corefx\Unix\Interop.Read.cs" />
- <Compile Include="corefx\Unix\Interop.cs" />
- </ItemGroup>
- </When>
- <When Condition="'$(HostPlatform)' == 'macos'">
- <ItemGroup>
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\OSX\Interop.CoreFoundation.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\OSX\Interop.EventStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\OSX\Interop.Libraries.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\OSX\Interop.RunLoop.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\Interop.Errors.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\Interop.IOErrors.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\Interop.Libraries.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Native\Interop.RealPath.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Native\Interop.Sync.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Net.Security.Native\Interop.GssApiException.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Net.Security.Native\Interop.GssBuffer.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Net.Security.Native\Interop.NetSecurityNative.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Microsoft\Win32\SafeHandles\GssSafeHandles.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Microsoft\Win32\SafeHandles\SafeCreateHandle.OSX.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Microsoft\Win32\SafeHandles\SafeEventStreamHandle.OSX.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\CSharpHelpers.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\CodeDom\CodeObject.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\CodeDom\CodeTypeReference.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\CodeDom\CodeTypeReferenceCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\IO\TempFileCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\ContextAwareResult.OSX.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\ContextAwareResult.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\ContextFlagsAdapterPal.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\HttpValidationHelpers.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\CertificateHelper.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\NegotiateStreamPal.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\SslClientAuthenticationOptionsExtensions.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeDeleteContext.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeDeleteNegoContext.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeFreeCredentials.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeFreeNegoCredentials.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\TlsStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\Microsoft\CSharp\CSharpCodeGenerator.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\Microsoft\CSharp\CSharpCodeProvider.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\Microsoft\CSharp\CSharpMemberAttributeConverter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\Microsoft\CSharp\CSharpModifierAttributeConverter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\Microsoft\CSharp\CSharpTypeAttributeConverter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\Microsoft\VisualBasic\VBCodeGenerator.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\Microsoft\VisualBasic\VBCodeProvider.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\Microsoft\VisualBasic\VBMemberAttributeConverter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\Microsoft\VisualBasic\VBModiferAttributeConverter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\Microsoft\VisualBasic\VBTypeAttributeConverter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeArgumentReferenceExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeArrayCreateExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeArrayIndexerExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeAssignStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeAttachEventStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeAttributeArgument.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeAttributeArgumentCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeAttributeDeclaration.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeAttributeDeclarationCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeBaseReferenceExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeBinaryOperatorExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeBinaryOperatorType.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeCastExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeCatchClause.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeCatchClauseCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeChecksumPragma.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeComment.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeCommentStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeCommentStatementCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeCompileUnit.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeConditionStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeConstructor.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeDefaultValueExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeDelegateCreateExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeDelegateInvokeExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeDirectionExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeDirective.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeDirectiveCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeEntryPointMethod.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeEventReferenceExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeExpressionCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeExpressionStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeFieldReferenceExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeGotoStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeIndexerExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeIterationStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeLabeledStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeLinePragma.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeMemberEvent.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeMemberField.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeMemberMethod.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeMemberProperty.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeMethodInvokeExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeMethodReturnStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeNamespace.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeNamespaceCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeNamespaceImport.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeNamespaceImportCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeObjectCreateExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeParameterDeclarationExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeParameterDeclarationExpressionCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodePrimitiveExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodePropertyReferenceExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodePropertySetValueReferenceExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeRegionDirective.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeRegionMode.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeRemoveEventStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeSnippetCompileUnit.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeSnippetExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeSnippetStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeSnippetTypeMember.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeStatementCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeThisReferenceExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeThrowExceptionStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeTryCatchFinallyStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeTypeConstructor.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeTypeDeclaration.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeTypeDeclarationCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeTypeDelegate.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeTypeMember.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeTypeMemberCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeTypeOfExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeTypeParameter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeTypeParameterCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeTypeReferenceExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeVariableDeclarationStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeVariableReferenceExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CodeCompiler.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CodeDomProvider.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CodeGenerator.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CodeGeneratorOptions.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CodeParser.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CodeValidator.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CompilerError.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CompilerErrorCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CompilerInfo.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CompilerParameters.Evidence.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CompilerParameters.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CompilerResults.Evidence.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CompilerResults.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\ExposedTabStringIndentedTextWriter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\GeneratorSupport.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\ICodeCompiler.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\ICodeGenerator.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\ICodeParser.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\LanguageOptions.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\FieldDirection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\MemberAttributes.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\codemethodreferenceexpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\Collections\Specialized\FixedStringLookup.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.IO.FileSystem.Watcher\src\System\IO\FileSystemWatcher.OSX.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.HttpListener\src\System\Net\WebSockets\HttpListenerWebSocketContext.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\CommandStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpControlStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpDataStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpWebRequest.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpWebResponse.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\NetworkStreamWrapper.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslApplicationProtocol.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslAuthenticationOptions.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslClientAuthenticationOptions.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslServerAuthenticationOptions.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\CompiledRegexRunner.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\CompiledRegexRunnerFactory.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\RegexCompiler.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\RegexLWCGCompiler.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\ConsoleTraceListener.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\FilterElement.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\PerfCounterSection.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\SourceElementsCollection.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\SwitchElementsCollection.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\SystemDiagnosticsSection.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\TraceSection.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\TypedElement.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\XmlWriterTraceListener.cs" />
- <Compile Include="..\referencesource\System\misc\PrivilegedConfigurationManager.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\TCPClient.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\TCPListener.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\UDPClient.cs" />
- <Compile Include="Internal.Cryptography\OidLookup.Managed.cs" />
- <Compile Include="Microsoft.CSharp\CSharpCodeGenerator.cs" />
- <Compile Include="Microsoft.VisualBasic\VBCodeGenerator.cs" />
- <Compile Include="Microsoft.Win32\IntranetZoneCredentialPolicy.cs" />
- <Compile Include="Microsoft.Win32\PowerModeChangedEventArgs.cs" />
- <Compile Include="Microsoft.Win32\PowerModeChangedEventHandler.cs" />
- <Compile Include="Microsoft.Win32\PowerModes.cs" />
- <Compile Include="Microsoft.Win32\SessionEndReasons.cs" />
- <Compile Include="Microsoft.Win32\SessionEndedEventArgs.cs" />
- <Compile Include="Microsoft.Win32\SessionEndedEventHandler.cs" />
- <Compile Include="Microsoft.Win32\SessionEndingEventArgs.cs" />
- <Compile Include="Microsoft.Win32\SessionEndingEventHandler.cs" />
- <Compile Include="Microsoft.Win32\SessionSwitchEventArgs.cs" />
- <Compile Include="Microsoft.Win32\SessionSwitchEventHandler.cs" />
- <Compile Include="Microsoft.Win32\SessionSwitchReason.cs" />
- <Compile Include="Microsoft.Win32\SystemEvents.cs" />
- <Compile Include="Microsoft.Win32\TimerElapsedEventArgs.cs" />
- <Compile Include="Microsoft.Win32\TimerElapsedEventHandler.cs" />
- <Compile Include="Microsoft.Win32\UserPreferenceCategory.cs" />
- <Compile Include="Microsoft.Win32\UserPreferenceChangedEventArgs.cs" />
- <Compile Include="Microsoft.Win32\UserPreferenceChangedEventHandler.cs" />
- <Compile Include="Microsoft.Win32\UserPreferenceChangingEventArgs.cs" />
- <Compile Include="Microsoft.Win32\UserPreferenceChangingEventHandler.cs" />
- <Compile Include="Mono.AppleTls\AppleCertificateHelper.cs" />
- <Compile Include="Mono.AppleTls\AppleTlsContext.cs" />
- <Compile Include="Mono.AppleTls\AppleTlsProvider.cs" />
- <Compile Include="Mono.AppleTls\AppleTlsStream.cs" />
- <Compile Include="Mono.AppleTls\Enums.cs" />
- <Compile Include="Mono.AppleTls\MonoCertificatePal.OSX.cs" />
- <Compile Include="Mono.AppleTls\MonoCertificatePal.cs" />
- <Compile Include="Mono.AppleTls\Policy.cs" />
- <Compile Include="Mono.AppleTls\SafeHandles.Mono.cs" />
- <Compile Include="Mono.AppleTls\SafeHandles.cs" />
- <Compile Include="Mono.AppleTls\SecureTransport.cs" />
- <Compile Include="Mono.AppleTls\SslConnection.cs" />
- <Compile Include="Mono.AppleTls\Trust.cs" />
- <Compile Include="Mono.AppleTls\X509CertificateImplApple.cs" />
- <Compile Include="Mono.AppleTls\X509PalImpl.Apple.cs" />
- <Compile Include="Mono.Http\NtlmClient.cs" />
- <Compile Include="Mono.Net.Dns\DnsClass.cs" />
- <Compile Include="Mono.Net.Dns\DnsHeader.cs" />
- <Compile Include="Mono.Net.Dns\DnsOpCode.cs" />
- <Compile Include="Mono.Net.Dns\DnsPacket.cs" />
- <Compile Include="Mono.Net.Dns\DnsQClass.cs" />
- <Compile Include="Mono.Net.Dns\DnsQType.cs" />
- <Compile Include="Mono.Net.Dns\DnsQuery.cs" />
- <Compile Include="Mono.Net.Dns\DnsQuestion.cs" />
- <Compile Include="Mono.Net.Dns\DnsRCode.cs" />
- <Compile Include="Mono.Net.Dns\DnsResourceRecord.cs" />
- <Compile Include="Mono.Net.Dns\DnsResourceRecordA.cs" />
- <Compile Include="Mono.Net.Dns\DnsResourceRecordAAAA.cs" />
- <Compile Include="Mono.Net.Dns\DnsResourceRecordCName.cs" />
- <Compile Include="Mono.Net.Dns\DnsResourceRecordIPAddress.cs" />
- <Compile Include="Mono.Net.Dns\DnsResourceRecordPTR.cs" />
- <Compile Include="Mono.Net.Dns\DnsResponse.cs" />
- <Compile Include="Mono.Net.Dns\DnsType.cs" />
- <Compile Include="Mono.Net.Dns\DnsUtil.cs" />
- <Compile Include="Mono.Net.Dns\ResolverAsyncOperation.cs" />
- <Compile Include="Mono.Net.Dns\ResolverError.cs" />
- <Compile Include="Mono.Net.Dns\SimpleResolver.cs" />
- <Compile Include="Mono.Net.Dns\SimpleResolverEventArgs.cs" />
- <Compile Include="Mono.Net.Security\AsyncProtocolRequest.cs" />
- <Compile Include="Mono.Net.Security\CallbackHelpers.cs" />
- <Compile Include="Mono.Net.Security\ChainValidationHelper.cs" />
- <Compile Include="Mono.Net.Security\LegacySslStream.cs" />
- <Compile Include="Mono.Net.Security\LegacyTlsProvider.cs" />
- <Compile Include="Mono.Net.Security\MobileAuthenticatedStream.cs" />
- <Compile Include="Mono.Net.Security\MobileTlsContext.cs" />
- <Compile Include="Mono.Net.Security\MonoSslAuthenticationOptions.cs" />
- <Compile Include="Mono.Net.Security\MonoSslClientAuthenticationOptions.cs" />
- <Compile Include="Mono.Net.Security\MonoSslServerAuthenticationOptions.cs" />
- <Compile Include="Mono.Net.Security\MonoTlsProviderFactory.cs" />
- <Compile Include="Mono.Net.Security\MonoTlsStream.cs" />
- <Compile Include="Mono.Net.Security\NoReflectionHelper.cs" />
- <Compile Include="Mono.Net.Security\SystemCertificateValidator.cs" />
- <Compile Include="ReferenceSources\BinaryCompatibility.cs" />
- <Compile Include="ReferenceSources\ConfigurationManagerInternalFactory.cs" />
- <Compile Include="System.CodeDom.Compiler\CodeDomConfigurationHandler.cs" />
- <Compile Include="System.CodeDom.Compiler\Compiler.cs" />
- <Compile Include="System.CodeDom.Compiler\CompilerCollection.cs" />
- <Compile Include="System.CodeDom.Compiler\CompilerProviderOption.cs" />
- <Compile Include="System.CodeDom.Compiler\CompilerProviderOptionsCollection.cs" />
- <Compile Include="System.CodeDom.Compiler\Executor.cs" />
- <Compile Include="System.Configuration\AppSettingsReader.cs" />
- <Compile Include="System.Configuration\ApplicationScopedSettingAttribute.cs" />
- <Compile Include="System.Configuration\ApplicationSettingsBase.cs" />
- <Compile Include="System.Configuration\ApplicationSettingsGroup.cs" />
- <Compile Include="System.Configuration\ClientSettingsSection.cs" />
- <Compile Include="System.Configuration\ConfigHelper.cs" />
- <Compile Include="System.Configuration\ConfigXmlDocument.cs" />
- <Compile Include="System.Configuration\ConfigurationException.cs" />
- <Compile Include="System.Configuration\ConfigurationSettings.cs" />
- <Compile Include="System.Configuration\CustomizableFileSettingsProvider.cs" />
- <Compile Include="System.Configuration\DefaultSettingValueAttribute.cs" />
- <Compile Include="System.Configuration\DictionarySectionHandler.cs" />
- <Compile Include="System.Configuration\IApplicationSettingsProvider.cs" />
- <Compile Include="System.Configuration\IConfigXmlNode.cs" />
- <Compile Include="System.Configuration\IConfigurationSectionHandler.cs" />
- <Compile Include="System.Configuration\IConfigurationSystem.cs" />
- <Compile Include="System.Configuration\IPersistComponentSettings.cs" />
- <Compile Include="System.Configuration\ISettingsProviderService.cs" />
- <Compile Include="System.Configuration\IdnElement.cs" />
- <Compile Include="System.Configuration\IgnoreSectionHandler.cs" />
- <Compile Include="System.Configuration\IriParsingElement.cs" />
- <Compile Include="System.Configuration\LocalFileSettingsProvider.cs" />
- <Compile Include="System.Configuration\NameValueFileSectionHandler.cs" />
- <Compile Include="System.Configuration\NameValueSectionHandler.cs" />
- <Compile Include="System.Configuration\NoSettingsVersionUpgradeAttribute.cs" />
- <Compile Include="System.Configuration\SettingAttribute.cs" />
- <Compile Include="System.Configuration\SettingChangingEventArgs.cs" />
- <Compile Include="System.Configuration\SettingChangingEventHandler.cs" />
- <Compile Include="System.Configuration\SettingElement.cs" />
- <Compile Include="System.Configuration\SettingElementCollection.cs" />
- <Compile Include="System.Configuration\SettingValueElement.cs" />
- <Compile Include="System.Configuration\SettingsAttributeDictionary.cs" />
- <Compile Include="System.Configuration\SettingsBase.cs" />
- <Compile Include="System.Configuration\SettingsContext.cs" />
- <Compile Include="System.Configuration\SettingsDescriptionAttribute.cs" />
- <Compile Include="System.Configuration\SettingsGroupDescriptionAttribute.cs" />
- <Compile Include="System.Configuration\SettingsGroupNameAttribute.cs" />
- <Compile Include="System.Configuration\SettingsLoadedEventArgs.cs" />
- <Compile Include="System.Configuration\SettingsLoadedEventHandler.cs" />
- <Compile Include="System.Configuration\SettingsManageability.cs" />
- <Compile Include="System.Configuration\SettingsManageabilityAttribute.cs" />
- <Compile Include="System.Configuration\SettingsProperty.cs" />
- <Compile Include="System.Configuration\SettingsPropertyCollection.cs" />
- <Compile Include="System.Configuration\SettingsPropertyIsReadOnlyException.cs" />
- <Compile Include="System.Configuration\SettingsPropertyNotFoundException.cs" />
- <Compile Include="System.Configuration\SettingsPropertyValue.cs" />
- <Compile Include="System.Configuration\SettingsPropertyValueCollection.cs" />
- <Compile Include="System.Configuration\SettingsPropertyWrongTypeException.cs" />
- <Compile Include="System.Configuration\SettingsProvider.cs" />
- <Compile Include="System.Configuration\SettingsProviderAttribute.cs" />
- <Compile Include="System.Configuration\SettingsProviderCollection.cs" />
- <Compile Include="System.Configuration\SettingsSavingEventHandler.cs" />
- <Compile Include="System.Configuration\SettingsSerializeAs.cs" />
- <Compile Include="System.Configuration\SettingsSerializeAsAttribute.cs" />
- <Compile Include="System.Configuration\SingleTagSectionHandler.cs" />
- <Compile Include="System.Configuration\SpecialSetting.cs" />
- <Compile Include="System.Configuration\SpecialSettingAttribute.cs" />
- <Compile Include="System.Configuration\UriSection.cs" />
- <Compile Include="System.Configuration\UserScopedSettingAttribute.cs" />
- <Compile Include="System.Configuration\UserSettingsGroup.cs" />
- <Compile Include="System.Diagnostics\AlphabeticalEnumConverter.cs" />
- <Compile Include="System.Diagnostics\CounterCreationData.cs" />
- <Compile Include="System.Diagnostics\CounterCreationDataCollection.cs" />
- <Compile Include="System.Diagnostics\CounterSample.cs" />
- <Compile Include="System.Diagnostics\CounterSampleCalculator.cs" />
- <Compile Include="System.Diagnostics\DiagnosticsConfigurationHandler.cs" />
- <Compile Include="System.Diagnostics\EntryWrittenEventArgs.cs" />
- <Compile Include="System.Diagnostics\EntryWrittenEventHandler.cs" />
- <Compile Include="System.Diagnostics\EventInstance.cs" />
- <Compile Include="System.Diagnostics\EventLog.cs" />
- <Compile Include="System.Diagnostics\EventLogEntry.cs" />
- <Compile Include="System.Diagnostics\EventLogEntryCollection.cs" />
- <Compile Include="System.Diagnostics\EventLogEntryType.cs" />
- <Compile Include="System.Diagnostics\EventLogImpl.cs" />
- <Compile Include="System.Diagnostics\EventLogInstaller.cs" />
- <Compile Include="System.Diagnostics\EventLogPermission.cs" />
- <Compile Include="System.Diagnostics\EventLogPermissionAccess.cs" />
- <Compile Include="System.Diagnostics\EventLogPermissionAttribute.cs" />
- <Compile Include="System.Diagnostics\EventLogPermissionEntry.cs" />
- <Compile Include="System.Diagnostics\EventLogPermissionEntryCollection.cs" />
- <Compile Include="System.Diagnostics\EventLogTraceListener.cs" />
- <Compile Include="System.Diagnostics\EventSourceCreationData.cs" />
- <Compile Include="System.Diagnostics\ICollectData.cs" />
- <Compile Include="System.Diagnostics\InstanceData.cs" />
- <Compile Include="System.Diagnostics\InstanceDataCollection.cs" />
- <Compile Include="System.Diagnostics\InstanceDataCollectionCollection.cs" />
- <Compile Include="System.Diagnostics\LocalFileEventLog.cs" />
- <Compile Include="System.Diagnostics\NullEventLog.cs" />
- <Compile Include="System.Diagnostics\OverflowAction.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounter.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounterCategory.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounterCategoryType.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounterInstaller.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounterInstanceLifetime.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounterManager.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounterPermission.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounterPermissionAccess.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounterPermissionAttribute.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounterPermissionEntry.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounterPermissionEntryCollection.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounterType.cs" />
- <Compile Include="System.Diagnostics\TraceSourceInfo.cs" />
- <Compile Include="System.Diagnostics\Win32EventLog.cs" />
- <Compile Include="System.IO.Ports\Handshake.cs" />
- <Compile Include="System.IO.Ports\ISerialStream.cs" />
- <Compile Include="System.IO.Ports\Parity.cs" />
- <Compile Include="System.IO.Ports\SerialData.cs" />
- <Compile Include="System.IO.Ports\SerialError.cs" />
- <Compile Include="System.IO.Ports\SerialErrorEventArgs.cs" />
- <Compile Include="System.IO.Ports\SerialPinChange.cs" />
- <Compile Include="System.IO.Ports\SerialPinChangedEventArgs.cs" />
- <Compile Include="System.IO.Ports\SerialPort.cs" />
- <Compile Include="System.IO.Ports\SerialPortStream.cs" />
- <Compile Include="System.IO.Ports\SerialReceivedEventArgs.cs" />
- <Compile Include="System.IO.Ports\SerialSignal.cs" />
- <Compile Include="System.IO.Ports\StopBits.cs" />
- <Compile Include="System.IO.Ports\WinSerialStream.cs" />
- <Compile Include="System.IO\CoreFXFileSystemWatcherProxy.cs" />
- <Compile Include="System.IO\DefaultWatcher.cs" />
- <Compile Include="System.IO\FAMWatcher.cs" />
- <Compile Include="System.IO\FileAction.cs" />
- <Compile Include="System.IO\FileSystemWatcher.cs" />
- <Compile Include="System.IO\IFileWatcher.cs" />
- <Compile Include="System.IO\KeventWatcher.cs" />
- <Compile Include="System.IO\NullFileWatcher.cs" />
- <Compile Include="System.IO\SearchPattern.cs" />
- <Compile Include="System.Media\AudioData.cs" />
- <Compile Include="System.Media\AudioDevice.cs" />
- <Compile Include="System.Media\SoundPlayer.cs" />
- <Compile Include="System.Media\SystemSound.cs" />
- <Compile Include="System.Media\SystemSounds.cs" />
- <Compile Include="System.Media\Win32SoundPlayer.cs" />
- <Compile Include="System.Net.Configuration\AuthenticationModuleElement.cs" />
- <Compile Include="System.Net.Configuration\AuthenticationModuleElementCollection.cs" />
- <Compile Include="System.Net.Configuration\AuthenticationModulesSection.cs" />
- <Compile Include="System.Net.Configuration\BypassElement.cs" />
- <Compile Include="System.Net.Configuration\BypassElementCollection.cs" />
- <Compile Include="System.Net.Configuration\ConnectionManagementElement.cs" />
- <Compile Include="System.Net.Configuration\ConnectionManagementElementCollection.cs" />
- <Compile Include="System.Net.Configuration\ConnectionManagementHandler.cs" />
- <Compile Include="System.Net.Configuration\ConnectionManagementSection.cs" />
- <Compile Include="System.Net.Configuration\DefaultProxyHandler.cs" />
- <Compile Include="System.Net.Configuration\DefaultProxySection.cs" />
- <Compile Include="System.Net.Configuration\FtpCachePolicyElement.cs" />
- <Compile Include="System.Net.Configuration\HttpCachePolicyElement.cs" />
- <Compile Include="System.Net.Configuration\HttpWebRequestElement.cs" />
- <Compile Include="System.Net.Configuration\Ipv6Element.cs" />
- <Compile Include="System.Net.Configuration\MailSettingsSectionGroup.cs" />
- <Compile Include="System.Net.Configuration\ModuleElement.cs" />
- <Compile Include="System.Net.Configuration\NetAuthenticationModuleHandler.cs" />
- <Compile Include="System.Net.Configuration\NetConfigurationHandler.cs" />
- <Compile Include="System.Net.Configuration\NetSectionGroup.cs" />
- <Compile Include="System.Net.Configuration\PerformanceCountersElement.cs" />
- <Compile Include="System.Net.Configuration\ProxyElement.cs" />
- <Compile Include="System.Net.Configuration\RequestCachingSection.cs" />
- <Compile Include="System.Net.Configuration\ServicePointManagerElement.cs" />
- <Compile Include="System.Net.Configuration\SettingsSection.cs" />
- <Compile Include="System.Net.Configuration\SmtpNetworkElement.cs" />
- <Compile Include="System.Net.Configuration\SmtpSection.cs" />
- <Compile Include="System.Net.Configuration\SmtpSpecifiedPickupDirectoryElement.cs" />
- <Compile Include="System.Net.Configuration\SocketElement.cs" />
- <Compile Include="System.Net.Configuration\WebProxyScriptElement.cs" />
- <Compile Include="System.Net.Configuration\WebRequestModuleElement.cs" />
- <Compile Include="System.Net.Configuration\WebRequestModuleElementCollection.cs" />
- <Compile Include="System.Net.Configuration\WebRequestModuleHandler.cs" />
- <Compile Include="System.Net.Configuration\WebRequestModulesSection.cs" />
- <Compile Include="System.Net.Mail\SmtpClient.cs" />
- <Compile Include="System.Net.Mail\SmtpPermission.cs" />
- <Compile Include="System.Net.Mail\SmtpPermissionAttribute.cs" />
- <Compile Include="System.Net.NetworkInformation\AixIPInterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\AixIPv4InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\AixIPv4InterfaceStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\AixNetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\AixNetworkInterfaceMarshal.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxIPInterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxIPv4InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxIPv4InterfaceStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxNetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxNetworkInterfaceMarshal.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxUnicastIPAddressInformation.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsIPInterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsIPv4InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsIPv4InterfaceStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsNetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsNetworkInterfaceMarshal.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIPGlobalProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIPGlobalStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIPInterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIPv4InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIcmpV4Statistics.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIcmpV6Statistics.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixNetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixNetworkInterfaceFactory.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixTcpStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixUdpStatistics.cs" />
- <Compile Include="System.Net.Security\SslStream.cs" />
- <Compile Include="System.Net\AuthenticationManager.cs" />
- <Compile Include="System.Net\BufferedReadStream.cs" />
- <Compile Include="System.Net\ChunkedInputStream.cs" />
- <Compile Include="System.Net\ContentDecodeStream.cs" />
- <Compile Include="System.Net\DnsAsyncResult.cs" />
- <Compile Include="System.Net\DnsPermission.cs" />
- <Compile Include="System.Net\DnsPermissionAttribute.cs" />
- <Compile Include="System.Net\EndPointListener.cs" />
- <Compile Include="System.Net\EndPointManager.cs" />
- <Compile Include="System.Net\FixedSizeReadStream.cs" />
- <Compile Include="System.Net\HttpConnection.cs" />
- <Compile Include="System.Net\HttpListener.Mono.cs" />
- <Compile Include="System.Net\HttpListener.cs" />
- <Compile Include="System.Net\HttpListenerBasicIdentity.cs" />
- <Compile Include="System.Net\HttpListenerContext.cs" />
- <Compile Include="System.Net\HttpListenerPrefixCollection.cs" />
- <Compile Include="System.Net\HttpListenerRequest.cs" />
- <Compile Include="System.Net\HttpListenerResponse.cs" />
- <Compile Include="System.Net\HttpListenerTimeoutManager.cs" />
- <Compile Include="System.Net\HttpWebRequest.cs" />
- <Compile Include="System.Net\HttpWebResponse.cs" />
- <Compile Include="System.Net\ListenerAsyncResult.cs" />
- <Compile Include="System.Net\MacProxy.cs" />
- <Compile Include="System.Net\MonoChunkStream.cs" />
- <Compile Include="System.Net\NtlmClient.cs" />
- <Compile Include="System.Net\ResponseStream.cs" />
- <Compile Include="System.Net\ServicePoint.cs" />
- <Compile Include="System.Net\ServicePointManager.cs" />
- <Compile Include="System.Net\ServicePointManager.extra.cs" />
- <Compile Include="System.Net\ServicePointScheduler.cs" />
- <Compile Include="System.Net\WebCompletionSource.cs" />
- <Compile Include="System.Net\WebConnection.cs" />
- <Compile Include="System.Net\WebConnectionStream.cs" />
- <Compile Include="System.Net\WebConnectionTunnel.cs" />
- <Compile Include="System.Net\WebOperation.cs" />
- <Compile Include="System.Net\WebReadStream.cs" />
- <Compile Include="System.Net\WebRequestStream.cs" />
- <Compile Include="System.Net\WebResponseStream.cs" />
- <Compile Include="System.Runtime.InteropServices\StandardOleMarshalObject.cs" />
- <Compile Include="System.Security.Cryptography.X509Certificates\OSX509Certificates.cs" />
- <Compile Include="System.Security.Permissions\PermissionHelper.cs" />
- <Compile Include="System.Security.Permissions\ResourcePermissionBase.cs" />
- <Compile Include="System.Security.Permissions\ResourcePermissionBaseEntry.cs" />
- <Compile Include="System.Security.Permissions\StorePermission.cs" />
- <Compile Include="System.Security.Permissions\StorePermissionAttribute.cs" />
- <Compile Include="System.Security.Permissions\StorePermissionFlags.cs" />
- <Compile Include="System.Web\AspNetHostingPermission.cs" />
- <Compile Include="System.Web\AspNetHostingPermissionAttribute.cs" />
- <Compile Include="System.Web\AspNetHostingPermissionLevel.cs" />
- <Compile Include="System\MonoToolsLocator.cs" />
- <Compile Include="corefx\Unix\Interop.Read.cs" />
- <Compile Include="corefx\Unix\Interop.cs" />
- </ItemGroup>
- </When>
- <When Condition="'$(HostPlatform)' == 'linux'">
- <ItemGroup>
- <Compile Include="..\..\..\external\corefx\src\Common\src\CoreLib\Interop\Unix\System.Native\Interop.ReadDir.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Linux\Interop.Libraries.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Linux\System.Native\Interop.INotify.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\Interop.Errors.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\Interop.IOErrors.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\Interop.Libraries.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Native\Interop.Close.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Native\Interop.FLock.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Native\Interop.Open.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Native\Interop.OpenFlags.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Native\Interop.Poll.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Native\Interop.Stat.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Net.Security.Native\Interop.GssApiException.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Net.Security.Native\Interop.GssBuffer.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Net.Security.Native\Interop.NetSecurityNative.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Microsoft\Win32\SafeHandles\GssSafeHandles.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Microsoft\Win32\SafeHandles\SafeDirectoryHandle.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Microsoft\Win32\SafeHandles\SafeFileHandle.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\CSharpHelpers.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\CodeDom\CodeObject.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\CodeDom\CodeTypeReference.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\CodeDom\CodeTypeReferenceCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\IO\TempFileCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\ContextAwareResult.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\ContextAwareResult.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\ContextFlagsAdapterPal.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\HttpValidationHelpers.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\CertificateHelper.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\NegotiateStreamPal.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\SslClientAuthenticationOptionsExtensions.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeDeleteContext.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeDeleteNegoContext.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeFreeCredentials.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeFreeNegoCredentials.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\TlsStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\Microsoft\CSharp\CSharpCodeGenerator.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\Microsoft\CSharp\CSharpCodeProvider.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\Microsoft\CSharp\CSharpMemberAttributeConverter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\Microsoft\CSharp\CSharpModifierAttributeConverter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\Microsoft\CSharp\CSharpTypeAttributeConverter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\Microsoft\VisualBasic\VBCodeGenerator.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\Microsoft\VisualBasic\VBCodeProvider.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\Microsoft\VisualBasic\VBMemberAttributeConverter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\Microsoft\VisualBasic\VBModiferAttributeConverter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\Microsoft\VisualBasic\VBTypeAttributeConverter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeArgumentReferenceExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeArrayCreateExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeArrayIndexerExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeAssignStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeAttachEventStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeAttributeArgument.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeAttributeArgumentCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeAttributeDeclaration.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeAttributeDeclarationCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeBaseReferenceExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeBinaryOperatorExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeBinaryOperatorType.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeCastExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeCatchClause.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeCatchClauseCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeChecksumPragma.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeComment.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeCommentStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeCommentStatementCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeCompileUnit.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeConditionStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeConstructor.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeDefaultValueExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeDelegateCreateExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeDelegateInvokeExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeDirectionExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeDirective.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeDirectiveCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeEntryPointMethod.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeEventReferenceExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeExpressionCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeExpressionStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeFieldReferenceExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeGotoStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeIndexerExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeIterationStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeLabeledStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeLinePragma.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeMemberEvent.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeMemberField.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeMemberMethod.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeMemberProperty.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeMethodInvokeExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeMethodReturnStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeNamespace.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeNamespaceCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeNamespaceImport.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeNamespaceImportCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeObjectCreateExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeParameterDeclarationExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeParameterDeclarationExpressionCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodePrimitiveExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodePropertyReferenceExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodePropertySetValueReferenceExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeRegionDirective.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeRegionMode.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeRemoveEventStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeSnippetCompileUnit.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeSnippetExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeSnippetStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeSnippetTypeMember.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeStatementCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeThisReferenceExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeThrowExceptionStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeTryCatchFinallyStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeTypeConstructor.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeTypeDeclaration.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeTypeDeclarationCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeTypeDelegate.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeTypeMember.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeTypeMemberCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeTypeOfExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeTypeParameter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeTypeParameterCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeTypeReferenceExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeVariableDeclarationStatement.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\CodeVariableReferenceExpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CodeCompiler.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CodeDomProvider.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CodeGenerator.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CodeGeneratorOptions.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CodeParser.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CodeValidator.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CompilerError.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CompilerErrorCollection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CompilerInfo.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CompilerParameters.Evidence.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CompilerParameters.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CompilerResults.Evidence.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\CompilerResults.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\ExposedTabStringIndentedTextWriter.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\GeneratorSupport.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\ICodeCompiler.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\ICodeGenerator.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\ICodeParser.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\Compiler\LanguageOptions.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\FieldDirection.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\MemberAttributes.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\CodeDom\codemethodreferenceexpression.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.CodeDom\src\System\Collections\Specialized\FixedStringLookup.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.IO.FileSystem.Watcher\src\System\IO\FileSystemWatcher.Linux.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.HttpListener\src\System\Net\WebSockets\HttpListenerWebSocketContext.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\CommandStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpControlStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpDataStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpWebRequest.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpWebResponse.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\NetworkStreamWrapper.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslApplicationProtocol.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslAuthenticationOptions.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslClientAuthenticationOptions.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslServerAuthenticationOptions.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\CompiledRegexRunner.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\CompiledRegexRunnerFactory.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\RegexCompiler.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\RegexLWCGCompiler.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\ConsoleTraceListener.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\FilterElement.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\PerfCounterSection.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\SourceElementsCollection.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\SwitchElementsCollection.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\SystemDiagnosticsSection.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\TraceSection.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\TypedElement.cs" />
- <Compile Include="..\referencesource\System\compmod\system\diagnostics\XmlWriterTraceListener.cs" />
- <Compile Include="..\referencesource\System\misc\PrivilegedConfigurationManager.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\TCPClient.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\TCPListener.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\UDPClient.cs" />
- <Compile Include="Internal.Cryptography\OidLookup.Managed.cs" />
- <Compile Include="Microsoft.CSharp\CSharpCodeGenerator.cs" />
- <Compile Include="Microsoft.VisualBasic\VBCodeGenerator.cs" />
- <Compile Include="Microsoft.Win32\IntranetZoneCredentialPolicy.cs" />
- <Compile Include="Microsoft.Win32\PowerModeChangedEventArgs.cs" />
- <Compile Include="Microsoft.Win32\PowerModeChangedEventHandler.cs" />
- <Compile Include="Microsoft.Win32\PowerModes.cs" />
- <Compile Include="Microsoft.Win32\SessionEndReasons.cs" />
- <Compile Include="Microsoft.Win32\SessionEndedEventArgs.cs" />
- <Compile Include="Microsoft.Win32\SessionEndedEventHandler.cs" />
- <Compile Include="Microsoft.Win32\SessionEndingEventArgs.cs" />
- <Compile Include="Microsoft.Win32\SessionEndingEventHandler.cs" />
- <Compile Include="Microsoft.Win32\SessionSwitchEventArgs.cs" />
- <Compile Include="Microsoft.Win32\SessionSwitchEventHandler.cs" />
- <Compile Include="Microsoft.Win32\SessionSwitchReason.cs" />
- <Compile Include="Microsoft.Win32\SystemEvents.cs" />
- <Compile Include="Microsoft.Win32\TimerElapsedEventArgs.cs" />
- <Compile Include="Microsoft.Win32\TimerElapsedEventHandler.cs" />
- <Compile Include="Microsoft.Win32\UserPreferenceCategory.cs" />
- <Compile Include="Microsoft.Win32\UserPreferenceChangedEventArgs.cs" />
- <Compile Include="Microsoft.Win32\UserPreferenceChangedEventHandler.cs" />
- <Compile Include="Microsoft.Win32\UserPreferenceChangingEventArgs.cs" />
- <Compile Include="Microsoft.Win32\UserPreferenceChangingEventHandler.cs" />
- <Compile Include="Mono.Http\NtlmClient.cs" />
- <Compile Include="Mono.Net.Dns\DnsClass.cs" />
- <Compile Include="Mono.Net.Dns\DnsHeader.cs" />
- <Compile Include="Mono.Net.Dns\DnsOpCode.cs" />
- <Compile Include="Mono.Net.Dns\DnsPacket.cs" />
- <Compile Include="Mono.Net.Dns\DnsQClass.cs" />
- <Compile Include="Mono.Net.Dns\DnsQType.cs" />
- <Compile Include="Mono.Net.Dns\DnsQuery.cs" />
- <Compile Include="Mono.Net.Dns\DnsQuestion.cs" />
- <Compile Include="Mono.Net.Dns\DnsRCode.cs" />
- <Compile Include="Mono.Net.Dns\DnsResourceRecord.cs" />
- <Compile Include="Mono.Net.Dns\DnsResourceRecordA.cs" />
- <Compile Include="Mono.Net.Dns\DnsResourceRecordAAAA.cs" />
- <Compile Include="Mono.Net.Dns\DnsResourceRecordCName.cs" />
- <Compile Include="Mono.Net.Dns\DnsResourceRecordIPAddress.cs" />
- <Compile Include="Mono.Net.Dns\DnsResourceRecordPTR.cs" />
- <Compile Include="Mono.Net.Dns\DnsResponse.cs" />
- <Compile Include="Mono.Net.Dns\DnsType.cs" />
- <Compile Include="Mono.Net.Dns\DnsUtil.cs" />
- <Compile Include="Mono.Net.Dns\ResolverAsyncOperation.cs" />
- <Compile Include="Mono.Net.Dns\ResolverError.cs" />
- <Compile Include="Mono.Net.Dns\SimpleResolver.cs" />
- <Compile Include="Mono.Net.Dns\SimpleResolverEventArgs.cs" />
- <Compile Include="Mono.Net.Security\AsyncProtocolRequest.cs" />
- <Compile Include="Mono.Net.Security\CallbackHelpers.cs" />
- <Compile Include="Mono.Net.Security\ChainValidationHelper.cs" />
- <Compile Include="Mono.Net.Security\LegacySslStream.cs" />
- <Compile Include="Mono.Net.Security\LegacyTlsProvider.cs" />
- <Compile Include="Mono.Net.Security\MobileAuthenticatedStream.cs" />
- <Compile Include="Mono.Net.Security\MobileTlsContext.cs" />
- <Compile Include="Mono.Net.Security\MonoSslAuthenticationOptions.cs" />
- <Compile Include="Mono.Net.Security\MonoSslClientAuthenticationOptions.cs" />
- <Compile Include="Mono.Net.Security\MonoSslServerAuthenticationOptions.cs" />
- <Compile Include="Mono.Net.Security\MonoTlsProviderFactory.cs" />
- <Compile Include="Mono.Net.Security\MonoTlsStream.cs" />
- <Compile Include="Mono.Net.Security\NoReflectionHelper.cs" />
- <Compile Include="Mono.Net.Security\SystemCertificateValidator.cs" />
- <Compile Include="ReferenceSources\BinaryCompatibility.cs" />
- <Compile Include="ReferenceSources\ConfigurationManagerInternalFactory.cs" />
- <Compile Include="System.CodeDom.Compiler\CodeDomConfigurationHandler.cs" />
- <Compile Include="System.CodeDom.Compiler\Compiler.cs" />
- <Compile Include="System.CodeDom.Compiler\CompilerCollection.cs" />
- <Compile Include="System.CodeDom.Compiler\CompilerProviderOption.cs" />
- <Compile Include="System.CodeDom.Compiler\CompilerProviderOptionsCollection.cs" />
- <Compile Include="System.CodeDom.Compiler\Executor.cs" />
- <Compile Include="System.Configuration\AppSettingsReader.cs" />
- <Compile Include="System.Configuration\ApplicationScopedSettingAttribute.cs" />
- <Compile Include="System.Configuration\ApplicationSettingsBase.cs" />
- <Compile Include="System.Configuration\ApplicationSettingsGroup.cs" />
- <Compile Include="System.Configuration\ClientSettingsSection.cs" />
- <Compile Include="System.Configuration\ConfigHelper.cs" />
- <Compile Include="System.Configuration\ConfigXmlDocument.cs" />
- <Compile Include="System.Configuration\ConfigurationException.cs" />
- <Compile Include="System.Configuration\ConfigurationSettings.cs" />
- <Compile Include="System.Configuration\CustomizableFileSettingsProvider.cs" />
- <Compile Include="System.Configuration\DefaultSettingValueAttribute.cs" />
- <Compile Include="System.Configuration\DictionarySectionHandler.cs" />
- <Compile Include="System.Configuration\IApplicationSettingsProvider.cs" />
- <Compile Include="System.Configuration\IConfigXmlNode.cs" />
- <Compile Include="System.Configuration\IConfigurationSectionHandler.cs" />
- <Compile Include="System.Configuration\IConfigurationSystem.cs" />
- <Compile Include="System.Configuration\IPersistComponentSettings.cs" />
- <Compile Include="System.Configuration\ISettingsProviderService.cs" />
- <Compile Include="System.Configuration\IdnElement.cs" />
- <Compile Include="System.Configuration\IgnoreSectionHandler.cs" />
- <Compile Include="System.Configuration\IriParsingElement.cs" />
- <Compile Include="System.Configuration\LocalFileSettingsProvider.cs" />
- <Compile Include="System.Configuration\NameValueFileSectionHandler.cs" />
- <Compile Include="System.Configuration\NameValueSectionHandler.cs" />
- <Compile Include="System.Configuration\NoSettingsVersionUpgradeAttribute.cs" />
- <Compile Include="System.Configuration\SettingAttribute.cs" />
- <Compile Include="System.Configuration\SettingChangingEventArgs.cs" />
- <Compile Include="System.Configuration\SettingChangingEventHandler.cs" />
- <Compile Include="System.Configuration\SettingElement.cs" />
- <Compile Include="System.Configuration\SettingElementCollection.cs" />
- <Compile Include="System.Configuration\SettingValueElement.cs" />
- <Compile Include="System.Configuration\SettingsAttributeDictionary.cs" />
- <Compile Include="System.Configuration\SettingsBase.cs" />
- <Compile Include="System.Configuration\SettingsContext.cs" />
- <Compile Include="System.Configuration\SettingsDescriptionAttribute.cs" />
- <Compile Include="System.Configuration\SettingsGroupDescriptionAttribute.cs" />
- <Compile Include="System.Configuration\SettingsGroupNameAttribute.cs" />
- <Compile Include="System.Configuration\SettingsLoadedEventArgs.cs" />
- <Compile Include="System.Configuration\SettingsLoadedEventHandler.cs" />
- <Compile Include="System.Configuration\SettingsManageability.cs" />
- <Compile Include="System.Configuration\SettingsManageabilityAttribute.cs" />
- <Compile Include="System.Configuration\SettingsProperty.cs" />
- <Compile Include="System.Configuration\SettingsPropertyCollection.cs" />
- <Compile Include="System.Configuration\SettingsPropertyIsReadOnlyException.cs" />
- <Compile Include="System.Configuration\SettingsPropertyNotFoundException.cs" />
- <Compile Include="System.Configuration\SettingsPropertyValue.cs" />
- <Compile Include="System.Configuration\SettingsPropertyValueCollection.cs" />
- <Compile Include="System.Configuration\SettingsPropertyWrongTypeException.cs" />
- <Compile Include="System.Configuration\SettingsProvider.cs" />
- <Compile Include="System.Configuration\SettingsProviderAttribute.cs" />
- <Compile Include="System.Configuration\SettingsProviderCollection.cs" />
- <Compile Include="System.Configuration\SettingsSavingEventHandler.cs" />
- <Compile Include="System.Configuration\SettingsSerializeAs.cs" />
- <Compile Include="System.Configuration\SettingsSerializeAsAttribute.cs" />
- <Compile Include="System.Configuration\SingleTagSectionHandler.cs" />
- <Compile Include="System.Configuration\SpecialSetting.cs" />
- <Compile Include="System.Configuration\SpecialSettingAttribute.cs" />
- <Compile Include="System.Configuration\UriSection.cs" />
- <Compile Include="System.Configuration\UserScopedSettingAttribute.cs" />
- <Compile Include="System.Configuration\UserSettingsGroup.cs" />
- <Compile Include="System.Diagnostics\AlphabeticalEnumConverter.cs" />
- <Compile Include="System.Diagnostics\CounterCreationData.cs" />
- <Compile Include="System.Diagnostics\CounterCreationDataCollection.cs" />
- <Compile Include="System.Diagnostics\CounterSample.cs" />
- <Compile Include="System.Diagnostics\CounterSampleCalculator.cs" />
- <Compile Include="System.Diagnostics\DiagnosticsConfigurationHandler.cs" />
- <Compile Include="System.Diagnostics\EntryWrittenEventArgs.cs" />
- <Compile Include="System.Diagnostics\EntryWrittenEventHandler.cs" />
- <Compile Include="System.Diagnostics\EventInstance.cs" />
- <Compile Include="System.Diagnostics\EventLog.cs" />
- <Compile Include="System.Diagnostics\EventLogEntry.cs" />
- <Compile Include="System.Diagnostics\EventLogEntryCollection.cs" />
- <Compile Include="System.Diagnostics\EventLogEntryType.cs" />
- <Compile Include="System.Diagnostics\EventLogImpl.cs" />
- <Compile Include="System.Diagnostics\EventLogInstaller.cs" />
- <Compile Include="System.Diagnostics\EventLogPermission.cs" />
- <Compile Include="System.Diagnostics\EventLogPermissionAccess.cs" />
- <Compile Include="System.Diagnostics\EventLogPermissionAttribute.cs" />
- <Compile Include="System.Diagnostics\EventLogPermissionEntry.cs" />
- <Compile Include="System.Diagnostics\EventLogPermissionEntryCollection.cs" />
- <Compile Include="System.Diagnostics\EventLogTraceListener.cs" />
- <Compile Include="System.Diagnostics\EventSourceCreationData.cs" />
- <Compile Include="System.Diagnostics\ICollectData.cs" />
- <Compile Include="System.Diagnostics\InstanceData.cs" />
- <Compile Include="System.Diagnostics\InstanceDataCollection.cs" />
- <Compile Include="System.Diagnostics\InstanceDataCollectionCollection.cs" />
- <Compile Include="System.Diagnostics\LocalFileEventLog.cs" />
- <Compile Include="System.Diagnostics\NullEventLog.cs" />
- <Compile Include="System.Diagnostics\OverflowAction.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounter.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounterCategory.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounterCategoryType.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounterInstaller.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounterInstanceLifetime.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounterManager.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounterPermission.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounterPermissionAccess.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounterPermissionAttribute.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounterPermissionEntry.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounterPermissionEntryCollection.cs" />
- <Compile Include="System.Diagnostics\PerformanceCounterType.cs" />
- <Compile Include="System.Diagnostics\TraceSourceInfo.cs" />
- <Compile Include="System.Diagnostics\Win32EventLog.cs" />
- <Compile Include="System.IO.Ports\Handshake.cs" />
- <Compile Include="System.IO.Ports\ISerialStream.cs" />
- <Compile Include="System.IO.Ports\Parity.cs" />
- <Compile Include="System.IO.Ports\SerialData.cs" />
- <Compile Include="System.IO.Ports\SerialError.cs" />
- <Compile Include="System.IO.Ports\SerialErrorEventArgs.cs" />
- <Compile Include="System.IO.Ports\SerialPinChange.cs" />
- <Compile Include="System.IO.Ports\SerialPinChangedEventArgs.cs" />
- <Compile Include="System.IO.Ports\SerialPort.cs" />
- <Compile Include="System.IO.Ports\SerialPortStream.cs" />
- <Compile Include="System.IO.Ports\SerialReceivedEventArgs.cs" />
- <Compile Include="System.IO.Ports\SerialSignal.cs" />
- <Compile Include="System.IO.Ports\StopBits.cs" />
- <Compile Include="System.IO.Ports\WinSerialStream.cs" />
- <Compile Include="System.IO\CoreFXFileSystemWatcherProxy.cs" />
- <Compile Include="System.IO\DefaultWatcher.cs" />
- <Compile Include="System.IO\FAMWatcher.cs" />
- <Compile Include="System.IO\FileAction.cs" />
- <Compile Include="System.IO\FileSystemWatcher.cs" />
- <Compile Include="System.IO\IFileWatcher.cs" />
- <Compile Include="System.IO\KeventWatcher.cs" />
- <Compile Include="System.IO\NullFileWatcher.cs" />
- <Compile Include="System.IO\SearchPattern.cs" />
- <Compile Include="System.Media\AudioData.cs" />
- <Compile Include="System.Media\AudioDevice.cs" />
- <Compile Include="System.Media\SoundPlayer.cs" />
- <Compile Include="System.Media\SystemSound.cs" />
- <Compile Include="System.Media\SystemSounds.cs" />
- <Compile Include="System.Media\Win32SoundPlayer.cs" />
- <Compile Include="System.Net.Configuration\AuthenticationModuleElement.cs" />
- <Compile Include="System.Net.Configuration\AuthenticationModuleElementCollection.cs" />
- <Compile Include="System.Net.Configuration\AuthenticationModulesSection.cs" />
- <Compile Include="System.Net.Configuration\BypassElement.cs" />
- <Compile Include="System.Net.Configuration\BypassElementCollection.cs" />
- <Compile Include="System.Net.Configuration\ConnectionManagementElement.cs" />
- <Compile Include="System.Net.Configuration\ConnectionManagementElementCollection.cs" />
- <Compile Include="System.Net.Configuration\ConnectionManagementHandler.cs" />
- <Compile Include="System.Net.Configuration\ConnectionManagementSection.cs" />
- <Compile Include="System.Net.Configuration\DefaultProxyHandler.cs" />
- <Compile Include="System.Net.Configuration\DefaultProxySection.cs" />
- <Compile Include="System.Net.Configuration\FtpCachePolicyElement.cs" />
- <Compile Include="System.Net.Configuration\HttpCachePolicyElement.cs" />
- <Compile Include="System.Net.Configuration\HttpWebRequestElement.cs" />
- <Compile Include="System.Net.Configuration\Ipv6Element.cs" />
- <Compile Include="System.Net.Configuration\MailSettingsSectionGroup.cs" />
- <Compile Include="System.Net.Configuration\ModuleElement.cs" />
- <Compile Include="System.Net.Configuration\NetAuthenticationModuleHandler.cs" />
- <Compile Include="System.Net.Configuration\NetConfigurationHandler.cs" />
- <Compile Include="System.Net.Configuration\NetSectionGroup.cs" />
- <Compile Include="System.Net.Configuration\PerformanceCountersElement.cs" />
- <Compile Include="System.Net.Configuration\ProxyElement.cs" />
- <Compile Include="System.Net.Configuration\RequestCachingSection.cs" />
- <Compile Include="System.Net.Configuration\ServicePointManagerElement.cs" />
- <Compile Include="System.Net.Configuration\SettingsSection.cs" />
- <Compile Include="System.Net.Configuration\SmtpNetworkElement.cs" />
- <Compile Include="System.Net.Configuration\SmtpSection.cs" />
- <Compile Include="System.Net.Configuration\SmtpSpecifiedPickupDirectoryElement.cs" />
- <Compile Include="System.Net.Configuration\SocketElement.cs" />
- <Compile Include="System.Net.Configuration\WebProxyScriptElement.cs" />
- <Compile Include="System.Net.Configuration\WebRequestModuleElement.cs" />
- <Compile Include="System.Net.Configuration\WebRequestModuleElementCollection.cs" />
- <Compile Include="System.Net.Configuration\WebRequestModuleHandler.cs" />
- <Compile Include="System.Net.Configuration\WebRequestModulesSection.cs" />
- <Compile Include="System.Net.Mail\SmtpClient.cs" />
- <Compile Include="System.Net.Mail\SmtpPermission.cs" />
- <Compile Include="System.Net.Mail\SmtpPermissionAttribute.cs" />
- <Compile Include="System.Net.NetworkInformation\AixIPInterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\AixIPv4InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\AixIPv4InterfaceStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\AixNetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\AixNetworkInterfaceMarshal.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxIPInterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxIPv4InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxIPv4InterfaceStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxNetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxNetworkInterfaceMarshal.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxUnicastIPAddressInformation.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsIPInterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsIPv4InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsIPv4InterfaceStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsNetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsNetworkInterfaceMarshal.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIPGlobalProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIPGlobalStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIPInterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIPv4InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIcmpV4Statistics.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIcmpV6Statistics.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixNetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixNetworkInterfaceFactory.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixTcpStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixUdpStatistics.cs" />
- <Compile Include="System.Net.Security\SslStream.cs" />
- <Compile Include="System.Net\AuthenticationManager.cs" />
- <Compile Include="System.Net\BufferedReadStream.cs" />
- <Compile Include="System.Net\ChunkedInputStream.cs" />
- <Compile Include="System.Net\ContentDecodeStream.cs" />
- <Compile Include="System.Net\DnsAsyncResult.cs" />
- <Compile Include="System.Net\DnsPermission.cs" />
- <Compile Include="System.Net\DnsPermissionAttribute.cs" />
- <Compile Include="System.Net\EndPointListener.cs" />
- <Compile Include="System.Net\EndPointManager.cs" />
- <Compile Include="System.Net\FixedSizeReadStream.cs" />
- <Compile Include="System.Net\HttpConnection.cs" />
- <Compile Include="System.Net\HttpListener.Mono.cs" />
- <Compile Include="System.Net\HttpListener.cs" />
- <Compile Include="System.Net\HttpListenerBasicIdentity.cs" />
- <Compile Include="System.Net\HttpListenerContext.cs" />
- <Compile Include="System.Net\HttpListenerPrefixCollection.cs" />
- <Compile Include="System.Net\HttpListenerRequest.cs" />
- <Compile Include="System.Net\HttpListenerResponse.cs" />
- <Compile Include="System.Net\HttpListenerTimeoutManager.cs" />
- <Compile Include="System.Net\HttpWebRequest.cs" />
- <Compile Include="System.Net\HttpWebResponse.cs" />
- <Compile Include="System.Net\ListenerAsyncResult.cs" />
- <Compile Include="System.Net\MacProxy.cs" />
- <Compile Include="System.Net\MonoChunkStream.cs" />
- <Compile Include="System.Net\NtlmClient.cs" />
- <Compile Include="System.Net\ResponseStream.cs" />
- <Compile Include="System.Net\ServicePoint.cs" />
- <Compile Include="System.Net\ServicePointManager.cs" />
- <Compile Include="System.Net\ServicePointManager.extra.cs" />
- <Compile Include="System.Net\ServicePointScheduler.cs" />
- <Compile Include="System.Net\WebCompletionSource.cs" />
- <Compile Include="System.Net\WebConnection.cs" />
- <Compile Include="System.Net\WebConnectionStream.cs" />
- <Compile Include="System.Net\WebConnectionTunnel.cs" />
- <Compile Include="System.Net\WebOperation.cs" />
- <Compile Include="System.Net\WebReadStream.cs" />
- <Compile Include="System.Net\WebRequestStream.cs" />
- <Compile Include="System.Net\WebResponseStream.cs" />
- <Compile Include="System.Runtime.InteropServices\StandardOleMarshalObject.cs" />
- <Compile Include="System.Security.Cryptography.X509Certificates\OSX509Certificates.cs" />
- <Compile Include="System.Security.Permissions\PermissionHelper.cs" />
- <Compile Include="System.Security.Permissions\ResourcePermissionBase.cs" />
- <Compile Include="System.Security.Permissions\ResourcePermissionBaseEntry.cs" />
- <Compile Include="System.Security.Permissions\StorePermission.cs" />
- <Compile Include="System.Security.Permissions\StorePermissionAttribute.cs" />
- <Compile Include="System.Security.Permissions\StorePermissionFlags.cs" />
- <Compile Include="System.Web\AspNetHostingPermission.cs" />
- <Compile Include="System.Web\AspNetHostingPermissionAttribute.cs" />
- <Compile Include="System.Web\AspNetHostingPermissionLevel.cs" />
- <Compile Include="System\MonoToolsLocator.cs" />
- <Compile Include="corefx\Unix\Interop.Read.cs" />
- <Compile Include="corefx\Unix\Interop.cs" />
- </ItemGroup>
- </When>
- </Choose>
- <!--End of per-host-platform files-->
- </When>
- <When Condition="'$(Platform)' == 'monotouch_watch'">
- <ItemGroup>
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\OSX\Interop.CoreFoundation.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\OSX\Interop.EventStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\OSX\Interop.Libraries.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\OSX\Interop.RunLoop.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\Interop.Errors.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\Interop.IOErrors.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\Interop.Libraries.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Native\Interop.RealPath.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Native\Interop.Sync.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Net.Security.Native\Interop.GssApiException.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Net.Security.Native\Interop.GssBuffer.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Net.Security.Native\Interop.NetSecurityNative.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Microsoft\Win32\SafeHandles\GssSafeHandles.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Microsoft\Win32\SafeHandles\SafeCreateHandle.OSX.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Microsoft\Win32\SafeHandles\SafeEventStreamHandle.OSX.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\ContextAwareResult.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\ContextFlagsAdapterPal.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\CertificateHelper.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\NegotiateStreamPal.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeDeleteContext.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeDeleteNegoContext.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeFreeCredentials.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeFreeNegoCredentials.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.IO.FileSystem.Watcher\src\System\IO\FileSystemWatcher.OSX.cs" />
- <Compile Include="..\Mono.Security\Mono.Security.Cryptography\PKCS8.cs" />
- <Compile Include="..\Mono.Security\Mono.Security.X509.Extensions\AuthorityKeyIdentifierExtension.cs" />
- <Compile Include="..\Mono.Security\Mono.Security.X509.Extensions\BasicConstraintsExtension.cs" />
- <Compile Include="..\Mono.Security\Mono.Security.X509.Extensions\KeyUsageExtension.cs" />
- <Compile Include="..\Mono.Security\Mono.Security.X509.Extensions\SubjectKeyIdentifierExtension.cs" />
- <Compile Include="..\Mono.Security\Mono.Security.X509\PKCS12.cs" />
- <Compile Include="..\Mono.Security\Mono.Security.X509\X501Name.cs" />
- <Compile Include="..\Mono.Security\Mono.Security.X509\X509CRL.cs" />
- <Compile Include="..\Mono.Security\Mono.Security.X509\X509Certificate.cs" />
- <Compile Include="..\Mono.Security\Mono.Security.X509\X509CertificateCollection.cs" />
- <Compile Include="..\Mono.Security\Mono.Security.X509\X509Chain.cs" />
- <Compile Include="..\Mono.Security\Mono.Security.X509\X509ChainStatusFlags.cs" />
- <Compile Include="..\Mono.Security\Mono.Security.X509\X509Extension.cs" />
- <Compile Include="..\Mono.Security\Mono.Security.X509\X509Extensions.cs" />
- <Compile Include="..\Mono.Security\Mono.Security.X509\X509Store.cs" />
- <Compile Include="..\Mono.Security\Mono.Security.X509\X509StoreManager.cs" />
- <Compile Include="..\Mono.Security\Mono.Security.X509\X509Stores.cs" />
- <Compile Include="..\Mono.Security\Mono.Security.X509\X520Attributes.cs" />
- <Compile Include="..\Mono.Security\Mono.Security\PKCS7.cs" />
- <Compile Include="Internal.Cryptography\OidLookup.Managed.cs" />
- <Compile Include="Mono.AppleTls\Enums.cs" />
- <Compile Include="Mono.AppleTls\MonoCertificatePal.Mobile.cs" />
- <Compile Include="Mono.AppleTls\MonoCertificatePal.cs" />
- <Compile Include="Mono.AppleTls\SafeHandles.Mono.cs" />
- <Compile Include="Mono.AppleTls\SafeHandles.cs" />
- <Compile Include="Mono.AppleTls\X509CertificateImplApple.cs" />
- <Compile Include="Mono.AppleTls\X509PalImpl.Apple.cs" />
- <Compile Include="System.Net.Mail\SmtpClient.platformnotsupported.cs" />
- <Compile Include="System.Net.NetworkInformation\AixIPInterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\AixIPv4InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\AixIPv4InterfaceStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\AixNetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\AixNetworkInterfaceMarshal.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxIPInterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxIPv4InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxIPv4InterfaceStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxNetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxNetworkInterfaceMarshal.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxUnicastIPAddressInformation.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsIPInterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsIPv4InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsIPv4InterfaceStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsNetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsNetworkInterfaceMarshal.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIPGlobalProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIPGlobalStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIPInterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIPv4InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIcmpV4Statistics.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIcmpV6Statistics.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixNetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixNetworkInterfaceFactory.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixTcpStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixUdpStatistics.cs" />
- <Compile Include="System.Net.Security\SslStream.platformnotsupported.cs" />
- <Compile Include="System.Net.Sockets\TcpClient.platformnotsupported.cs" />
- <Compile Include="System.Net.Sockets\TcpListener.platformnotsupported.cs" />
- <Compile Include="System.Net.Sockets\UdpClient.platformnotsupported.cs" />
- <Compile Include="System.Net.WebSockets\HttpListenerWebSocketContext.platformnotsupported.cs" />
- <Compile Include="System.Net\AuthenticationManager.platformnotsupported.cs" />
- <Compile Include="System.Net\FtpRequestCreator.platformnotsupported.cs" />
- <Compile Include="System.Net\FtpWebRequest.platformnotsupported.cs" />
- <Compile Include="System.Net\FtpWebResponse.platformnotsupported.cs" />
- <Compile Include="System.Net\HttpListener.platformnotsupported.cs" />
- <Compile Include="System.Net\HttpListenerBasicIdentity.platformnotsupported.cs" />
- <Compile Include="System.Net\HttpListenerContext.platformnotsupported.cs" />
- <Compile Include="System.Net\HttpListenerPrefixCollection.platformnotsupported.cs" />
- <Compile Include="System.Net\HttpListenerRequest.platformnotsupported.cs" />
- <Compile Include="System.Net\HttpListenerResponse.platformnotsupported.cs" />
- <Compile Include="System.Net\HttpListenerTimeoutManager.platformnotsupported.cs" />
- <Compile Include="System.Net\HttpWebRequest.platformnotsupported.cs" />
- <Compile Include="System.Net\HttpWebResponse.platformnotsupported.cs" />
- <Compile Include="System.Net\ServicePoint.platformnotsupported.cs" />
- <Compile Include="System.Net\ServicePointManager.platformnotsupported.cs" />
- <Compile Include="System.Security.Cryptography.X509Certificates\OSX509Certificates.cs" />
- </ItemGroup>
- </When>
- <When Condition="'$(Platform)' == 'monotouch_tv'">
- <ItemGroup>
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\OSX\Interop.CoreFoundation.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\OSX\Interop.EventStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\OSX\Interop.Libraries.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\OSX\Interop.RunLoop.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\Interop.Errors.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\Interop.IOErrors.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\Interop.Libraries.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Native\Interop.RealPath.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Native\Interop.Sync.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Net.Security.Native\Interop.GssApiException.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Net.Security.Native\Interop.GssBuffer.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Net.Security.Native\Interop.NetSecurityNative.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Microsoft\Win32\SafeHandles\GssSafeHandles.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Microsoft\Win32\SafeHandles\SafeCreateHandle.OSX.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Microsoft\Win32\SafeHandles\SafeEventStreamHandle.OSX.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\ContextAwareResult.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\ContextAwareResult.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\ContextFlagsAdapterPal.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\HttpValidationHelpers.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\CertificateHelper.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\NegotiateStreamPal.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\SslClientAuthenticationOptionsExtensions.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeDeleteContext.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeDeleteNegoContext.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeFreeCredentials.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeFreeNegoCredentials.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\TlsStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.IO.FileSystem.Watcher\src\System\IO\FileSystemWatcher.OSX.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.HttpListener\src\System\Net\WebSockets\HttpListenerWebSocketContext.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\CommandStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpControlStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpDataStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpWebRequest.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpWebResponse.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\NetworkStreamWrapper.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslApplicationProtocol.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslAuthenticationOptions.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslClientAuthenticationOptions.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslServerAuthenticationOptions.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\TCPClient.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\TCPListener.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\UDPClient.cs" />
- <Compile Include="Internal.Cryptography\OidLookup.Managed.cs" />
- <Compile Include="Mono.AppleTls\AppleCertificateHelper.cs" />
- <Compile Include="Mono.AppleTls\AppleTlsContext.cs" />
- <Compile Include="Mono.AppleTls\AppleTlsProvider.cs" />
- <Compile Include="Mono.AppleTls\AppleTlsStream.cs" />
- <Compile Include="Mono.AppleTls\Enums.cs" />
- <Compile Include="Mono.AppleTls\MonoCertificatePal.Mobile.cs" />
- <Compile Include="Mono.AppleTls\MonoCertificatePal.cs" />
- <Compile Include="Mono.AppleTls\Policy.cs" />
- <Compile Include="Mono.AppleTls\SafeHandles.Mono.cs" />
- <Compile Include="Mono.AppleTls\SafeHandles.cs" />
- <Compile Include="Mono.AppleTls\SecureTransport.cs" />
- <Compile Include="Mono.AppleTls\SslConnection.cs" />
- <Compile Include="Mono.AppleTls\Trust.cs" />
- <Compile Include="Mono.AppleTls\X509CertificateImplApple.cs" />
- <Compile Include="Mono.AppleTls\X509PalImpl.Apple.cs" />
- <Compile Include="Mono.Http\NtlmClient.cs" />
- <Compile Include="Mono.Net.Security\AsyncProtocolRequest.cs" />
- <Compile Include="Mono.Net.Security\CallbackHelpers.cs" />
- <Compile Include="Mono.Net.Security\ChainValidationHelper.cs" />
- <Compile Include="Mono.Net.Security\LegacySslStream.cs" />
- <Compile Include="Mono.Net.Security\LegacyTlsProvider.cs" />
- <Compile Include="Mono.Net.Security\MobileAuthenticatedStream.cs" />
- <Compile Include="Mono.Net.Security\MobileTlsContext.cs" />
- <Compile Include="Mono.Net.Security\MonoSslAuthenticationOptions.cs" />
- <Compile Include="Mono.Net.Security\MonoSslClientAuthenticationOptions.cs" />
- <Compile Include="Mono.Net.Security\MonoSslServerAuthenticationOptions.cs" />
- <Compile Include="Mono.Net.Security\MonoTlsProviderFactory.cs" />
- <Compile Include="Mono.Net.Security\MonoTlsStream.cs" />
- <Compile Include="Mono.Net.Security\NoReflectionHelper.cs" />
- <Compile Include="Mono.Net.Security\SystemCertificateValidator.cs" />
- <Compile Include="System.Net.Mail\SmtpClient.cs" />
- <Compile Include="System.Net.NetworkInformation\AixIPInterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\AixIPv4InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\AixIPv4InterfaceStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\AixNetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\AixNetworkInterfaceMarshal.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxIPInterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxIPv4InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxIPv4InterfaceStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxNetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxNetworkInterfaceMarshal.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxUnicastIPAddressInformation.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsIPInterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsIPv4InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsIPv4InterfaceStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsNetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsNetworkInterfaceMarshal.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIPGlobalProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIPGlobalStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIPInterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIPv4InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIcmpV4Statistics.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIcmpV6Statistics.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixNetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixNetworkInterfaceFactory.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixTcpStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixUdpStatistics.cs" />
- <Compile Include="System.Net.Security\SslStream.cs" />
- <Compile Include="System.Net\AuthenticationManager.cs" />
- <Compile Include="System.Net\BufferedReadStream.cs" />
- <Compile Include="System.Net\ChunkedInputStream.cs" />
- <Compile Include="System.Net\ContentDecodeStream.cs" />
- <Compile Include="System.Net\EndPointListener.cs" />
- <Compile Include="System.Net\EndPointManager.cs" />
- <Compile Include="System.Net\FixedSizeReadStream.cs" />
- <Compile Include="System.Net\HttpConnection.cs" />
- <Compile Include="System.Net\HttpListener.Mono.cs" />
- <Compile Include="System.Net\HttpListener.cs" />
- <Compile Include="System.Net\HttpListenerBasicIdentity.cs" />
- <Compile Include="System.Net\HttpListenerContext.cs" />
- <Compile Include="System.Net\HttpListenerPrefixCollection.cs" />
- <Compile Include="System.Net\HttpListenerRequest.cs" />
- <Compile Include="System.Net\HttpListenerResponse.cs" />
- <Compile Include="System.Net\HttpListenerTimeoutManager.cs" />
- <Compile Include="System.Net\HttpWebRequest.cs" />
- <Compile Include="System.Net\HttpWebResponse.cs" />
- <Compile Include="System.Net\ListenerAsyncResult.cs" />
- <Compile Include="System.Net\MacProxy.cs" />
- <Compile Include="System.Net\MonoChunkStream.cs" />
- <Compile Include="System.Net\NtlmClient.cs" />
- <Compile Include="System.Net\ResponseStream.cs" />
- <Compile Include="System.Net\ServicePoint.cs" />
- <Compile Include="System.Net\ServicePointManager.cs" />
- <Compile Include="System.Net\ServicePointManager.extra.cs" />
- <Compile Include="System.Net\ServicePointScheduler.cs" />
- <Compile Include="System.Net\WebCompletionSource.cs" />
- <Compile Include="System.Net\WebConnection.cs" />
- <Compile Include="System.Net\WebConnectionStream.cs" />
- <Compile Include="System.Net\WebConnectionTunnel.cs" />
- <Compile Include="System.Net\WebOperation.cs" />
- <Compile Include="System.Net\WebReadStream.cs" />
- <Compile Include="System.Net\WebRequestStream.cs" />
- <Compile Include="System.Net\WebResponseStream.cs" />
- <Compile Include="System.Security.Cryptography.X509Certificates\OSX509Certificates.cs" />
- </ItemGroup>
- </When>
- <When Condition="'$(Platform)' == 'monotouch'">
- <ItemGroup>
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\OSX\Interop.CoreFoundation.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\OSX\Interop.EventStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\OSX\Interop.Libraries.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\OSX\Interop.RunLoop.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\Interop.Errors.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\Interop.IOErrors.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\Interop.Libraries.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Native\Interop.RealPath.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Native\Interop.Sync.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Net.Security.Native\Interop.GssApiException.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Net.Security.Native\Interop.GssBuffer.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Net.Security.Native\Interop.NetSecurityNative.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Microsoft\Win32\SafeHandles\GssSafeHandles.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Microsoft\Win32\SafeHandles\SafeCreateHandle.OSX.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Microsoft\Win32\SafeHandles\SafeEventStreamHandle.OSX.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\ContextAwareResult.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\ContextAwareResult.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\ContextFlagsAdapterPal.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\HttpValidationHelpers.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\CertificateHelper.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\NegotiateStreamPal.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\SslClientAuthenticationOptionsExtensions.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeDeleteContext.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeDeleteNegoContext.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeFreeCredentials.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeFreeNegoCredentials.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\TlsStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.IO.FileSystem.Watcher\src\System\IO\FileSystemWatcher.OSX.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.HttpListener\src\System\Net\WebSockets\HttpListenerWebSocketContext.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\CommandStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpControlStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpDataStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpWebRequest.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpWebResponse.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\NetworkStreamWrapper.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslApplicationProtocol.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslAuthenticationOptions.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslClientAuthenticationOptions.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslServerAuthenticationOptions.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\TCPClient.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\TCPListener.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\UDPClient.cs" />
- <Compile Include="Internal.Cryptography\OidLookup.Managed.cs" />
- <Compile Include="Mono.AppleTls\AppleCertificateHelper.cs" />
- <Compile Include="Mono.AppleTls\AppleTlsContext.cs" />
- <Compile Include="Mono.AppleTls\AppleTlsProvider.cs" />
- <Compile Include="Mono.AppleTls\AppleTlsStream.cs" />
- <Compile Include="Mono.AppleTls\Enums.cs" />
- <Compile Include="Mono.AppleTls\MonoCertificatePal.Mobile.cs" />
- <Compile Include="Mono.AppleTls\MonoCertificatePal.cs" />
- <Compile Include="Mono.AppleTls\Policy.cs" />
- <Compile Include="Mono.AppleTls\SafeHandles.Mono.cs" />
- <Compile Include="Mono.AppleTls\SafeHandles.cs" />
- <Compile Include="Mono.AppleTls\SecureTransport.cs" />
- <Compile Include="Mono.AppleTls\SslConnection.cs" />
- <Compile Include="Mono.AppleTls\Trust.cs" />
- <Compile Include="Mono.AppleTls\X509CertificateImplApple.cs" />
- <Compile Include="Mono.AppleTls\X509PalImpl.Apple.cs" />
- <Compile Include="Mono.Http\NtlmClient.cs" />
- <Compile Include="Mono.Net.Security\AsyncProtocolRequest.cs" />
- <Compile Include="Mono.Net.Security\CallbackHelpers.cs" />
- <Compile Include="Mono.Net.Security\ChainValidationHelper.cs" />
- <Compile Include="Mono.Net.Security\LegacySslStream.cs" />
- <Compile Include="Mono.Net.Security\LegacyTlsProvider.cs" />
- <Compile Include="Mono.Net.Security\MobileAuthenticatedStream.cs" />
- <Compile Include="Mono.Net.Security\MobileTlsContext.cs" />
- <Compile Include="Mono.Net.Security\MonoSslAuthenticationOptions.cs" />
- <Compile Include="Mono.Net.Security\MonoSslClientAuthenticationOptions.cs" />
- <Compile Include="Mono.Net.Security\MonoSslServerAuthenticationOptions.cs" />
- <Compile Include="Mono.Net.Security\MonoTlsProviderFactory.cs" />
- <Compile Include="Mono.Net.Security\MonoTlsStream.cs" />
- <Compile Include="Mono.Net.Security\NoReflectionHelper.cs" />
- <Compile Include="Mono.Net.Security\SystemCertificateValidator.cs" />
- <Compile Include="System.Net.Mail\SmtpClient.cs" />
- <Compile Include="System.Net.NetworkInformation\AixIPInterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\AixIPv4InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\AixIPv4InterfaceStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\AixNetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\AixNetworkInterfaceMarshal.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxIPInterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxIPv4InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxIPv4InterfaceStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxNetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxNetworkInterfaceMarshal.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxUnicastIPAddressInformation.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsIPInterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsIPv4InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsIPv4InterfaceStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsNetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsNetworkInterfaceMarshal.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIPGlobalProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIPGlobalStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIPInterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIPv4InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIcmpV4Statistics.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIcmpV6Statistics.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixNetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixNetworkInterfaceFactory.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixTcpStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixUdpStatistics.cs" />
- <Compile Include="System.Net.Security\SslStream.cs" />
- <Compile Include="System.Net\AuthenticationManager.cs" />
- <Compile Include="System.Net\BufferedReadStream.cs" />
- <Compile Include="System.Net\ChunkedInputStream.cs" />
- <Compile Include="System.Net\ContentDecodeStream.cs" />
- <Compile Include="System.Net\EndPointListener.cs" />
- <Compile Include="System.Net\EndPointManager.cs" />
- <Compile Include="System.Net\FixedSizeReadStream.cs" />
- <Compile Include="System.Net\HttpConnection.cs" />
- <Compile Include="System.Net\HttpListener.Mono.cs" />
- <Compile Include="System.Net\HttpListener.cs" />
- <Compile Include="System.Net\HttpListenerBasicIdentity.cs" />
- <Compile Include="System.Net\HttpListenerContext.cs" />
- <Compile Include="System.Net\HttpListenerPrefixCollection.cs" />
- <Compile Include="System.Net\HttpListenerRequest.cs" />
- <Compile Include="System.Net\HttpListenerResponse.cs" />
- <Compile Include="System.Net\HttpListenerTimeoutManager.cs" />
- <Compile Include="System.Net\HttpWebRequest.cs" />
- <Compile Include="System.Net\HttpWebResponse.cs" />
- <Compile Include="System.Net\ListenerAsyncResult.cs" />
- <Compile Include="System.Net\MacProxy.cs" />
- <Compile Include="System.Net\MonoChunkStream.cs" />
- <Compile Include="System.Net\NtlmClient.cs" />
- <Compile Include="System.Net\ResponseStream.cs" />
- <Compile Include="System.Net\ServicePoint.cs" />
- <Compile Include="System.Net\ServicePointManager.cs" />
- <Compile Include="System.Net\ServicePointManager.extra.cs" />
- <Compile Include="System.Net\ServicePointScheduler.cs" />
- <Compile Include="System.Net\WebCompletionSource.cs" />
- <Compile Include="System.Net\WebConnection.cs" />
- <Compile Include="System.Net\WebConnectionStream.cs" />
- <Compile Include="System.Net\WebConnectionTunnel.cs" />
- <Compile Include="System.Net\WebOperation.cs" />
- <Compile Include="System.Net\WebReadStream.cs" />
- <Compile Include="System.Net\WebRequestStream.cs" />
- <Compile Include="System.Net\WebResponseStream.cs" />
- <Compile Include="System.Security.Cryptography.X509Certificates\OSX509Certificates.cs" />
- </ItemGroup>
- </When>
- <When Condition="'$(Platform)' == 'monodroid'">
- <ItemGroup>
- <Compile Include="..\..\..\external\corefx\src\Common\src\CoreLib\Interop\Unix\System.Native\Interop.ReadDir.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Linux\Interop.Libraries.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Linux\System.Native\Interop.INotify.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\Interop.Errors.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\Interop.IOErrors.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\Interop.Libraries.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Native\Interop.Close.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Native\Interop.FLock.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Native\Interop.Open.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Native\Interop.OpenFlags.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Native\Interop.Poll.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Native\Interop.Stat.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Net.Security.Native\Interop.GssApiException.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Net.Security.Native\Interop.GssBuffer.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Interop\Unix\System.Net.Security.Native\Interop.NetSecurityNative.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Microsoft\Win32\SafeHandles\GssSafeHandles.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Microsoft\Win32\SafeHandles\SafeDirectoryHandle.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\Microsoft\Win32\SafeHandles\SafeFileHandle.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\ContextAwareResult.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\ContextAwareResult.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\ContextFlagsAdapterPal.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\HttpValidationHelpers.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\CertificateHelper.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\NegotiateStreamPal.Unix.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\SslClientAuthenticationOptionsExtensions.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeDeleteContext.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeDeleteNegoContext.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeFreeCredentials.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\Security\Unix\SafeFreeNegoCredentials.cs" />
- <Compile Include="..\..\..\external\corefx\src\Common\src\System\Net\TlsStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.IO.FileSystem.Watcher\src\System\IO\FileSystemWatcher.Linux.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.HttpListener\src\System\Net\WebSockets\HttpListenerWebSocketContext.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\CommandStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpControlStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpDataStream.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpWebRequest.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\FtpWebResponse.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Requests\src\System\Net\NetworkStreamWrapper.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslApplicationProtocol.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslAuthenticationOptions.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslClientAuthenticationOptions.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Net.Security\src\System\Net\Security\SslServerAuthenticationOptions.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\CompiledRegexRunner.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\CompiledRegexRunnerFactory.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\RegexCompiler.cs" />
- <Compile Include="..\..\..\external\corefx\src\System.Text.RegularExpressions\src\System\Text\RegularExpressions\RegexLWCGCompiler.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\TCPClient.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\TCPListener.cs" />
- <Compile Include="..\referencesource\System\net\System\Net\Sockets\UDPClient.cs" />
- <Compile Include="Internal.Cryptography\OidLookup.Managed.cs" />
- <Compile Include="Mono.Btls\MonoBtlsX509LookupAndroid.cs" />
- <Compile Include="Mono.Http\NtlmClient.cs" />
- <Compile Include="Mono.Net.Security\AsyncProtocolRequest.cs" />
- <Compile Include="Mono.Net.Security\CallbackHelpers.cs" />
- <Compile Include="Mono.Net.Security\ChainValidationHelper.cs" />
- <Compile Include="Mono.Net.Security\LegacySslStream.cs" />
- <Compile Include="Mono.Net.Security\LegacyTlsProvider.cs" />
- <Compile Include="Mono.Net.Security\MobileAuthenticatedStream.cs" />
- <Compile Include="Mono.Net.Security\MobileTlsContext.cs" />
- <Compile Include="Mono.Net.Security\MonoSslAuthenticationOptions.cs" />
- <Compile Include="Mono.Net.Security\MonoSslClientAuthenticationOptions.cs" />
- <Compile Include="Mono.Net.Security\MonoSslServerAuthenticationOptions.cs" />
- <Compile Include="Mono.Net.Security\MonoTlsProviderFactory.cs" />
- <Compile Include="Mono.Net.Security\MonoTlsStream.cs" />
- <Compile Include="Mono.Net.Security\NoReflectionHelper.cs" />
- <Compile Include="Mono.Net.Security\SystemCertificateValidator.cs" />
- <Compile Include="System.Net.Mail\SmtpClient.cs" />
- <Compile Include="System.Net.NetworkInformation\AixIPInterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\AixIPv4InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\AixIPv4InterfaceStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\AixNetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\AixNetworkInterfaceMarshal.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxIPInterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxIPv4InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxIPv4InterfaceStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxNetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxNetworkInterfaceMarshal.cs" />
- <Compile Include="System.Net.NetworkInformation\LinuxUnicastIPAddressInformation.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsIPInterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsIPv4InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsIPv4InterfaceStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsNetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\MacOsNetworkInterfaceMarshal.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIPGlobalProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIPGlobalStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIPInterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIPv4InterfaceProperties.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIcmpV4Statistics.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixIcmpV6Statistics.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixNetworkInterface.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixNetworkInterfaceFactory.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixTcpStatistics.cs" />
- <Compile Include="System.Net.NetworkInformation\UnixUdpStatistics.cs" />
- <Compile Include="System.Net.Security\SslStream.cs" />
- <Compile Include="System.Net\AuthenticationManager.cs" />
- <Compile Include="System.Net\BufferedReadStream.cs" />
- <Compile Include="System.Net\ChunkedInputStream.cs" />
- <Compile Include="System.Net\ContentDecodeStream.cs" />
- <Compile Include="System.Net\EndPointListener.cs" />
- <Compile Include="System.Net\EndPointManager.cs" />
- <Compile Include="System.Net\FixedSizeReadStream.cs" />
- <Compile Include="System.Net\HttpConnection.cs" />
- <Compile Include="System.Net\HttpListener.Mono.cs" />
- <Compile Include="System.Net\HttpListener.cs" />
- <Compile Include="System.Net\HttpListenerBasicIdentity.cs" />
- <Compile Include="System.Net\HttpListenerContext.cs" />
- <Compile Include="System.Net\HttpListenerPrefixCollection.cs" />
- <Compile Include="System.Net\HttpListenerRequest.cs" />
- <Compile Include="System.Net\HttpListenerResponse.cs" />
- <Compile Include="System.Net\HttpListenerTimeoutManager.cs" />
- <Compile Include="System.Net\HttpWebRequest.cs" />
- <Compile Include="System.Net\HttpWebResponse.cs" />
- <Compile Include="System.Net\ListenerAsyncResult.cs" />
- <Compile Include="System.Net\MacProxy.cs" />
- <Compile Include="System.Net\MonoChunkStream.cs" />
- <Compile Include="System.Net\NtlmClient.cs" />
- <Compile Include="System.Net\ResponseStream.cs" />
- <Compile Include="System.Net\ServicePoint.cs" />
- <Compile Include="System.Net\ServicePointManager.cs" />
- <Compile Include="System.Net\ServicePointManager.extra.cs" />
- <Compile Include="System.Net\ServicePointScheduler.cs" />
- <Compile Include="System.Net\WebCompletionSource.cs" />
- <Compile Include="System.Net\WebConnection.cs" />
- <Compile Include="System.Net\WebConnectionStream.cs" />
- <Compile Include="System.Net\WebConnectionTunnel.cs" />
- <Compile Include="System.Net\WebOperation.cs" />
- <Compile Include="System.Net\WebReadStream.cs" />
- <Compile Include="System.Net\WebRequestStream.cs" />
- <Compile Include="System.Net\WebResponseStream.cs" />
- <Compile Include="System.Security.Cryptography.X509Certificates\OSX509Certificates.cs" />
- <Compile Include="System\AndroidPlatform.cs" />
- <Compile Include="corefx\Unix\Interop.Read.cs" />
- <Compile Include="corefx\Unix\Interop.cs" />
- </ItemGroup>
- </When>
- </Choose>
- <!--End of per-profile files-->
- <!-- @ALL_SOURCES@ -->
- <ItemGroup>
- <ProjectReference Include="../corlib/corlib.csproj" />
- </ItemGroup>
- <ItemGroup Condition=" '$(Platform)' == 'net_4_x' ">
- <Reference Include="./../../../external/binary-reference-assemblies/v4.7.1/System.Net.Http.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/v4.7.1/System.Net.Http.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/v4.7.1/System.Xml.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/v4.7.1/System.Xml.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/v4.7.1/System.Core.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/v4.7.1/System.Core.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/v4.7.1/System.Numerics.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/v4.7.1/System.Numerics.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/v4.7.1/System.Configuration.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/v4.7.1/System.Configuration.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <ProjectReference Include="../Mono.Security/Mono.Security.csproj">
- <Aliases>MonoSecurity</Aliases>
- </ProjectReference>
- </ItemGroup>
- <ItemGroup Condition=" '$(Platform)' == 'monodroid' ">
- <Reference Include="./../../../external/binary-reference-assemblies/build/monodroid/System.Net.Http.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monodroid/System.Net.Http.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monodroid/System.Xml.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monodroid/System.Xml.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monodroid/System.Core.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monodroid/System.Core.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monodroid/System.Numerics.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monodroid/System.Numerics.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <ProjectReference Include="../Mono.Security/Mono.Security.csproj">
- <Aliases>MonoSecurity</Aliases>
- </ProjectReference>
- </ItemGroup>
- <ItemGroup Condition=" '$(Platform)' == 'monotouch' ">
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Net.Http.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Net.Http.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Xml.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Xml.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Core.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Core.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Numerics.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Numerics.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <ProjectReference Include="../Mono.Security/Mono.Security.csproj">
- <Aliases>MonoSecurity</Aliases>
- </ProjectReference>
- </ItemGroup>
- <ItemGroup Condition=" '$(Platform)' == 'monotouch_runtime' ">
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Net.Http.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Net.Http.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Xml.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Xml.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Core.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Core.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Numerics.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Numerics.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <ProjectReference Include="../Mono.Security/Mono.Security.csproj">
- <Aliases>MonoSecurity</Aliases>
- </ProjectReference>
- </ItemGroup>
- <ItemGroup Condition=" '$(Platform)' == 'monotouch_watch' ">
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Net.Http.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Net.Http.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Xml.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Xml.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Core.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Core.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Numerics.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Numerics.dll</HintPath>
- <Private>False</Private>
- </Reference>
- </ItemGroup>
- <ItemGroup Condition=" '$(Platform)' == 'monotouch_watch_runtime' ">
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Net.Http.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Net.Http.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Xml.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Xml.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Core.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Core.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Numerics.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Numerics.dll</HintPath>
- <Private>False</Private>
- </Reference>
- </ItemGroup>
- <ItemGroup Condition=" '$(Platform)' == 'monotouch_tv' ">
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Net.Http.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Net.Http.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Xml.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Xml.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Core.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Core.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Numerics.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Numerics.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <ProjectReference Include="../Mono.Security/Mono.Security.csproj">
- <Aliases>MonoSecurity</Aliases>
- </ProjectReference>
- </ItemGroup>
- <ItemGroup Condition=" '$(Platform)' == 'monotouch_tv_runtime' ">
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Net.Http.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Net.Http.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Xml.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Xml.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Core.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Core.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Numerics.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Numerics.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <ProjectReference Include="../Mono.Security/Mono.Security.csproj">
- <Aliases>MonoSecurity</Aliases>
- </ProjectReference>
- </ItemGroup>
- <ItemGroup Condition=" '$(Platform)' == 'testing_aot_full_interp' ">
- <Reference Include="nunitlite">
- <HintPath>..\lib\testing_aot_full_interp\nunitlite.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Net.Http.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Net.Http.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Xml.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Xml.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Core.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Core.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Numerics.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Numerics.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <ProjectReference Include="../Mono.Security/Mono.Security.csproj">
- <Aliases>MonoSecurity</Aliases>
- </ProjectReference>
- </ItemGroup>
- <ItemGroup Condition=" '$(Platform)' == 'testing_aot_hybrid' ">
- <Reference Include="nunitlite">
- <HintPath>..\lib\testing_aot_hybrid\nunitlite.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Net.Http.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Net.Http.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Xml.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Xml.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Core.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Core.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Numerics.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Numerics.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <ProjectReference Include="../Mono.Security/Mono.Security.csproj">
- <Aliases>MonoSecurity</Aliases>
- </ProjectReference>
- </ItemGroup>
- <ItemGroup Condition=" '$(Platform)' == 'testing_aot_full' ">
- <Reference Include="nunitlite">
- <HintPath>..\lib\testing_aot_full\nunitlite.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Net.Http.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Net.Http.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Xml.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Xml.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Core.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Core.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Numerics.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Numerics.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <ProjectReference Include="../Mono.Security/Mono.Security.csproj">
- <Aliases>MonoSecurity</Aliases>
- </ProjectReference>
- </ItemGroup>
- <ItemGroup Condition=" '$(Platform)' == 'winaot' ">
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Net.Http.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Net.Http.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Xml.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Xml.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Core.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Core.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Numerics.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Numerics.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <ProjectReference Include="../Mono.Security/Mono.Security.csproj">
- <Aliases>MonoSecurity</Aliases>
- </ProjectReference>
- </ItemGroup>
- <ItemGroup Condition=" '$(Platform)' == 'xammac' ">
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Net.Http.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Net.Http.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Xml.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Xml.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Core.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Core.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Numerics.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Numerics.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <ProjectReference Include="../Mono.Security/Mono.Security.csproj">
- <Aliases>MonoSecurity</Aliases>
- </ProjectReference>
- </ItemGroup>
- <ItemGroup Condition=" '$(Platform)' == 'xammac_net_4_5' ">
- <Reference Include="./../../../external/binary-reference-assemblies/v4.7.1/System.Net.Http.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/v4.7.1/System.Net.Http.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/v4.7.1/System.Xml.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/v4.7.1/System.Xml.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/v4.7.1/System.Core.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/v4.7.1/System.Core.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/v4.7.1/System.Numerics.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/v4.7.1/System.Numerics.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/v4.7.1/System.Configuration.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/v4.7.1/System.Configuration.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <ProjectReference Include="../Mono.Security/Mono.Security.csproj">
- <Aliases>MonoSecurity</Aliases>
- </ProjectReference>
- </ItemGroup>
- <ItemGroup Condition=" '$(Platform)' == 'orbis' ">
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Net.Http.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Net.Http.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Xml.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Xml.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Core.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Core.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Numerics.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Numerics.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <ProjectReference Include="../Mono.Security/Mono.Security.csproj">
- <Aliases>MonoSecurity</Aliases>
- </ProjectReference>
- </ItemGroup>
- <ItemGroup Condition=" '$(Platform)' == 'unreal' ">
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Net.Http.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Net.Http.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Xml.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Xml.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Core.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Core.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Numerics.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Numerics.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <ProjectReference Include="../Mono.Security/Mono.Security.csproj">
- <Aliases>MonoSecurity</Aliases>
- </ProjectReference>
- </ItemGroup>
- <ItemGroup Condition=" '$(Platform)' == 'wasm' ">
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Net.Http.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Net.Http.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Xml.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Xml.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Core.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Core.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="./../../../external/binary-reference-assemblies/build/monotouch/System.Numerics.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../../external/binary-reference-assemblies/build/monotouch/System.Numerics.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <ProjectReference Include="../Mono.Security/Mono.Security.csproj">
- <Aliases>MonoSecurity</Aliases>
- </ProjectReference>
- </ItemGroup>
- <!-- @ALL_REFERENCES@ -->
- <ItemGroup Condition=" '$(Platform)' == 'net_4_x' ">
- <EmbeddedResource Include="resources/Asterisk.wav">
- <LogicalName>Asterisk.wav</LogicalName>
- </EmbeddedResource>
- <EmbeddedResource Include="resources/Beep.wav">
- <LogicalName>Beep.wav</LogicalName>
- </EmbeddedResource>
- <EmbeddedResource Include="resources/Exclamation.wav">
- <LogicalName>Exclamation.wav</LogicalName>
- </EmbeddedResource>
- <EmbeddedResource Include="resources/Hand.wav">
- <LogicalName>Hand.wav</LogicalName>
- </EmbeddedResource>
- <EmbeddedResource Include="resources/Question.wav">
- <LogicalName>Question.wav</LogicalName>
- </EmbeddedResource>
- </ItemGroup>
- <ItemGroup Condition=" '$(Platform)' == 'xammac_net_4_5' ">
- <EmbeddedResource Include="resources/Asterisk.wav">
- <LogicalName>Asterisk.wav</LogicalName>
- </EmbeddedResource>
- <EmbeddedResource Include="resources/Beep.wav">
- <LogicalName>Beep.wav</LogicalName>
- </EmbeddedResource>
- <EmbeddedResource Include="resources/Exclamation.wav">
- <LogicalName>Exclamation.wav</LogicalName>
- </EmbeddedResource>
- <EmbeddedResource Include="resources/Hand.wav">
- <LogicalName>Hand.wav</LogicalName>
- </EmbeddedResource>
- <EmbeddedResource Include="resources/Question.wav">
- <LogicalName>Question.wav</LogicalName>
- </EmbeddedResource>
- </ItemGroup>
- <!-- @ALL_RESOURCES@ -->
- <PropertyGroup>
- <!-- Force the pre-build event to run after references have been resolved. The default
- behavior is to run them before resolving references, which can cause things like
- culevel.exe to be used before they have been built. -->
- <PreBuildEventDependsOn>ResolveReferences</PreBuildEventDependsOn>
- </PropertyGroup>
- </Project>
|