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
AgeCommit message (Collapse)Author
2018-01-23Merge remote-tracking branch 'upstream/release/2.1'Marek Safar
2018-01-12Update references assemblies to include private fields for structsWes Haggard
Contributes to https://github.com/dotnet/corefx/issues/6185.
2018-01-03Merge remote-tracking branch 'upstream/master'Marek Safar
2017-12-22Add license headers. (#26009)Jon Hanna
Any *.cs file found without the usual license header has it added except: 1. Files that note they are auto-generated. 2. Files with a different header (unless it is very close to the usual, in which case adjust for typos and old versions). 3. FxCopBaseline.cs files.
2017-11-27Merge remote-tracking branch 'upstream/master'Marek Safar
2017-11-03Mark applicable structs as readonlyStephen Toub
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-02Merge remote-tracking branch 'upstream/master'Marek Safar
2017-08-31Grammar check - "a [a,e]" rule. (#23697)Brian Chavez
* Grammar check - "a [a,e]" rule. * Corrected "a attributes" to "an attribute"
2017-08-31Merge remote-tracking branch 'upstream/master'Marek Safar
2017-08-30XML doc spelling corrections - D through H. :shower: (#23638)Brian Chavez
2017-08-30XML doc spelling corrections - I through P. :shower: (#23651)Brian Chavez
2017-08-30XML doc spelling corrections - Q through Z. (#23655)Brian Chavez
2017-07-16Merge remote-tracking branch 'upstream/master'Alexander Köplinger
# Conflicts: # src/Microsoft.Win32.Primitives/src/System/ComponentModel/Win32Exception.cs # src/System.ComponentModel.TypeConverter/src/System/ComponentModel/BindingList.cs # src/System.DirectoryServices/src/System/DirectoryServices/DirectoryServicesCOMException.cs # src/System.ObjectModel/src/System/Collections/ObjectModel/ObservableCollection.cs # src/System.ObjectModel/src/System/Collections/ObjectModel/ReadOnlyObservableCollection.cs
2017-07-03Move AssertExtensions to Corefx.Private.TestUtilities (#21799)Hugh Bellamy
* Move AssertExtensions to Corefx.Private.TestUtilities * Update csprojs * Fix Linq.Expressions uapaot build
2017-07-03Merge remote-tracking branch 'upstream/master'Alexander Köplinger
# Conflicts: # src/System.DirectoryServices.Protocols/src/System/DirectoryServices/Protocols/common/DirectoryException.cs # src/System.Drawing.Common/src/System/Drawing/Printing/Margins.cs # src/System.Drawing.Common/src/System/Drawing/SystemBrushes.cs # src/System.Drawing.Primitives/src/System/Drawing/SizeF.cs # src/System.Net.WebHeaderCollection/tests/WebHeaderCollectionTest.cs # src/System.Runtime.CompilerServices.VisualC/src/System/Runtime/CompilerServices/Attributes.cs
2017-06-23Convert most Assert.Throws<ArgumentException> without param name to ↵Hugh Bellamy
AssertExtensions (#21455) * Registry * Collections * ComponentModel * Configuration * Data * Globalization * Drawing * Diagnostics * IO * Linq * Add System.Net param names in tests * Move ArgumentExceptions in System.Private.Xml to AssertExtensions * Add System.Reflection.* ArgumentException param names * Add param names for System.Runtime* ArgumentExceptions * Add ArgumentException param names to System.Security.* * Add ArgumentException param names to System.Text.* * Add param names to ArgumentExceptions in misc projects * Add System.Threading.* ArgumentException param names * Fix missing files * Fixes for unix and netfx * Fix more failures and revert a IdnaConformance tests to avoid merge conflicts with #21463
2017-06-20Merge remote-tracking branch 'upstream/master'Marek Safar
2017-06-18Fixup instances of [ThreadStatic] naming in product codeHugh Bellamy
2017-05-30Revert "Scale back [Serializable] CoreFX types (#19742)"Marek Safar
This reverts commit 6dd451f51451a7d0ceea6104b51bd17005e9a0e6.
2017-05-25ISerializable cleanup (#20220)Morgan Brown
* Changes to throw PlatformNotSupportedException from ISerializable.GetObjectData and serialization constructors on non-serializable types. Also removes private serialization constructors and some unneeded code that was used to support serializing non-serializable types. A few tests testing GetObjectData implementations are also removed. * Address code review comments. * Change exceptions' GetObjectData to just call base rather than throw. This makes them behave consistently with exceptions that didn't override GetObjectData.
2017-05-17Merge pull request #19842 from ericstj/incrementVersionsGaurav Khanna
Increment versions post 2.0
2017-05-17Scale back [Serializable] CoreFX types (#19742)Morgan Brown
* Remove SerializableAttribute from many CoreFX types that will not be serializable. * Removes serialization tests for types that are no longer serializable and fixes serializing a couple of types. Includes marking some internal serializable types as public so that they'll be reflectible with .NET Native. * Remove unneeded pragmas * Update based on review comments
2017-05-17Increment versions post 2.0Eric St. John
2017-05-10System.Transactions.Local.Tests now at 0 failures on ILC.Atsushi Kanamori
2017-04-19Skip two transactions tests on desktopStephen Toub
The tests are expecting a PlatformNotSupportedException, as it the operation isn't supported on core.
2017-04-18Bulk updates of tests for AssertExtensions (#18491)Daniel Harvey
Bulk update to AssertExtensions.Throws for AOT support. This doesn't disable Assert.Throws.
2017-04-10Updates how we define which key an assembly usesWes Haggard
Now instead of Use*Key a project can instead define the assembly key in the project (genreally the common dir.pops for a project) using the AssemblyKey property. The accepted values are Open, ECMA, MSFT, Test. This change allows for a repo to set the default key they want to use for projects. In corefx we have switched the default to use the Open key instead of the old BuildTools default of MSFT key. As part of this update we are explicitly setting the AssemblyKey in all the library projects (although it is really only necessary for projects that aren't the default). Also with this change we are updating all the new libraries that have not yet shipped stable (compared to our 1.1 release) and making them use the Open key. Which means that for prerelease dependencies there might be some binary breaking changes to consume. The following libraries ahven't shipped so there key is being changed from MSFT to Open: Microsoft.XmlSerializer.Generator System.CodeDom System.Configuration.ConfigurationManager System.Data.Odbc System.DirectoryServices System.DirectoryServices.AccountManagement System.DirectoryServices.Protocols System.IO.Ports System.Json System.Memory System.Net.HttpListener System.Net.Mail System.Net.ServicePoint System.Net.WebClient System.Net.WebProxy System.Private.Xml System.Private.Xml.Linq System.Security.Cryptography.Xml System.Security.Permissions System.Transactions.Local System.Web.HttpUtility
2017-03-18Update localization resource string for etw tracing event source to reflect ↵qizhanMS
the System.Transctions.Local name change.
2017-03-13Merge pull request #16909 from WinCPP/issue-3862Stephen Toub
Fix #3862 Replace double-check lock with lazy initialization.
2017-03-10Issue #3862 Replace double-check lock with lazy initialization.WinCPP
2017-03-10Update distributed transaction test blocking issue number from 16755 to ↵Qi Zhang
13532 for System.Transactions.Local. (#16931)
2017-03-08Cleanup disabled tests missing correct issue numbers (#16756)Jiayi Li
* Move a System.Collections test Just moves the test to a more derived test class. In its current location, it's unnecessarily getting run multiple times but without any variation. * 20170306 - Audit some active issues/v-lijiay * Remove Active Issue 16750 and change performancetest to [Benchmark], remove the link in Fact when it has activeissue. * The type or namespace name 'BenchmarkAttribute' could not be found, add using Microsoft.Xunit.Performance; * 20170306 - Audit some active issues/v-lijiay * Remove Active Issue 16750 and change performancetest to [Benchmark], remove the link in Fact when it has activeissue. * The type or namespace name 'BenchmarkAttribute' could not be found, add using Microsoft.Xunit.Performance;
2017-03-02Remove System.Transactions.Local individual packageWes Haggard
System.Transactions.Local doesn't need to ship as an individual package because it is part of netstandard2.0 and will be included in the NETCore app platform package. Update the package baseline file to marke it as inbox and also add the System.Transaction inbox entries as well.
2017-02-25Remove the assembly name in System.Transactions.Local.csproj and update the ↵qizhanMS
reference in System.Data.Common.csproj
2017-02-24Rename assembly to System.Transactions.Local.dllqizhanMS
2017-02-24Rename assembly to System.Transactions.Local.dllqizhanMS