Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2017-10-30Delete unnecessary internal forwarders (#24939)Jan Kotas
The optimized enum comparers used can never show up in the binary serialization payload. We do not need the internal forwarders for them.
2017-10-30Remove dead code from System.Net.WebSocket.Client (#24932)Stano Peťko
* Deleted dead code from System.Neet.WebSocket.Client. * Reverted changes in WinHttpWebSocketCallback.
2017-10-30Deleted dead code from System.Net.WebClient. (#24930)Stano Peťko
2017-10-30Add ManagedHandler support for cancelling connect operations (#24873)Stephen Toub
2017-10-30Address System.Threading.Channels PR feedback (#24955)Stephen Toub
Addressing a few pieces of feedback on the previous PR, plus some auto-cleanup.
2017-10-30Update BuildTools, CoreClr, CoreFx to prerelease-02128-02, ↵dotnet-maestro-bot
preview1-25829-02, preview1-25830-01, respectively (master) (#24944) * WIP: Move OpenCommPort to api set It will fail until changes in buildtools (https://github.com/dotnet/buildtools/pull/1766) reach corefx. * Including OpenCommPort only for Uap It was already only used in uap but per review it is better to make it explicit on the project too. * Update BuildTools, CoreClr, CoreFx to prerelease-02128-02, preview1-25829-02, preview1-25830-01, respectively
2017-10-30Fix System.DirectoryServices.AccountManagement configurations (#24887)Santiago Fernandez Madero
* Fix System.DirectoryServices.AccountManagement configurations * Update comment to AssemblyInfo.cs * Delete AssemblyInfo.cs file and netfx configuration in tests * Make netstandard PNSE assembly and netfx only a placeholder in the pkgproj
2017-10-30Disable reflection-based debugger System.Threading.Channels tests on uapaot ↵Stephen Toub
(#24956) Also remove the duplicated DebuggerAttributes.cs file.
2017-10-30Fix DirectoryServices.Protocols packaging and configurations for compat pack ↵Santiago Fernandez Madero
(#24905) * Fix DirectoryServices.Protocols packaging and configurations for compat pack * Set configurations to generate PNSE when target group is netstandard since net45 is inbox and we don't support uap
2017-10-30Remove dead code from System.Net.Sockets (#24904)Stano Peťko
* Deleted dead code from System.Net.Sockets. * Deleted stuff related to socket perf counters.
2017-10-30Merge pull request #24846 from stephentoub/websockets_memoryStephen Toub
Add `Memory<byte>` support to WebSockets
2017-10-28Fix system formatter tests hitting netfx inbox binplace issue (#24935)Santiago Fernandez Madero
* Fix Serialization.Formatter tests hitting PNSE in DirectoryServices.Protocols * Fix Serialization.Formatter tests hitting PNSE in DirectoryServices.AccountManagement * Fix Serialization.Formatter tests hitting PNSE in DirectoryServices
2017-10-28Move InAttribute from S.R.InteropServices to System.Runtime next to ↵Ahson Khan
OutAttribute (#24933)
2017-10-28Fixed Bugs with DateTime Parsing (#24899)Shin Mao
* Fixed Bugs with Parsing DateTime String. Fix #24894 * Improved error message. * Fixed feed name. * Use Rfc3339DateTimeFormat. * Refactor the code. * removed unused code * Fixed Rfc3339DateTimeParser.
2017-10-28Add pkg for System.Diagnostics.PerformanceCounter (#24811)Michelle McDaniel
* Add pkg for System.Diagnostics.PerformanceCounter This change adds System.Diagnostics.PerformanceCounter to the compat pack. * Add AllXamarinFrameworks to PerformanceCounter pkgproj * Update PerformanceCounter pkgproj for xamarin/mono * Change InboxOnTargetFramework to AllXamarinFrameworks
2017-10-28Removing Span<byte> extension methods and using the generic ones (#24911)Ahson Khan
* Removing Span<byte> extension methods and use the generic ones. * Addressing PR feedback. * Fixing nits and moving type check to public API.
2017-10-28Change System.Management configurations to create PNSE assembly when ↵Santiago Fernandez Madero
targetgroup is netstandard and non-windows (#24926)
2017-10-28Skip one wmi test in Win Server Core (#24927)Paulo Janotti
The test requires notepad.exe and that is not available on Win Server Core. Fixes #24912.
2017-10-27Fix System.Drawing.Configurations to be netstandard compatible (#24758)Santiago Fernandez Madero
* Fix System.Drawing.Configurations to be netstandard compatible * PR Feedback and Add net461 to pkgproj supported frameworks * Add xamarin frameworks as inbox * Change InboxOnTargetFramework to include $(AllXamarinFrameworks)
2017-10-27Adding System.DirectoryServices.Protocols Tests (#24872)Tarek Mahmoud Sayed
2017-10-27Use ConfigureAwait(false) for all await'sMatt Connew
2017-10-27Make ServicePointManager tests run out of proc (#24890)Dan Moseley
* Make ServicePointManager tests run out of proc * cleaner * Update UAP testbase * Comment * Ensure CEC is false for UAP * Revert buildtools
2017-10-27Make corefx exceptions serializable and add typeforwards (#24427)Viktor Hofer
* Add serializable attribute and typeforward and adding serialization impl * Expose ZLibException in impl assembly * Remove deserialization negative tests * Adding tests for exceptions * Adding SqlError data to base exception data table * System Data Facade * Add netfx471 blob diffs for Hashtable and ListDictionary * Build Microsoft.NETCore.App.deps.json after manual shims * Disable currently failing uap/uapaot tests because of shim assembly load errors
2017-10-27Add Span<T> Base64 conversion APIs that support UTF-8 (#24888)Ahson Khan
* Add Span<T> Base64 conversion APIs that support UTF-8. * Optimize the encoding loop when there is plenty of available space * Optimize EncodeInPlace and update DecodeBaseline perf test. * Addressing PR feedback, encode optimization, throw for negative lengths * Reenable commented out perf tests. * Cap the amount of data to process based on how much that will fit. * Being explicit with access modifiers to follow guidelines.
2017-10-27CultureInfoConverter added (#24855)Anirudh Agnihotry
* Culture Converter added * space formatting * Expected and actual argument reordered * Removed to string * Reference Converter and its test added * fixing reference Converter * Skipping test on framework * CultureInfo added with others * Removed Reference Connverter
2017-10-26Add EventCounter to Microsoft.Diagnostics.Tracing.EventSource.Redist (#24893)Brian Robbins
* Share EventSource tests with Microsoft.Diagnostics.Tracing.EventSource.Redist nuget package. * Add EventCounter to Microsoft.Diagnostics.Tracing. * Enable EventCounter tests on Microsoft.Diagnostics.Tracing.
2017-10-26Adding more WMI tests (#24879)Paulo Janotti
* Adding more WMI tests * Opportunistically updating projects: removing suppression not needed anymore, and add netfx for test * Addressing review feedback * Renaming test conditions
2017-10-26Merge pull request #24881 from stephentoub/port_channelsStephen Toub
Add System.Threading.Channels to corefx
2017-10-26Syndication test (#24570)JimboWei
* Add SyndicationFeed Test case * Add Xml compare Utils class * Add CompareHelper for incomplete standard feed files. * Add issue #24571 and #24572 for failed test case. * Change to use async method and mark failed case with active issue #24604 * Refactored code * Add Feed files for AtomFees test * Update * Remove useless feeds files , and mark the cause of the failed feeds files * Update * Modify test case from Async to Sync. Remove issue attribute #24571 #24572 #24604, mark with new issue #24894.
2017-10-26Share EventSource tests with ↵Brian Robbins
Microsoft.Diagnostics.Tracing.EventSource.Redist nuget package. (#24859)
2017-10-26Fixed some issues with reader/writer wrapper. (#24882)Shin Mao
2017-10-26add some code to make sure we sent datagram before we try to receive it (#24615)Tomas Weinfurt
* add some code to make sure we sent datagram before we try to receive it. #17681 * use synchronous send with timeout instead of task to avoid race condition
2017-10-26Remove dead code from System.Net.Security (#24816)Stano Peťko
* Deleted dead code from System.Net.Security. * Returned back strings used in other platforms. * Returned back strings used in OSX platform. * Returned back event_ strings.
2017-10-26Merge pull request #24820 from stephentoub/fix_http_issuesStephen Toub
Fix a few ManagedHandler issues
2017-10-26Boost code coverageStephen Toub
And a few minor resulting fixes.
2017-10-26Consistently check for cancellation before operationsStephen Toub
2017-10-26Add System.Threading.Channels to corefxStephen Toub
Bring the source over from corefxlab, add a package, get everything building, etc.
2017-10-26Merge pull request #24830 from weshaggard/MergeDevRelease200Wes Haggard
Merge dev/release/2.0.0 into master
2017-10-25Use the Host header for the SSL handshakeStephen Toub
2017-10-25Don't fail a redirect that's missing a Location headerStephen Toub
2017-10-25Fix DecompressionHandler ContentEncoding logicStephen Toub
Not clear what it's currently trying to do. It should be simple.
2017-10-25Reorder cookie handling in handler chainStephen Toub
It should come lower in the stack than proxy or credentials so that any responses that trigger re-requests and that have Set-Cookie headers are appropriately processed.
2017-10-25SSLStream Fixing GC Hole (#24799)Tim Seaward
* Fixing GC Hole * Moved back to original pin location * Added Finializer * Make tests async * Reacting to review Putting back the init code in the cpp file for the out params (lost in a reset) * Added active issue on the failure test * React to review * Added Active Issue for Linux success tests
2017-10-25Add auto dependency flow repo APIWes Haggard
2017-10-25Add System.Management (#24719)Paulo Janotti
* First pass building * Remove Instrumentation and WMIGenerator * Resources to as used on CoreFX Opportunistic: some small changes related to warnings * Removed hard coded path to load wminet_utils Also moved so DllImport to use Common version of files. * Added ref, sln, and single basic test Code builds and pass single test * Add CoreFX source header * Removing unused using directives * clean src proj references * A bit more test coverage (19%) * Sanitizer pass with default settings * Adding WMIGenerator This allows methods to generate CodeDom for strong type access to WMI objects. * Missing files from previous commit * Some extra clean-up missed by SSS * Removing #ifdef dead code * Add pkg project * Removing more dead code * Removing dead code and small improvement to tests * Suppress CA1821 when generating PNSE assembly The finalizers are being generated empty for PNSE assembly. In such cases disable CA1821. * Source changes from CR (so far) * Targets and package issues * Go back to project targets and settings Per conversation w/ @weshaggard it should follow the same model as System.DirectoryServices not the packages of dlls that do not exist on desktop. This still is not expected to be fully correct but it puts the projects closer to the targets that they will have in the end. * Description for the System.Management package. * Match supported pkg frameworks * Skip tests on Windows Nano * Missed files from previous commit * Untabify files and a bit more tests * Generate PNS Assembly for uap * Add references needed by uap for PNS assembly * PNS assembly message * Fixing package issue
2017-10-25Fix build breakChristopher Costa
2017-10-25Increase tolerance on SendTimesOut_Throws (#24844)Dan Moseley
* Increase tolerance on SendTimesOut_Throws * Update ReceiveTimesOut_Throws also
2017-10-25Enable publishing to azure feed (#24784)Karthik Rajasekaran
2017-10-25Event Log Tests disabled for Windows 7 (#24845)Anirudh Agnihotry
* Event Log Tests disabled for Windows 7 * review completed
2017-10-25Override Memory-based ReceiveAsync on WinHttpWebSocketStephen Toub