1 Star 0 Fork 26

下一页为谁而留/unity-demo

forked from huanzi-qch/unity-demo 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Assembly-CSharp.csproj 202.44 KB
一键复制 编辑 原始数据 按行查看 历史
huanzi-qch 提交于 2020-07-15 18:34 . 首次提交
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<LangVersion>latest</LangVersion>
<ProjectTypeGuids>{E097FAD1-6243-4DAD-9C02-E9B9EFC3FFC1};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<_TargetFrameworkDirectories>non_empty_path_generated_by_rider_editor_plugin</_TargetFrameworkDirectories>
<_FullFrameworkReferenceAssemblyPaths>non_empty_path_generated_by_rider_editor_plugin</_FullFrameworkReferenceAssemblyPaths>
<DisableHandlePackageFileConflicts>true</DisableHandlePackageFileConflicts>
</PropertyGroup>
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>10.0.20506</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<RootNamespace></RootNamespace>
<ProjectGuid>{458A1AB8-8261-10B4-F559-2F1DB3D6C35F}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<AssemblyName>Assembly-CSharp</AssemblyName>
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<BaseDirectory>.</BaseDirectory>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>Temp\bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2018_4_11;UNITY_2018_4;UNITY_2018;UNITY_INCLUDE_TESTS;UNITY_ANALYTICS;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_SPRITES;ENABLE_GRID;ENABLE_TILEMAP;ENABLE_TERRAIN;ENABLE_TEXTURE_STREAMING;ENABLE_DIRECTOR;ENABLE_UNET;ENABLE_UNITYEVENTS;ENABLE_WEBCAM;ENABLE_WWW;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_HUB;ENABLE_CLOUD_PROJECT_ID;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_TIMELINE;ENABLE_EDITOR_METRICS;ENABLE_EDITOR_METRICS_CACHING;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;INCLUDE_DYNAMIC_GI;INCLUDE_GI;ENABLE_MONO_BDWGC;RENDER_SOFTWARE_CURSOR;INCLUDE_PUBNUB;ENABLE_VIDEO;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_LOCALIZATION;PLATFORM_WEBGL;UNITY_WEBGL;UNITY_WEBGL_API;UNITY_DISABLE_WEB_VERIFICATION;UNITY_GFX_USE_PLATFORM_VSYNC;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_UNITYWEBREQUEST;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_VR;ENABLE_SPATIALTRACKING;ENABLE_MONO;NET_STANDARD_2_0;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<NoWarn>0169</NoWarn>
<AllowUnsafeBlocks>False</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>Temp\bin\Release\</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<NoWarn>0169</NoWarn>
<AllowUnsafeBlocks>False</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup>
<NoConfig>true</NoConfig>
<NoStdLib>true</NoStdLib>
<AddAdditionalExplicitAssemblyReferences>false</AddAdditionalExplicitAssemblyReferences>
<ImplicitlyExpandNETStandardFacades>false</ImplicitlyExpandNETStandardFacades>
<ImplicitlyExpandDesignTimeFacades>false</ImplicitlyExpandDesignTimeFacades>
</PropertyGroup>
<ItemGroup>
<Reference Include="UnityEngine">
<HintPath>D:\unity3D\Unity\Editor\Data\Managed/UnityEngine/UnityEngine.dll</HintPath>
</Reference>
<Reference Include="UnityEditor">
<HintPath>D:\unity3D\Unity\Editor\Data\Managed/UnityEditor.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Authentication\Credentials.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Authentication\Digest.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Authentication\DigestStore.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Caching\HTTPCacheFileInfo.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Caching\HTTPCacheFileLock.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Caching\HTTPCacheMaintananceParams.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Caching\HTTPCacheService.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Connections\ConnectionBase.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Connections\FileConnection.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Connections\WebGLConnection.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Cookies\Cookie.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Cookies\CookieJar.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Decompression\CRC32.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Decompression\Deflate.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Decompression\DeflateStream.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Decompression\GZipStream.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Decompression\Inflate.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Decompression\InfTree.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Decompression\Zlib.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Decompression\ZlibBaseStream.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Decompression\ZlibCodec.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Decompression\ZlibConstants.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Decompression\ZTree.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Extensions\BufferPoolMemoryStream.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Extensions\CircularBuffer.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Extensions\Extensions.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Extensions\Future.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Extensions\HeaderParser.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Extensions\HeaderValue.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Extensions\HeartbeatManager.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Extensions\HTTPRequestAsyncExtensions.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Extensions\KeyValuePairList.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Extensions\ReadOnlyBufferedStream.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Extensions\StreamList.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Extensions\VariableSizedBufferPool.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Extensions\WriteOnlyBufferedStream.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Extensions\WWWAuthenticateHeaderParser.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Forms\HTTPFieldData.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Forms\HTTPFormBase.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Forms\HTTPFormUsage.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Forms\Implementations\HTTPMultiPartForm.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Forms\Implementations\HTTPUrlEncodedForm.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Forms\Implementations\RawJSonForm.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\HTTPConnection.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\HTTPConnectionStates.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\HTTPManager.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\HTTPMethods.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\HTTPProtocolFactory.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\HTTPProxy.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\HTTPRange.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\HTTPRequest.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\HTTPResponse.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\HTTPUpdateDelegator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\JSON\JSON.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Logger\DefaultLogger.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Logger\ILogger.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\PlatformSupport\Collections\Concurrent\ConcurrentQueue.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\PlatformSupport\Collections\Concurrent\ConcurrentStack.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\PlatformSupport\Collections\ObjectModel\ObservableDictionary.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\PlatformSupport\Collections\Specialized\NotifyCollectionChangedEventArgs.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\PlatformSupport\FileSystem\DefaultIOService.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\PlatformSupport\FileSystem\IIOService.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\PlatformSupport\FileSystem\NETFXCOREIOService.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\PlatformSupport\FileSystem\WebGLIOService.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\PlatformSupport\TcpClient\TcpClient.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\PlatformSupport\TcpClient\WinRT\DataReaderWriterStream.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\PlatformSupport\TcpClient\WinRT\TcpClient.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\PlatformSupport\Threading\ThreadedRunner.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\anssi\ANSSINamedCurves.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\anssi\ANSSIObjectIdentifiers.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\Asn1Encodable.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\Asn1EncodableVector.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\Asn1Exception.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\ASN1Generator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\Asn1InputStream.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\Asn1Null.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\Asn1Object.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\Asn1OctetString.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\ASN1OctetStringParser.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\Asn1OutputStream.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\Asn1ParsingException.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\Asn1Sequence.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\ASN1SequenceParser.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\Asn1Set.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\ASN1SetParser.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\ASN1StreamParser.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\Asn1TaggedObject.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\ASN1TaggedObjectParser.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\Asn1Tags.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\bc\BCObjectIdentifiers.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\BerApplicationSpecific.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\BerApplicationSpecificParser.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\BERBitString.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\BERGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\BerNull.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\BerOctetString.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\BEROctetStringGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\BEROctetStringParser.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\BerOutputStream.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\BerSequence.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\BERSequenceGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\BERSequenceParser.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\BerSet.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\BERSetGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\BERSetParser.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\BerTaggedObject.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\BERTaggedObjectParser.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\bsi\BsiObjectIdentifiers.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cmp\CAKeyUpdAnnContent.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cmp\CertConfirmContent.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cmp\CertifiedKeyPair.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cmp\CertOrEncCert.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cmp\CertRepMessage.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cmp\CertResponse.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cmp\CertStatus.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cmp\Challenge.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cmp\CmpCertificate.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cmp\CmpObjectIdentifiers.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cmp\CrlAnnContent.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cmp\ErrorMsgContent.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cmp\GenMsgContent.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cmp\GenRepContent.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cmp\InfoTypeAndValue.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cmp\KeyRecRepContent.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cmp\OobCertHash.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cmp\PbmParameter.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cmp\PKIBody.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cmp\PKIConfirmContent.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cmp\PKIFailureInfo.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cmp\PKIFreeText.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cmp\PKIHeader.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cmp\PKIHeaderBuilder.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cmp\PKIMessage.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cmp\PKIMessages.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cmp\PKIStatus.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cmp\PKIStatusInfo.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cmp\PollRepContent.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cmp\PollReqContent.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cmp\PopoDecKeyChallContent.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cmp\PopoDecKeyRespContent.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cmp\ProtectedPart.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cmp\RevAnnContent.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cmp\RevDetails.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cmp\RevRepContent.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cmp\RevRepContentBuilder.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cmp\RevReqContent.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\Attribute.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\Attributes.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\AttributeTable.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\AuthenticatedData.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\AuthenticatedDataParser.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\AuthEnvelopedData.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\AuthEnvelopedDataParser.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\CMSAttributes.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\CMSObjectIdentifiers.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\CompressedData.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\CompressedDataParser.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\ContentInfo.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\ContentInfoParser.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\ecc\MQVuserKeyingMaterial.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\EncryptedContentInfo.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\EncryptedContentInfoParser.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\EncryptedData.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\EnvelopedData.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\EnvelopedDataParser.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\Evidence.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\IssuerAndSerialNumber.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\KEKIdentifier.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\KEKRecipientInfo.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\KeyAgreeRecipientIdentifier.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\KeyAgreeRecipientInfo.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\KeyTransRecipientInfo.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\MetaData.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\OriginatorIdentifierOrKey.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\OriginatorInfo.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\OriginatorPublicKey.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\OtherKeyAttribute.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\OtherRecipientInfo.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\OtherRevocationInfoFormat.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\PasswordRecipientInfo.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\RecipientEncryptedKey.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\RecipientIdentifier.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\RecipientInfo.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\RecipientKeyIdentifier.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\SCVPReqRes.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\SignedData.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\SignedDataParser.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\SignerIdentifier.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\SignerInfo.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\Time.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\TimeStampAndCRL.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\TimeStampedData.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\TimeStampedDataParser.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cms\TimeStampTokenEvidence.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\ConstructedOctetStream.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\crmf\AttributeTypeAndValue.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\crmf\CertId.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\crmf\CertReqMessages.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\crmf\CertReqMsg.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\crmf\CertRequest.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\crmf\CertTemplate.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\crmf\CertTemplateBuilder.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\crmf\Controls.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\crmf\CrmfObjectIdentifiers.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\crmf\EncKeyWithID.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\crmf\EncryptedKey.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\crmf\EncryptedValue.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\crmf\OptionalValidity.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\crmf\PKIArchiveOptions.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\crmf\PKIPublicationInfo.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\crmf\PKMacValue.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\crmf\PopoPrivKey.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\crmf\PopoSigningKey.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\crmf\PopoSigningKeyInput.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\crmf\ProofOfPossession.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\crmf\SinglePubInfo.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\crmf\SubsequentMessage.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cryptopro\CryptoProObjectIdentifiers.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cryptopro\ECGOST3410NamedCurves.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cryptopro\ECGOST3410ParamSetParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cryptopro\GOST28147Parameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cryptopro\GOST3410NamedParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cryptopro\GOST3410ParamSetParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cryptopro\GOST3410PublicKeyAlgParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DefiniteLengthInputStream.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerApplicationSpecific.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerBitString.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerBMPString.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerBoolean.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerEnumerated.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DERExternal.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DERExternalParser.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerGeneralizedTime.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerGeneralString.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DERGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerGraphicString.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerIA5String.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerInteger.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerNull.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerNumericString.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerObjectIdentifier.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerOctetString.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DEROctetStringParser.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerOutputStream.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerPrintableString.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerSequence.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DERSequenceGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DERSequenceParser.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerSet.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DERSetGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DERSetParser.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerStringBase.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerT61String.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerTaggedObject.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerUniversalString.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerUTCTime.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerUTF8String.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerVideotexString.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerVisibleString.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\eac\EACObjectIdentifiers.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\edec\EdECObjectIdentifiers.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\esf\CertificateValues.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\esf\CommitmentTypeIdentifier.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\esf\CommitmentTypeIndication.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\esf\CommitmentTypeQualifier.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\esf\CompleteCertificateRefs.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\esf\CompleteRevocationRefs.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\esf\CrlIdentifier.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\esf\CrlListID.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\esf\CrlOcspRef.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\esf\CrlValidatedID.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\esf\ESFAttributes.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\esf\OcspIdentifier.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\esf\OcspListID.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\esf\OcspResponsesID.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\esf\OtherCertID.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\esf\OtherHash.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\esf\OtherHashAlgAndValue.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\esf\OtherRevRefs.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\esf\OtherRevVals.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\esf\OtherSigningCertificate.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\esf\RevocationValues.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\esf\SignaturePolicyId.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\esf\SignaturePolicyIdentifier.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\esf\SignerAttribute.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\esf\SignerLocation.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\esf\SigPolicyQualifierInfo.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\ess\ContentHints.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\ess\ContentIdentifier.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\ess\ESSCertID.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\ess\ESSCertIDv2.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\ess\OtherCertID.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\ess\OtherSigningCertificate.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\ess\SigningCertificate.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\ess\SigningCertificateV2.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\gm\GMNamedCurves.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\gm\GMObjectIdentifiers.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\gnu\GNUObjectIdentifiers.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\iana\IANAObjectIdentifiers.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\IAsn1ApplicationSpecificParser.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\IAsn1Choice.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\IAsn1Convertible.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\IAsn1String.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\icao\CscaMasterList.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\icao\DataGroupHash.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\icao\ICAOObjectIdentifiers.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\icao\LDSSecurityObject.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\icao\LDSVersionInfo.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\IndefiniteLengthInputStream.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\isismtt\ISISMTTObjectIdentifiers.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\isismtt\ocsp\CertHash.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\isismtt\ocsp\RequestedCertificate.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\isismtt\x509\AdditionalInformationSyntax.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\isismtt\x509\Admissions.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\isismtt\x509\AdmissionSyntax.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\isismtt\x509\DeclarationOfMajority.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\isismtt\x509\MonetaryLimit.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\isismtt\x509\NamingAuthority.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\isismtt\x509\ProcurationSyntax.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\isismtt\x509\ProfessionInfo.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\isismtt\x509\Restriction.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\kisa\KISAObjectIdentifiers.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\LazyASN1InputStream.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\LazyDERSequence.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\LazyDERSet.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\LimitedInputStream.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\microsoft\MicrosoftObjectIdentifiers.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\misc\CAST5CBCParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\misc\IDEACBCPar.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\misc\MiscObjectIdentifiers.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\misc\NetscapeCertType.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\misc\NetscapeRevocationURL.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\misc\VerisignCzagExtension.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\mozilla\PublicKeyAndChallenge.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\nist\NISTNamedCurves.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\nist\NISTObjectIdentifiers.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\ntt\NTTObjectIdentifiers.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\ocsp\BasicOCSPResponse.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\ocsp\CertID.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\ocsp\CertStatus.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\ocsp\CrlID.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\ocsp\OCSPObjectIdentifiers.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\ocsp\OCSPRequest.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\ocsp\OCSPResponse.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\ocsp\OCSPResponseStatus.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\ocsp\Request.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\ocsp\ResponderID.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\ocsp\ResponseBytes.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\ocsp\ResponseData.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\ocsp\RevokedInfo.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\ocsp\ServiceLocator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\ocsp\Signature.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\ocsp\SingleResponse.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\ocsp\TBSRequest.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\OidTokenizer.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\oiw\ElGamalParameter.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\oiw\OIWObjectIdentifiers.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\pkcs\Attribute.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\pkcs\AuthenticatedSafe.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\pkcs\CertBag.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\pkcs\CertificationRequest.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\pkcs\CertificationRequestInfo.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\pkcs\ContentInfo.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\pkcs\DHParameter.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\pkcs\EncryptedData.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\pkcs\EncryptedPrivateKeyInfo.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\pkcs\EncryptionScheme.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\pkcs\IssuerAndSerialNumber.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\pkcs\KeyDerivationFunc.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\pkcs\MacData.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\pkcs\PBEParameter.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\pkcs\PBES2Parameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\pkcs\PBKDF2Params.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\pkcs\Pfx.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\pkcs\PKCS12PBEParams.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\pkcs\PKCSObjectIdentifiers.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\pkcs\PrivateKeyInfo.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\pkcs\RC2CBCParameter.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\pkcs\RSAESOAEPparams.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\pkcs\RSAPrivateKeyStructure.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\pkcs\RSASSAPSSparams.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\pkcs\SafeBag.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\pkcs\SignedData.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\pkcs\SignerInfo.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\rosstandart\RosstandartObjectIdentifiers.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\sec\ECPrivateKeyStructure.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\sec\SECNamedCurves.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\sec\SECObjectIdentifiers.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\smime\SMIMEAttributes.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\smime\SMIMECapabilities.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\smime\SMIMECapabilitiesAttribute.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\smime\SMIMECapability.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\smime\SMIMECapabilityVector.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\smime\SMIMEEncryptionKeyPreferenceAttribute.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\teletrust\TeleTrusTNamedCurves.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\teletrust\TeleTrusTObjectIdentifiers.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\tsp\Accuracy.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\tsp\MessageImprint.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\tsp\TimeStampReq.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\tsp\TimeStampResp.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\tsp\TSTInfo.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\ua\UAObjectIdentifiers.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\util\Asn1Dump.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\util\FilterStream.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x500\DirectoryString.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\AccessDescription.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\AlgorithmIdentifier.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\AttCertIssuer.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\AttCertValidityPeriod.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\Attribute.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\AttributeCertificate.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\AttributeCertificateInfo.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\AttributeTable.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\AuthorityInformationAccess.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\AuthorityKeyIdentifier.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\BasicConstraints.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\CertificateList.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\CertificatePair.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\CertificatePolicies.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\CertPolicyId.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\CRLDistPoint.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\CRLNumber.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\CRLReason.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\DigestInfo.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\DisplayText.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\DistributionPoint.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\DistributionPointName.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\DSAParameter.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\ExtendedKeyUsage.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\GeneralName.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\GeneralNames.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\GeneralSubtree.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\Holder.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\IetfAttrSyntax.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\IssuerSerial.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\IssuingDistributionPoint.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\KeyPurposeId.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\KeyUsage.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\NameConstraints.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\NoticeReference.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\ObjectDigestInfo.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\PolicyInformation.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\PolicyMappings.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\PolicyQualifierId.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\PolicyQualifierInfo.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\PrivateKeyUsagePeriod.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\qualified\BiometricData.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\qualified\ETSIQCObjectIdentifiers.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\qualified\Iso4217CurrencyCode.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\qualified\MonetaryValue.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\qualified\QCStatement.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\qualified\RFC3739QCObjectIdentifiers.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\qualified\SemanticsInformation.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\qualified\TypeOfBiometricData.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\ReasonFlags.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\RoleSyntax.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\RSAPublicKeyStructure.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\sigi\NameOrPseudonym.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\sigi\PersonalData.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\sigi\SigIObjectIdentifiers.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\SubjectDirectoryAttributes.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\SubjectKeyIdentifier.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\SubjectPublicKeyInfo.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\Target.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\TargetInformation.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\Targets.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\TBSCertificateStructure.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\TBSCertList.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\Time.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\UserNotice.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\V1TBSCertificateGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\V2AttributeCertificateInfoGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\V2Form.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\V2TBSCertListGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\V3TBSCertificateGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\X509Attributes.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\X509CertificateStructure.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\X509DefaultEntryConverter.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\X509Extension.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\X509Extensions.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\X509ExtensionsGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\X509Name.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\X509NameEntryConverter.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\X509NameTokenizer.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\X509ObjectIdentifiers.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x9\DHDomainParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x9\DHPublicKey.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x9\DHValidationParms.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x9\ECNamedCurveTable.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x9\KeySpecificInfo.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x9\OtherInfo.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x9\X962NamedCurves.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x9\X962Parameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x9\X9Curve.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x9\X9ECParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x9\X9ECParametersHolder.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x9\X9ECPoint.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x9\X9FieldElement.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x9\X9FieldID.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x9\X9IntegerConverter.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x9\X9ObjectIdentifiers.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\BaseDigestCalculator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\CMSAttributeTableGenerationException.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\CMSAttributeTableGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\CMSAuthenticatedData.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\CMSAuthenticatedDataGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\CMSAuthenticatedDataParser.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\CMSAuthenticatedDataStreamGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\CMSAuthenticatedGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\CMSAuthEnvelopedData.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\CMSAuthEnvelopedGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\CMSCompressedData.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\CMSCompressedDataGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\CMSCompressedDataParser.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\CMSCompressedDataStreamGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\CMSContentInfoParser.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\CMSEnvelopedData.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\CMSEnvelopedDataGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\CMSEnvelopedDataParser.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\CMSEnvelopedDataStreamGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\CMSEnvelopedGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\CMSEnvelopedHelper.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\CMSException.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\CMSPBEKey.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\CMSProcessable.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\CMSProcessableByteArray.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\CMSProcessableFile.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\CMSProcessableInputStream.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\CMSReadable.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\CMSSecureReadable.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\CMSSignedData.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\CMSSignedDataGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\CMSSignedDataParser.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\CMSSignedDataStreamGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\CMSSignedGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\CMSSignedHelper.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\CMSStreamException.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\CMSTypedStream.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\CMSUtils.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\CounterSignatureDigestCalculator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\DefaultAuthenticatedAttributeTableGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\DefaultSignedAttributeTableGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\IDigestCalculator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\KEKRecipientInfoGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\KEKRecipientInformation.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\KeyAgreeRecipientInfoGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\KeyAgreeRecipientInformation.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\KeyTransRecipientInfoGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\KeyTransRecipientInformation.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\OriginatorId.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\OriginatorInfoGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\OriginatorInformation.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\PasswordRecipientInfoGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\PasswordRecipientInformation.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\PKCS5Scheme2PBEKey.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\PKCS5Scheme2UTF8PBEKey.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\RecipientId.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\RecipientInfoGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\RecipientInformation.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\RecipientInformationStore.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\SignerId.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\SignerInfoGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\SignerInformation.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\SignerInformationStore.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\cms\SimpleAttributeTableGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\agreement\DHAgreement.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\agreement\DHBasicAgreement.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\agreement\DHStandardGroups.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\agreement\ECDHBasicAgreement.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\agreement\ECDHCBasicAgreement.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\agreement\ECDHWithKdfBasicAgreement.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\agreement\ECMqvBasicAgreement.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\agreement\ECMqvWithKdfBasicAgreement.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\agreement\jpake\JPakeParticipant.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\agreement\jpake\JPakePrimeOrderGroup.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\agreement\jpake\JPakePrimeOrderGroups.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\agreement\jpake\JPakeRound1Payload.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\agreement\jpake\JPakeRound2Payload.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\agreement\jpake\JPakeRound3Payload.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\agreement\jpake\JPakeUtilities.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\agreement\kdf\ConcatenationKdfGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\agreement\kdf\DHKdfParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\agreement\kdf\DHKekGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\agreement\kdf\ECDHKekGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\agreement\SM2KeyExchange.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\agreement\srp\SRP6Client.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\agreement\srp\SRP6Server.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\agreement\srp\SRP6StandardGroups.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\agreement\srp\SRP6Utilities.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\agreement\srp\SRP6VerifierGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\agreement\X25519Agreement.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\agreement\X448Agreement.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\AsymmetricCipherKeyPair.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\AsymmetricKeyParameter.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\BufferedAeadBlockCipher.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\BufferedAsymmetricBlockCipher.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\BufferedBlockCipher.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\BufferedCipherBase.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\BufferedIesCipher.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\BufferedStreamCipher.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\Check.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\CipherKeyGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\CryptoException.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\DataLengthException.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\Blake2bDigest.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\Blake2sDigest.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\DSTU7564Digest.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\GeneralDigest.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\GOST3411_2012_256Digest.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\GOST3411_2012_512Digest.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\GOST3411_2012Digest.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\GOST3411Digest.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\KeccakDigest.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\LongDigest.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\MD2Digest.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\MD4Digest.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\MD5Digest.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\NonMemoableDigest.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\NullDigest.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\RipeMD128Digest.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\RipeMD160Digest.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\RipeMD256Digest.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\RipeMD320Digest.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\Sha1Digest.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\Sha224Digest.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\Sha256Digest.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\Sha384Digest.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\SHA3Digest.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\Sha512Digest.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\Sha512tDigest.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\ShakeDigest.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\ShortenedDigest.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\SkeinDigest.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\SkeinEngine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\SM3Digest.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\TigerDigest.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\WhirlpoolDigest.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\ec\CustomNamedCurves.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\encodings\ISO9796d1Encoding.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\encodings\OaepEncoding.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\encodings\Pkcs1Encoding.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\AesEngine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\AesFastEngine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\AesLightEngine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\AesWrapEngine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\BlowfishEngine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\CamelliaEngine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\CamelliaLightEngine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\CamelliaWrapEngine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\Cast5Engine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\Cast6Engine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\ChaCha7539Engine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\ChaChaEngine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\DesEdeEngine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\DesEdeWrapEngine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\DesEngine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\Dstu7624Engine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\Dstu7624WrapEngine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\ElGamalEngine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\GOST28147Engine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\HC128Engine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\HC256Engine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\IdeaEngine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\IesEngine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\ISAACEngine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\NaccacheSternEngine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\NoekeonEngine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\NullEngine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\RC2Engine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\RC2WrapEngine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\RC4Engine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\RC532Engine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\RC564Engine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\RC6Engine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\RFC3211WrapEngine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\RFC3394WrapEngine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\RijndaelEngine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\RSABlindedEngine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\RSABlindingEngine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\RSACoreEngine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\RsaEngine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\Salsa20Engine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\SEEDEngine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\SEEDWrapEngine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\SerpentEngine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\SerpentEngineBase.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\SkipjackEngine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\SM2Engine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\SM4Engine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\TEAEngine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\ThreefishEngine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\TnepresEngine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\TwofishEngine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\VMPCEngine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\VMPCKSA3Engine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\XSalsa20Engine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\XTEAEngine.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\generators\BaseKdfBytesGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\generators\BCrypt.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\generators\DesEdeKeyGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\generators\DesKeyGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\generators\DHBasicKeyPairGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\generators\DHKeyGeneratorHelper.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\generators\DHKeyPairGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\generators\DHParametersGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\generators\DHParametersHelper.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\generators\DsaKeyPairGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\generators\DsaParametersGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\generators\ECKeyPairGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\generators\Ed25519KeyPairGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\generators\Ed448KeyPairGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\generators\ElGamalKeyPairGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\generators\ElGamalParametersGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\generators\GOST3410KeyPairGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\generators\GOST3410ParametersGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\generators\HKDFBytesGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\generators\Kdf1BytesGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\generators\Kdf2BytesGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\generators\Mgf1BytesGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\generators\NaccacheSternKeyPairGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\generators\OpenBsdBCrypt.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\generators\OpenSSLPBEParametersGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\generators\Pkcs12ParametersGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\generators\Pkcs5S1ParametersGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\generators\Pkcs5S2ParametersGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\generators\Poly1305KeyGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\generators\RSABlindingFactorGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\generators\RsaKeyPairGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\generators\SCrypt.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\generators\X25519KeyPairGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\generators\X448KeyPairGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\IAsymmetricBlockCipher.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\IAsymmetricCipherKeyPairGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\IBasicAgreement.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\IBlockCipher.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\IBlockResult.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\IBufferedCipher.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\ICipherParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\IDerivationFunction.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\IDerivationParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\IDigest.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\IDSA.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\IDsaExt.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\IEntropySource.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\IEntropySourceProvider.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\IMac.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\InvalidCipherTextException.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\io\CipherStream.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\io\DigestSink.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\io\DigestStream.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\io\MacSink.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\io\MacStream.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\io\SignerSink.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\io\SignerStream.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\IRawAgreement.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\IRsa.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\ISignatureFactory.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\ISigner.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\ISignerWithRecovery.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\IStreamCalculator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\IStreamCipher.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\IVerifier.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\IVerifierFactory.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\IVerifierFactoryProvider.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\IWrapper.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\IXof.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\KeyGenerationParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\macs\CbcBlockCipherMac.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\macs\CfbBlockCipherMac.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\macs\CMac.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\macs\DSTU7564Mac.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\macs\DSTU7624Mac.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\macs\GMac.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\macs\GOST28147Mac.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\macs\HMac.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\macs\ISO9797Alg3Mac.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\macs\Poly1305.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\macs\SipHash.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\macs\SkeinMac.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\macs\VMPCMac.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\MaxBytesExceededException.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\modes\CbcBlockCipher.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\modes\CcmBlockCipher.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\modes\CfbBlockCipher.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\modes\CtsBlockCipher.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\modes\EAXBlockCipher.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\modes\gcm\BasicGcmExponentiator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\modes\gcm\BasicGcmMultiplier.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\modes\gcm\GcmUtilities.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\modes\gcm\IGcmExponentiator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\modes\gcm\IGcmMultiplier.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\modes\gcm\Tables1kGcmExponentiator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\modes\gcm\Tables64kGcmMultiplier.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\modes\gcm\Tables8kGcmMultiplier.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\modes\GCMBlockCipher.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\modes\GOFBBlockCipher.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\modes\IAeadBlockCipher.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\modes\KCcmBlockCipher.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\modes\KCtrBlockCipher.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\modes\OCBBlockCipher.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\modes\OfbBlockCipher.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\modes\OpenPgpCfbBlockCipher.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\modes\SicBlockCipher.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\operators\Asn1Signature.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\operators\DefaultSignatureCalculator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\operators\DefaultSignatureResult.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\operators\DefaultVerifierCalculator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\operators\DefaultVerifierResult.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\OutputLengthException.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\paddings\BlockCipherPadding.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\paddings\ISO10126d2Padding.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\paddings\ISO7816d4Padding.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\paddings\PaddedBufferedBlockCipher.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\paddings\Pkcs7Padding.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\paddings\TbcPadding.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\paddings\X923Padding.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\paddings\ZeroBytePadding.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\AEADParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\CcmParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\DesEdeParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\DesParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\DHKeyGenerationParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\DHKeyParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\DHParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\DHPrivateKeyParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\DHPublicKeyParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\DHValidationParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\DsaKeyGenerationParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\DsaKeyParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\DSAParameterGenerationParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\DsaParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\DsaPrivateKeyParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\DsaPublicKeyParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\DsaValidationParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\ECDomainParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\ECKeyGenerationParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\ECKeyParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\ECPrivateKeyParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\ECPublicKeyParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\Ed25519KeyGenerationParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\Ed25519PrivateKeyParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\Ed25519PublicKeyParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\Ed448KeyGenerationParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\Ed448PrivateKeyParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\Ed448PublicKeyParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\ElGamalKeyGenerationParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\ElGamalKeyParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\ElGamalParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\ElGamalPrivateKeyParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\ElGamalPublicKeyParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\GOST3410KeyGenerationParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\GOST3410KeyParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\GOST3410Parameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\GOST3410PrivateKeyParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\GOST3410PublicKeyParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\GOST3410ValidationParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\HKDFParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\IesParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\IesWithCipherParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\ISO18033KDFParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\KdfParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\KeyParameter.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\MgfParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\MqvPrivateParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\MqvPublicParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\NaccacheSternKeyGenerationParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\NaccacheSternKeyParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\NaccacheSternPrivateKeyParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\ParametersWithID.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\ParametersWithIV.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\ParametersWithRandom.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\ParametersWithSalt.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\ParametersWithSBox.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\RC2Parameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\RC5Parameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\RSABlindingParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\RsaKeyGenerationParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\RsaKeyParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\RsaPrivateCrtKeyParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\SkeinParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\SM2KeyExchangePrivateParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\SM2KeyExchangePublicParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\Srp6GroupParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\TweakableBlockCipherParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\X25519KeyGenerationParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\X25519PrivateKeyParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\X25519PublicKeyParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\X448KeyGenerationParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\X448PrivateKeyParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\X448PublicKeyParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\PbeParametersGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\prng\BasicEntropySourceProvider.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\prng\CryptoApiEntropySourceProvider.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\prng\CryptoApiRandomGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\prng\DigestRandomGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\prng\drbg\CtrSP800Drbg.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\prng\drbg\DrbgUtilities.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\prng\drbg\HashSP800Drbg.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\prng\drbg\HMacSP800Drbg.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\prng\drbg\ISP80090Drbg.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\prng\EntropyUtilities.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\prng\IDrbgProvider.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\prng\IRandomGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\prng\ReversedWindowGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\prng\SP800SecureRandom.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\prng\SP800SecureRandomBuilder.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\prng\ThreadedSeedGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\prng\VMPCRandomGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\prng\X931Rng.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\prng\X931SecureRandom.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\prng\X931SecureRandomBuilder.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\signers\DsaDigestSigner.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\signers\DsaSigner.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\signers\ECDsaSigner.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\signers\ECGOST3410Signer.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\signers\ECNRSigner.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\signers\Ed25519ctxSigner.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\signers\Ed25519phSigner.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\signers\Ed25519Signer.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\signers\Ed448phSigner.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\signers\Ed448Signer.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\signers\GenericSigner.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\signers\GOST3410DigestSigner.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\signers\GOST3410Signer.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\signers\HMacDsaKCalculator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\signers\IDsaEncoding.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\signers\IDsaKCalculator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\signers\Iso9796d2PssSigner.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\signers\Iso9796d2Signer.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\signers\IsoTrailers.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\signers\PlainDsaEncoding.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\signers\PssSigner.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\signers\RandomDsaKCalculator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\signers\RsaDigestSigner.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\signers\SM2Signer.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\signers\StandardDsaEncoding.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\signers\X931Signer.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\StreamBlockCipher.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\AbstractTlsAgreementCredentials.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\AbstractTlsCipherFactory.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\AbstractTlsClient.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\AbstractTlsContext.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\AbstractTlsCredentials.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\AbstractTlsEncryptionCredentials.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\AbstractTlsKeyExchange.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\AbstractTlsPeer.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\AbstractTlsServer.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\AbstractTlsSigner.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\AbstractTlsSignerCredentials.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\AlertDescription.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\AlertLevel.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\AlwaysValidVerifyer.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\BasicTlsPskIdentity.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\BulkCipherAlgorithm.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\ByteQueue.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\ByteQueueStream.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\CertChainType.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\Certificate.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\CertificateRequest.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\CertificateStatus.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\CertificateStatusRequest.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\CertificateStatusType.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\CertificateType.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\CertificateUrl.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\Chacha20Poly1305.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\ChangeCipherSpec.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\CipherSuite.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\CipherType.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\ClientAuthenticationType.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\ClientCertificateType.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\CombinedHash.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\CompressionMethod.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\ConnectionEnd.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\ContentType.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\DatagramTransport.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\DefaultTlsAgreementCredentials.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\DefaultTlsCipherFactory.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\DefaultTlsClient.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\DefaultTlsDHVerifier.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\DefaultTlsEncryptionCredentials.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\DefaultTlsServer.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\DefaultTlsSignerCredentials.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\DefaultTlsSrpGroupVerifier.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\DeferredHash.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\DigestInputBuffer.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\DigitallySigned.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\DtlsClientProtocol.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\DtlsEpoch.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\DtlsHandshakeRetransmit.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\DtlsProtocol.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\DtlsReassembler.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\DtlsRecordLayer.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\DtlsReliableHandshake.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\DtlsReplayWindow.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\DtlsServerProtocol.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\DtlsTransport.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\ECBasisType.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\ECCurveType.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\ECPointFormat.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\EncryptionAlgorithm.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\ExporterLabel.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\ExtensionType.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\FiniteFieldDheGroup.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\HandshakeType.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\HashAlgorithm.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\HeartbeatExtension.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\HeartbeatMessage.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\HeartbeatMessageType.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\HeartbeatMode.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\ICertificateVerifyer.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\KeyExchangeAlgorithm.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\LegacyTlsAuthentication.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\LegacyTlsClient.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\MacAlgorithm.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\MaxFragmentLength.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\NamedCurve.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\NameType.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\NewSessionTicket.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\OcspStatusRequest.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\PrfAlgorithm.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\ProtocolVersion.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\PskTlsClient.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\PskTlsServer.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\RecordStream.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\SecurityParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\ServerDHParams.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\ServerName.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\ServerNameList.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\ServerOnlyTlsAuthentication.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\ServerSrpParams.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\SessionParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\SignatureAlgorithm.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\SignatureAndHashAlgorithm.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\SignerInputBuffer.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\SimulatedTlsSrpIdentityManager.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\SrpTlsClient.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\SrpTlsServer.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\SrtpProtectionProfile.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\Ssl3Mac.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\SupplementalDataEntry.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\SupplementalDataType.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsAeadCipher.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsAgreementCredentials.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsAuthentication.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsBlockCipher.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsCipher.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsCipherFactory.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsClient.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsClientContext.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsClientContextImpl.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsClientProtocol.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsCompression.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsContext.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsCredentials.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsDeflateCompression.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsDheKeyExchange.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsDHKeyExchange.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsDHUtilities.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsDHVerifier.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsDsaSigner.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsDssSigner.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsEccUtilities.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsECDheKeyExchange.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsECDHKeyExchange.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsECDsaSigner.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsEncryptionCredentials.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsException.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsExtensionsUtilities.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsFatalAlert.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsFatalAlertReceived.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsHandshakeHash.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsKeyExchange.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsMac.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsNoCloseNotifyException.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsNullCipher.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsNullCompression.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsPeer.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsProtocol.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsProtocolHandler.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsPskIdentity.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsPskIdentityManager.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsPskKeyExchange.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsRsaKeyExchange.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsRsaSigner.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsRsaUtilities.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsServer.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsServerContext.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsServerContextImpl.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsServerProtocol.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsSession.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsSessionImpl.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsSigner.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsSignerCredentials.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsSrpGroupVerifier.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsSrpIdentityManager.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsSrpKeyExchange.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsSrpLoginParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsSrpUtilities.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsSrtpUtilities.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsStream.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsStreamCipher.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsUtilities.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\UrlAndHash.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\UserMappingType.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\UseSrtpData.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\util\Pack.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\BigInteger.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\abc\SimpleBigDecimal.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\abc\Tnaf.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\abc\ZTauElement.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\djb\Curve25519.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\djb\Curve25519Field.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\djb\Curve25519FieldElement.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\djb\Curve25519Point.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\gm\SM2P256V1Curve.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\gm\SM2P256V1Field.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\gm\SM2P256V1FieldElement.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\gm\SM2P256V1Point.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP128R1Curve.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP128R1Field.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP128R1FieldElement.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP128R1Point.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP160K1Curve.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP160K1Point.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP160R1Curve.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP160R1Field.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP160R1FieldElement.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP160R1Point.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP160R2Curve.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP160R2Field.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP160R2FieldElement.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP160R2Point.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP192K1Curve.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP192K1Field.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP192K1FieldElement.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP192K1Point.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP192R1Curve.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP192R1Field.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP192R1FieldElement.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP192R1Point.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP224K1Curve.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP224K1Field.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP224K1FieldElement.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP224K1Point.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP224R1Curve.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP224R1Field.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP224R1FieldElement.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP224R1Point.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP256K1Curve.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP256K1Field.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP256K1FieldElement.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP256K1Point.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP256R1Curve.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP256R1Field.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP256R1FieldElement.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP256R1Point.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP384R1Curve.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP384R1Field.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP384R1FieldElement.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP384R1Point.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP521R1Curve.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP521R1Field.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP521R1FieldElement.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP521R1Point.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT113Field.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT113FieldElement.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT113R1Curve.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT113R1Point.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT113R2Curve.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT113R2Point.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT131Field.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT131FieldElement.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT131R1Curve.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT131R1Point.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT131R2Curve.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT131R2Point.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT163Field.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT163FieldElement.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT163K1Curve.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT163K1Point.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT163R1Curve.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT163R1Point.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT163R2Curve.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT163R2Point.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT193Field.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT193FieldElement.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT193R1Curve.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT193R1Point.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT193R2Curve.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT193R2Point.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT233Field.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT233FieldElement.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT233K1Curve.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT233K1Point.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT233R1Curve.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT233R1Point.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT239Field.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT239FieldElement.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT239K1Curve.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT239K1Point.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT283Field.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT283FieldElement.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT283K1Curve.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT283K1Point.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT283R1Curve.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT283R1Point.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT409Field.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT409FieldElement.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT409K1Curve.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT409K1Point.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT409R1Curve.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT409R1Point.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT571Field.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT571FieldElement.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT571K1Curve.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT571K1Point.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT571R1Curve.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT571R1Point.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\ECAlgorithms.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\ECCurve.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\ECFieldElement.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\ECLookupTable.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\ECPoint.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\ECPointMap.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\endo\ECEndomorphism.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\endo\GlvEndomorphism.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\endo\GlvTypeBEndomorphism.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\endo\GlvTypeBParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\LongArray.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\multiplier\AbstractECMultiplier.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\multiplier\DoubleAddMultiplier.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\multiplier\ECMultiplier.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\multiplier\FixedPointCombMultiplier.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\multiplier\FixedPointPreCompInfo.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\multiplier\FixedPointUtilities.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\multiplier\GlvMultiplier.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\multiplier\IPreCompCallback.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\multiplier\MixedNafR2LMultiplier.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\multiplier\MontgomeryLadderMultiplier.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\multiplier\NafL2RMultiplier.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\multiplier\NafR2LMultiplier.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\multiplier\PreCompInfo.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\multiplier\ReferenceMultiplier.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\multiplier\ValidityPreCompInfo.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\multiplier\WNafL2RMultiplier.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\multiplier\WNafPreCompInfo.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\multiplier\WNafUtilities.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\multiplier\WTauNafMultiplier.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\multiplier\WTauNafPreCompInfo.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\multiplier\ZSignedDigitL2RMultiplier.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\multiplier\ZSignedDigitR2LMultiplier.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\rfc7748\X25519.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\rfc7748\X25519Field.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\rfc7748\X448.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\rfc7748\X448Field.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\rfc8032\Ed25519.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\rfc8032\Ed448.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\ScaleXPointMap.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\ScaleYPointMap.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\SimpleLookupTable.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\field\FiniteFields.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\field\GenericPolynomialExtensionField.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\field\GF2Polynomial.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\field\IExtensionField.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\field\IFiniteField.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\field\IPolynomial.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\field\IPolynomialExtensionField.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\field\PrimeField.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\Primes.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\raw\Interleave.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\raw\Mod.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\raw\Nat.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\raw\Nat128.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\raw\Nat160.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\raw\Nat192.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\raw\Nat224.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\raw\Nat256.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\raw\Nat320.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\raw\Nat384.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\raw\Nat448.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\raw\Nat512.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\raw\Nat576.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\ocsp\BasicOCSPResp.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\ocsp\BasicOCSPRespGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\ocsp\CertificateID.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\ocsp\CertificateStatus.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\ocsp\OCSPException.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\ocsp\OCSPReq.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\ocsp\OCSPReqGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\ocsp\OCSPResp.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\ocsp\OCSPRespGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\ocsp\OCSPRespStatus.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\ocsp\OCSPUtil.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\ocsp\Req.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\ocsp\RespData.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\ocsp\RespID.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\ocsp\RevokedStatus.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\ocsp\SingleResp.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\ocsp\UnknownStatus.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\openssl\EncryptionException.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\openssl\IPasswordFinder.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\openssl\MiscPemGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\openssl\PasswordException.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\openssl\PEMException.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\openssl\PEMReader.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\openssl\PEMUtilities.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\openssl\PEMWriter.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\openssl\Pkcs8Generator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\pkcs\AsymmetricKeyEntry.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\pkcs\EncryptedPrivateKeyInfoFactory.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\pkcs\Pkcs10CertificationRequest.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\pkcs\Pkcs10CertificationRequestDelaySigned.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\pkcs\Pkcs12Entry.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\pkcs\Pkcs12Store.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\pkcs\PKCS12StoreBuilder.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\pkcs\Pkcs12Utilities.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\pkcs\PrivateKeyInfoFactory.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\pkcs\X509CertificateEntry.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\pkix\CertStatus.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\pkix\PkixAttrCertChecker.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\pkix\PkixAttrCertPathBuilder.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\pkix\PkixAttrCertPathValidator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\pkix\PkixBuilderParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\pkix\PkixCertPath.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\pkix\PkixCertPathBuilder.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\pkix\PkixCertPathBuilderException.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\pkix\PkixCertPathBuilderResult.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\pkix\PkixCertPathChecker.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\pkix\PkixCertPathValidator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\pkix\PkixCertPathValidatorException.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\pkix\PkixCertPathValidatorResult.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\pkix\PkixCertPathValidatorUtilities.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\pkix\PkixCrlUtilities.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\pkix\PkixNameConstraintValidator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\pkix\PkixNameConstraintValidatorException.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\pkix\PkixParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\pkix\PkixPolicyNode.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\pkix\ReasonsMask.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\pkix\Rfc3280CertPathUtilities.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\pkix\Rfc3281CertPathUtilities.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\pkix\TrustAnchor.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\ReflectionHelpers.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\security\AgreementUtilities.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\security\cert\CertificateEncodingException.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\security\cert\CertificateException.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\security\cert\CertificateExpiredException.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\security\cert\CertificateNotYetValidException.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\security\cert\CertificateParsingException.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\security\cert\CrlException.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\security\CipherUtilities.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\security\DigestUtilities.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\security\DotNetUtilities.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\security\GeneralSecurityException.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\security\GeneratorUtilities.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\security\InvalidKeyException.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\security\InvalidParameterException.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\security\KeyException.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\security\MacUtilities.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\security\NoSuchAlgorithmException.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\security\ParameterUtilities.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\security\PbeUtilities.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\security\PrivateKeyFactory.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\security\PublicKeyFactory.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\security\SecureRandom.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\security\SecurityUtilityException.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\security\SignatureException.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\security\SignerUtilities.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\security\WrapperUtilities.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\tsp\GenTimeAccuracy.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\tsp\TimeStampRequest.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\tsp\TimeStampRequestGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\tsp\TimeStampResponse.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\tsp\TimeStampResponseGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\tsp\TimeStampToken.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\tsp\TimeStampTokenGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\tsp\TimeStampTokenInfo.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\tsp\TSPAlgorithms.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\tsp\TSPException.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\tsp\TSPUtil.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\tsp\TSPValidationException.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\Arrays.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\BigIntegers.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\collections\CollectionUtilities.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\collections\EmptyEnumerable.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\collections\EnumerableProxy.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\collections\HashSet.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\collections\ISet.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\collections\LinkedDictionary.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\collections\UnmodifiableDictionary.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\collections\UnmodifiableDictionaryProxy.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\collections\UnmodifiableList.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\collections\UnmodifiableListProxy.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\collections\UnmodifiableSet.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\collections\UnmodifiableSetProxy.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\date\DateTimeObject.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\date\DateTimeUtilities.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\encoders\Base64.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\encoders\Base64Encoder.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\encoders\BufferedDecoder.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\encoders\BufferedEncoder.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\encoders\Hex.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\encoders\HexEncoder.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\encoders\HexTranslator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\encoders\IEncoder.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\encoders\Translator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\encoders\UrlBase64.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\encoders\UrlBase64Encoder.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\Enums.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\IMemoable.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\Integers.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\io\BaseInputStream.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\io\BaseOutputStream.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\io\FilterStream.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\io\NullOutputStream.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\io\pem\PemGenerationException.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\io\pem\PemHeader.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\io\pem\PemObject.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\io\pem\PemObjectGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\io\pem\PemObjectParser.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\io\pem\PemReader.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\io\pem\PemWriter.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\io\PushbackStream.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\io\StreamOverflowException.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\io\Streams.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\io\TeeInputStream.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\io\TeeOutputStream.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\MemoableResetException.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\net\IPAddress.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\Platform.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\Strings.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\Times.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\TypeExtensions.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\zlib\Adler32.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\zlib\Deflate.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\zlib\InfBlocks.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\zlib\InfCodes.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\zlib\Inflate.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\zlib\InfTree.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\zlib\JZlib.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\zlib\StaticTree.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\zlib\ZDeflaterOutputStream.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\zlib\ZInflaterInputStream.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\zlib\ZInputStream.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\zlib\ZOutputStream.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\zlib\ZStream.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\zlib\ZTree.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\AttributeCertificateHolder.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\AttributeCertificateIssuer.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\extension\AuthorityKeyIdentifierStructure.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\extension\SubjectKeyIdentifierStructure.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\extension\X509ExtensionUtil.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\IX509AttributeCertificate.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\IX509Extension.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\PEMParser.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\PrincipalUtil.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\store\IX509Selector.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\store\IX509Store.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\store\IX509StoreParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\store\NoSuchStoreException.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\store\X509AttrCertStoreSelector.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\store\X509CertPairStoreSelector.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\store\X509CertStoreSelector.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\store\X509CollectionStore.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\store\X509CollectionStoreParameters.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\store\X509CrlStoreSelector.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\store\X509StoreException.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\store\X509StoreFactory.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\SubjectPublicKeyInfoFactory.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\X509AttrCertParser.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\X509Attribute.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\X509Certificate.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\X509CertificatePair.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\X509CertificateParser.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\X509CertPairParser.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\X509Crl.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\X509CrlEntry.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\X509CrlParser.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\X509ExtensionBase.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\X509KeyUsage.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\X509SignatureUtil.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\X509Utilities.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\X509V1CertificateGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\X509V2AttributeCertificate.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\X509V2AttributeCertificateGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\X509V2CRLGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\X509V3CertificateGenerator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\ServerSentEvents\EventSource.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\ServerSentEvents\EventSourceResponse.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\ServerSentEvents\Message.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SignalR\Authentication\IAuthenticationProvider.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SignalR\Connection.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SignalR\Enums.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SignalR\Hubs\Hub.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SignalR\Hubs\IHub.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SignalR\JsonEncoders\DefaultJsonEncoder.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SignalR\JsonEncoders\IJsonEncoder.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SignalR\Messages\ClientMessage.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SignalR\Messages\IServerMessage.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SignalR\Messages\ServerMessages.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SignalR\NegotiationData.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SignalR\Transports\PollingTransport.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SignalR\Transports\PostSendTransportBase.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SignalR\Transports\ServerSentEventsTransport.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SignalR\Transports\TransportBase.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SignalR\Transports\WebSocketTransport.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SignalRCore\Authentication\DefaultAccessTokenAuthenticator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SignalRCore\Extensions.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SignalRCore\HelperClasses.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SignalRCore\HubConnection.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SignalRCore\IAuthenticationProvider.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SignalRCore\JsonProtocol.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SignalRCore\Messages\Invocation.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SignalRCore\Messages\Message.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SignalRCore\Messages\NegotiationResult.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SignalRCore\SpecializedFutures.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SignalRCore\Transports\WebsocketTransport.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SignalRCore\UploadItemController.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SocketIO\Enums.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SocketIO\Error.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SocketIO\Events\EventDescriptor.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SocketIO\Events\EventNames.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SocketIO\Events\EventTable.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SocketIO\HandshakeData.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SocketIO\Interfaces.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SocketIO\JsonEncoders\DefaultJSonEncoder.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SocketIO\JsonEncoders\IJSonEncoder.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SocketIO\Packet.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SocketIO\Socket.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SocketIO\SocketManager.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SocketIO\SocketOptions.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SocketIO\Transports\ITransport.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SocketIO\Transports\PollingTransport.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SocketIO\Transports\WebSocketTransport.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\SOCKSProxy.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\Statistics\Statistics.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\WebSocket\Extensions\IExtension.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\WebSocket\Extensions\PerMessageCompression.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\WebSocket\Frames\WebSocketFrame.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\WebSocket\Frames\WebSocketFrameReader.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\WebSocket\Frames\WebSocketFrameTypes.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\WebSocket\WebSocket.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\WebSocket\WebSocketResponse.cs" />
<Compile Include="Assets\Best HTTP (Pro)\BestHTTP\WebSocket\WebSocketStatusCodes.cs" />
<Compile Include="Assets\Best HTTP (Pro)\Examples\Helpers\GUIHelper.cs" />
<Compile Include="Assets\Best HTTP (Pro)\Examples\HTTP\AssetBundleSample.cs" />
<Compile Include="Assets\Best HTTP (Pro)\Examples\HTTP\LargeFileDownloadSample.cs" />
<Compile Include="Assets\Best HTTP (Pro)\Examples\HTTP\TextureDownloadSample.cs" />
<Compile Include="Assets\Best HTTP (Pro)\Examples\HTTP\UploadStream.cs" />
<Compile Include="Assets\Best HTTP (Pro)\Examples\LitJson\IJsonWrapper.cs" />
<Compile Include="Assets\Best HTTP (Pro)\Examples\LitJson\JsonData.cs" />
<Compile Include="Assets\Best HTTP (Pro)\Examples\LitJson\JsonException.cs" />
<Compile Include="Assets\Best HTTP (Pro)\Examples\LitJson\JsonMapper.cs" />
<Compile Include="Assets\Best HTTP (Pro)\Examples\LitJson\JsonMockWrapper.cs" />
<Compile Include="Assets\Best HTTP (Pro)\Examples\LitJson\JsonReader.cs" />
<Compile Include="Assets\Best HTTP (Pro)\Examples\LitJson\JsonWriter.cs" />
<Compile Include="Assets\Best HTTP (Pro)\Examples\LitJson\Lexer.cs" />
<Compile Include="Assets\Best HTTP (Pro)\Examples\LitJson\ParserToken.cs" />
<Compile Include="Assets\Best HTTP (Pro)\Examples\Plugin\AsyncExtensions.cs" />
<Compile Include="Assets\Best HTTP (Pro)\Examples\Plugin\CacheMaintenanceSample.cs" />
<Compile Include="Assets\Best HTTP (Pro)\Examples\SampleSelector.cs" />
<Compile Include="Assets\Best HTTP (Pro)\Examples\Server-Sent Events\SimpleTest.cs" />
<Compile Include="Assets\Best HTTP (Pro)\Examples\SignalR\Authentication Providers\SampleCookieAuthentication.cs" />
<Compile Include="Assets\Best HTTP (Pro)\Examples\SignalR\Authentication Providers\SampleHeaderAuthentication.cs" />
<Compile Include="Assets\Best HTTP (Pro)\Examples\SignalR\AuthenticationSample.cs" />
<Compile Include="Assets\Best HTTP (Pro)\Examples\SignalR\ConnectionAPISample.cs" />
<Compile Include="Assets\Best HTTP (Pro)\Examples\SignalR\ConnectionStatusSample.cs" />
<Compile Include="Assets\Best HTTP (Pro)\Examples\SignalR\DemoHubSample.cs" />
<Compile Include="Assets\Best HTTP (Pro)\Examples\SignalR\Json Encoders\JSonDotnetEncoder.cs" />
<Compile Include="Assets\Best HTTP (Pro)\Examples\SignalR\Json Encoders\LitJsonEncoder.cs" />
<Compile Include="Assets\Best HTTP (Pro)\Examples\SignalR\SimpleStreamingSample.cs" />
<Compile Include="Assets\Best HTTP (Pro)\Examples\SignalRCore\Authentication Providers\HeaderAuthenticator.cs" />
<Compile Include="Assets\Best HTTP (Pro)\Examples\SignalRCore\Encoders\JsonDotNetEncoder.cs" />
<Compile Include="Assets\Best HTTP (Pro)\Examples\SignalRCore\Encoders\LitJsonEncoder.cs" />
<Compile Include="Assets\Best HTTP (Pro)\Examples\SignalRCore\Encoders\MessagePackProtocol.cs" />
<Compile Include="Assets\Best HTTP (Pro)\Examples\SignalRCore\HubWithAuthorization.cs" />
<Compile Include="Assets\Best HTTP (Pro)\Examples\SignalRCore\HubWithPreAuthorizationSample.cs" />
<Compile Include="Assets\Best HTTP (Pro)\Examples\SignalRCore\RedirectSample.cs" />
<Compile Include="Assets\Best HTTP (Pro)\Examples\SignalRCore\TestHubExample.cs" />
<Compile Include="Assets\Best HTTP (Pro)\Examples\SignalRCore\UploadHubSample.cs" />
<Compile Include="Assets\Best HTTP (Pro)\Examples\SocketIO\SocketIO Json Encoders\JsonDotNetEncoder.cs" />
<Compile Include="Assets\Best HTTP (Pro)\Examples\SocketIO\SocketIO Json Encoders\LitJsonEncoder.cs" />
<Compile Include="Assets\Best HTTP (Pro)\Examples\SocketIO\SocketIOChatSample.cs" />
<Compile Include="Assets\Best HTTP (Pro)\Examples\SocketIO\SocketIOWePlaySample.cs" />
<Compile Include="Assets\Best HTTP (Pro)\Examples\Websocket\WebSocketSample.cs" />
<Compile Include="Assets\Demigiant\DOTween\Modules\DOTweenModuleAudio.cs" />
<Compile Include="Assets\Demigiant\DOTween\Modules\DOTweenModulePhysics.cs" />
<Compile Include="Assets\Demigiant\DOTween\Modules\DOTweenModulePhysics2D.cs" />
<Compile Include="Assets\Demigiant\DOTween\Modules\DOTweenModuleSprite.cs" />
<Compile Include="Assets\Demigiant\DOTween\Modules\DOTweenModuleUI.cs" />
<Compile Include="Assets\Demigiant\DOTween\Modules\DOTweenModuleUnityVersion.cs" />
<Compile Include="Assets\Demigiant\DOTween\Modules\DOTweenModuleUtils.cs" />
<Compile Include="Assets\Scripts\Billboard\Billboard.cs" />
<Compile Include="Assets\Scripts\Common\Camera\CameraMove.cs" />
<Compile Include="Assets\Scripts\Common\Click\Click.cs" />
<Compile Include="Assets\Scripts\Common\Http\Config.cs" />
<Compile Include="Assets\Scripts\Common\Http\ConfigVo.cs" />
<Compile Include="Assets\Scripts\Common\Random\Random.cs" />
<Compile Include="Assets\Scripts\CubeAnimation.cs" />
<Compile Include="Assets\Scripts\Dialog\Dialog.cs" />
<Compile Include="Assets\Scripts\Dialog\Drag.cs" />
<Compile Include="Assets\Scripts\Line\BezierUtils.cs" />
<Compile Include="Assets\Scripts\Line\Line.cs" />
<Compile Include="Assets\Scripts\Main.cs" />
<Compile Include="Assets\Scripts\Video\Video.cs" />
<None Include="Assets\StreamingAssets\Config.txt" />
<None Include="Assets\Best HTTP (Pro)\BestHTTP\SecureProtocol\License.txt" />
<None Include="Assets\Best HTTP (Pro)\link_android_subset.xml" />
<None Include="Assets\Demigiant\DOTween\readme.txt" />
<None Include="Assets\Best HTTP (Pro)\ReleaseNotes.txt" />
<None Include="Assets\Best HTTP (Pro)\license.txt" />
<None Include="Assets\Best HTTP (Pro)\link.xml" />
<Reference Include="Unity.TextMeshPro.Editor">
<HintPath>D:/unity3D/unity-code/unity-demo/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll</HintPath>
</Reference>
<Reference Include="Unity.PackageManagerUI.Editor">
<HintPath>D:/unity3D/unity-code/unity-demo/Library/ScriptAssemblies/Unity.PackageManagerUI.Editor.dll</HintPath>
</Reference>
<Reference Include="Unity.CollabProxy.Editor">
<HintPath>D:/unity3D/unity-code/unity-demo/Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll</HintPath>
</Reference>
<Reference Include="Unity.TextMeshPro">
<HintPath>D:/unity3D/unity-code/unity-demo/Library/ScriptAssemblies/Unity.TextMeshPro.dll</HintPath>
</Reference>
<Reference Include="Unity.Analytics.DataPrivacy">
<HintPath>D:/unity3D/unity-code/unity-demo/Library/ScriptAssemblies/Unity.Analytics.DataPrivacy.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.AIModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.ARModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.AccessibilityModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.AnimationModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.AssetBundleModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.AudioModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.BaselibModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.BaselibModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.ClothModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.CoreModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.CrashReportingModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.DirectorModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.FileSystemHttpModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.FileSystemHttpModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.GameCenterModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.GridModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.HotReloadModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.IMGUIModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.ImageConversionModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.InputModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.JSONSerializeModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.LocalizationModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.ParticleSystemModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.PerformanceReportingModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.PhysicsModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.Physics2DModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.ProfilerModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.ScreenCaptureModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.SharedInternalsModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.SpatialTrackingModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SpatialTrackingModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.SpriteMaskModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.SpriteShapeModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.StreamingModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.StyleSheetsModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.StyleSheetsModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.SubstanceModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.TLSModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.TerrainModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.TerrainPhysicsModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.TextCoreModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.TextRenderingModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.TilemapModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.TimelineModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TimelineModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UIModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UIElementsModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UNETModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UNETModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UmbraModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UnityAnalyticsModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UnityConnectModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UnityTestProtocolModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UnityWebRequestModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UnityWebRequestAssetBundleModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UnityWebRequestAudioModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UnityWebRequestTextureModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UnityWebRequestWWWModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.VFXModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.VRModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.VehiclesModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.VideoModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.WebGLModule">
<HintPath>D:/unity3D/Unity/Editor/Data/PlaybackEngines/WebGLSupport/Managed/UnityEngine.WebGLModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.WindModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.XRModule">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll</HintPath>
</Reference>
<Reference Include="Unity.Locator">
<HintPath>D:/unity3D/Unity/Editor/Data/Managed/Unity.Locator.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UI">
<HintPath>D:/unity3D/Unity/Editor/Data/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.TestRunner">
<HintPath>D:/unity3D/Unity/Editor/Data/UnityExtensions/Unity/TestRunner/UnityEngine.TestRunner.dll</HintPath>
</Reference>
<Reference Include="nunit.framework">
<HintPath>D:/unity3D/Unity/Editor/Data/UnityExtensions/Unity/TestRunner/net35/unity-custom/nunit.framework.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.Timeline">
<HintPath>D:/unity3D/Unity/Editor/Data/UnityExtensions/Unity/Timeline/RuntimeEditor/UnityEngine.Timeline.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.Networking">
<HintPath>D:/unity3D/Unity/Editor/Data/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.GoogleAudioSpatializer">
<HintPath>D:/unity3D/Unity/Editor/Data/UnityExtensions/Unity/UnityGoogleAudioSpatializer/RuntimeEditor/UnityEngine.GoogleAudioSpatializer.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.SpatialTracking">
<HintPath>D:/unity3D/Unity/Editor/Data/UnityExtensions/Unity/UnitySpatialTracking/RuntimeEditor/UnityEngine.SpatialTracking.dll</HintPath>
</Reference>
<Reference Include="DOTween">
<HintPath>D:/unity3D/unity-code/unity-demo/Assets/Demigiant/DOTween/DOTween.dll</HintPath>
</Reference>
<Reference Include="Unity.Analytics.Editor">
<HintPath>D:/unity3D/unity-code/unity-demo/Library/PackageCache/com.unity.analytics@3.2.2/Unity.Analytics.Editor.dll</HintPath>
</Reference>
<Reference Include="Unity.Analytics.StandardEvents">
<HintPath>D:/unity3D/unity-code/unity-demo/Library/PackageCache/com.unity.analytics@3.2.2/Unity.Analytics.StandardEvents.dll</HintPath>
</Reference>
<Reference Include="Unity.Analytics.Tracker">
<HintPath>D:/unity3D/unity-code/unity-demo/Library/PackageCache/com.unity.analytics@3.2.2/Unity.Analytics.Tracker.dll</HintPath>
</Reference>
<Reference Include="netstandard">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/ref/2.0.0/netstandard.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Win32.Primitives">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll</HintPath>
</Reference>
<Reference Include="System.AppContext">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll</HintPath>
</Reference>
<Reference Include="System.Collections.Concurrent">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll</HintPath>
</Reference>
<Reference Include="System.Collections">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll</HintPath>
</Reference>
<Reference Include="System.Collections.NonGeneric">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll</HintPath>
</Reference>
<Reference Include="System.Collections.Specialized">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll</HintPath>
</Reference>
<Reference Include="System.ComponentModel">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll</HintPath>
</Reference>
<Reference Include="System.ComponentModel.EventBasedAsync">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll</HintPath>
</Reference>
<Reference Include="System.ComponentModel.Primitives">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll</HintPath>
</Reference>
<Reference Include="System.ComponentModel.TypeConverter">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll</HintPath>
</Reference>
<Reference Include="System.Console">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll</HintPath>
</Reference>
<Reference Include="System.Data.Common">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll</HintPath>
</Reference>
<Reference Include="System.Diagnostics.Contracts">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll</HintPath>
</Reference>
<Reference Include="System.Diagnostics.Debug">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll</HintPath>
</Reference>
<Reference Include="System.Diagnostics.FileVersionInfo">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll</HintPath>
</Reference>
<Reference Include="System.Diagnostics.Process">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll</HintPath>
</Reference>
<Reference Include="System.Diagnostics.StackTrace">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll</HintPath>
</Reference>
<Reference Include="System.Diagnostics.TextWriterTraceListener">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll</HintPath>
</Reference>
<Reference Include="System.Diagnostics.Tools">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll</HintPath>
</Reference>
<Reference Include="System.Diagnostics.TraceSource">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll</HintPath>
</Reference>
<Reference Include="System.Diagnostics.Tracing">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll</HintPath>
</Reference>
<Reference Include="System.Drawing.Primitives">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll</HintPath>
</Reference>
<Reference Include="System.Dynamic.Runtime">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll</HintPath>
</Reference>
<Reference Include="System.Globalization.Calendars">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll</HintPath>
</Reference>
<Reference Include="System.Globalization">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll</HintPath>
</Reference>
<Reference Include="System.Globalization.Extensions">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll</HintPath>
</Reference>
<Reference Include="System.IO.Compression">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll</HintPath>
</Reference>
<Reference Include="System.IO.Compression.ZipFile">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll</HintPath>
</Reference>
<Reference Include="System.IO">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll</HintPath>
</Reference>
<Reference Include="System.IO.FileSystem">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll</HintPath>
</Reference>
<Reference Include="System.IO.FileSystem.DriveInfo">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll</HintPath>
</Reference>
<Reference Include="System.IO.FileSystem.Primitives">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll</HintPath>
</Reference>
<Reference Include="System.IO.FileSystem.Watcher">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll</HintPath>
</Reference>
<Reference Include="System.IO.IsolatedStorage">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll</HintPath>
</Reference>
<Reference Include="System.IO.MemoryMappedFiles">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll</HintPath>
</Reference>
<Reference Include="System.IO.Pipes">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll</HintPath>
</Reference>
<Reference Include="System.IO.UnmanagedMemoryStream">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll</HintPath>
</Reference>
<Reference Include="System.Linq">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll</HintPath>
</Reference>
<Reference Include="System.Linq.Expressions">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll</HintPath>
</Reference>
<Reference Include="System.Linq.Parallel">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll</HintPath>
</Reference>
<Reference Include="System.Linq.Queryable">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll</HintPath>
</Reference>
<Reference Include="System.Net.Http">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll</HintPath>
</Reference>
<Reference Include="System.Net.NameResolution">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll</HintPath>
</Reference>
<Reference Include="System.Net.NetworkInformation">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll</HintPath>
</Reference>
<Reference Include="System.Net.Ping">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll</HintPath>
</Reference>
<Reference Include="System.Net.Primitives">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll</HintPath>
</Reference>
<Reference Include="System.Net.Requests">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll</HintPath>
</Reference>
<Reference Include="System.Net.Security">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll</HintPath>
</Reference>
<Reference Include="System.Net.Sockets">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll</HintPath>
</Reference>
<Reference Include="System.Net.WebHeaderCollection">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll</HintPath>
</Reference>
<Reference Include="System.Net.WebSockets.Client">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll</HintPath>
</Reference>
<Reference Include="System.Net.WebSockets">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll</HintPath>
</Reference>
<Reference Include="System.ObjectModel">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll</HintPath>
</Reference>
<Reference Include="System.Reflection">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll</HintPath>
</Reference>
<Reference Include="System.Reflection.Extensions">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll</HintPath>
</Reference>
<Reference Include="System.Reflection.Primitives">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll</HintPath>
</Reference>
<Reference Include="System.Resources.Reader">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll</HintPath>
</Reference>
<Reference Include="System.Resources.ResourceManager">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll</HintPath>
</Reference>
<Reference Include="System.Resources.Writer">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.CompilerServices.VisualC">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll</HintPath>
</Reference>
<Reference Include="System.Runtime">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.Extensions">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.Handles">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.InteropServices">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.InteropServices.RuntimeInformation">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.Numerics">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.Serialization.Formatters">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.Serialization.Json">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.Serialization.Primitives">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.Serialization.Xml">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll</HintPath>
</Reference>
<Reference Include="System.Security.Claims">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll</HintPath>
</Reference>
<Reference Include="System.Security.Cryptography.Algorithms">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll</HintPath>
</Reference>
<Reference Include="System.Security.Cryptography.Csp">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll</HintPath>
</Reference>
<Reference Include="System.Security.Cryptography.Encoding">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll</HintPath>
</Reference>
<Reference Include="System.Security.Cryptography.Primitives">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll</HintPath>
</Reference>
<Reference Include="System.Security.Cryptography.X509Certificates">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll</HintPath>
</Reference>
<Reference Include="System.Security.Principal">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll</HintPath>
</Reference>
<Reference Include="System.Security.SecureString">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll</HintPath>
</Reference>
<Reference Include="System.Text.Encoding">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll</HintPath>
</Reference>
<Reference Include="System.Text.Encoding.Extensions">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll</HintPath>
</Reference>
<Reference Include="System.Text.RegularExpressions">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll</HintPath>
</Reference>
<Reference Include="System.Threading">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll</HintPath>
</Reference>
<Reference Include="System.Threading.Overlapped">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll</HintPath>
</Reference>
<Reference Include="System.Threading.Tasks">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll</HintPath>
</Reference>
<Reference Include="System.Threading.Tasks.Parallel">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll</HintPath>
</Reference>
<Reference Include="System.Threading.Thread">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll</HintPath>
</Reference>
<Reference Include="System.Threading.ThreadPool">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll</HintPath>
</Reference>
<Reference Include="System.Threading.Timer">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll</HintPath>
</Reference>
<Reference Include="System.ValueTuple">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll</HintPath>
</Reference>
<Reference Include="System.Xml.ReaderWriter">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll</HintPath>
</Reference>
<Reference Include="System.Xml.XDocument">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll</HintPath>
</Reference>
<Reference Include="System.Xml.XmlDocument">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll</HintPath>
</Reference>
<Reference Include="System.Xml.XmlSerializer">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll</HintPath>
</Reference>
<Reference Include="System.Xml.XPath">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll</HintPath>
</Reference>
<Reference Include="System.Xml.XPath.XDocument">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll</HintPath>
</Reference>
<Reference Include="System.Numerics.Vectors">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.InteropServices.WindowsRuntime">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll</HintPath>
</Reference>
<Reference Include="mscorlib">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll</HintPath>
</Reference>
<Reference Include="System.ComponentModel.Composition">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll</HintPath>
</Reference>
<Reference Include="System.Core">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll</HintPath>
</Reference>
<Reference Include="System.Data">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll</HintPath>
</Reference>
<Reference Include="System">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.dll</HintPath>
</Reference>
<Reference Include="System.Drawing">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll</HintPath>
</Reference>
<Reference Include="System.IO.Compression.FileSystem">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll</HintPath>
</Reference>
<Reference Include="System.Net">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll</HintPath>
</Reference>
<Reference Include="System.Numerics">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.Serialization">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll</HintPath>
</Reference>
<Reference Include="System.ServiceModel.Web">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll</HintPath>
</Reference>
<Reference Include="System.Transactions">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll</HintPath>
</Reference>
<Reference Include="System.Web">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll</HintPath>
</Reference>
<Reference Include="System.Windows">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll</HintPath>
</Reference>
<Reference Include="System.Xml">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll</HintPath>
</Reference>
<Reference Include="System.Xml.Linq">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll</HintPath>
</Reference>
<Reference Include="System.Xml.Serialization">
<HintPath>D:/unity3D/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="XCharts.Demo.Runtime.csproj">
<Project>{365A4251-8297-CA69-128D-72CBFB99EB0D}</Project>
<Name>XCharts.Demo.Runtime</Name>
</ProjectReference>
<ProjectReference Include="XCharts.Runtime.csproj">
<Project>{C7655E56-A9A5-9CC5-221A-D899170F53D5}</Project>
<Name>XCharts.Runtime</Name>
</ProjectReference>
<ProjectReference Include="XCharts.Editor.csproj">
<Project>{6030E84E-5417-1A00-82DE-449300C443F6}</Project>
<Name>XCharts.Editor</Name>
</ProjectReference>
<ProjectReference Include="XCharts.Editor.Demo.csproj">
<Project>{11665CD5-07F7-12D2-308F-69F950655725}</Project>
<Name>XCharts.Editor.Demo</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/wikis/unity-demo.git
git@gitee.com:wikis/unity-demo.git
wikis
unity-demo
unity-demo
master

搜索帮助