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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/mcs/class
AgeCommit message (Collapse)Author
2017-03-21[System.Web] Fix standalone-runner to return non-zero exit code on failure ↵gtk-git-repoAlexander Köplinger
(#4562) * [System.Web] Fix standalone-runner to return non-zero exit code on failure We didn't notice that test runs with standalone-runner.exe failed because it still exited with 0 in those cases. Fixed that and the standalone tests that showed up as failed in System.Web.Extensions (some differences likely from referencesource code import). * Fix replacement logic for Consts.cs.in to use Windows paths
2017-03-21[System] Fix Process tests on watchMarek Safar
2017-03-21[System.Core] Update mobile testMarek Safar
2017-03-20[msvc] Update csproj filesmonojenkins
2017-03-20System.Security.Cryptography.X509Certificates enums from .NET Core.Vladimir Kazakov
TrustStatus and X509SelectionFlag are missing from .NET Core (https://github.com/dotnet/corefx/issues/17194), hence TrustStatus was taken from .NET Framework and X509SelectionFlag was left untouched.
2017-03-20[msvc] Update csproj filesmonojenkins
2017-03-18Make System.Drawing code compatible with .NET Core (#4548)Frederik Carlier
2017-03-17less allocation in Socket (#4516)su21
* less allocation in Socket avoid allocate `System.Threading.QueueUserWorkItemCallback` in `SocketAsyncResult.Complete` avoid allocate `Task` and anonymous function in `Socket.QueueIOSelectorJob` * update: fix race and use replace static field with in line lambda * cleanup code * QueueIOSelectorJob keep async, and provie a fastpath * SocketAsyncResult: simplify callback code * add missing line `IOSelect.Add(handle, job)` :( * fix typo * fix compile error
2017-03-17Add support for xunit testsMarek Safar
2017-03-17[System] Add back empty MonoTouch namespaceMarek Safar
2017-03-17Remove CAS attributes from System.Drawing (#4544)Frederik Carlier
2017-03-16Move target for creating monolite package to MonoAlexander Köplinger
2017-03-16Include Mono version in corlib versionAlexander Köplinger
This makes it possible to version the runtime<->corlib interface for each version branch independently and fixes the problem of monolite getting overwritten by changes in different branches when corlib version is still the same. We're moving definition of the corlib version into configure.ac so we can more easily bake the Mono version into it.
2017-03-16[WindowsBase] Rename method parameters to match .NET contractAlexander Köplinger
2017-03-16[System.Xaml] Rename method parameters to match .NET contractAlexander Köplinger
2017-03-16[System.Windows.Forms.DataVisualization] Rename method parameters to match ↵Alexander Köplinger
.NET contract
2017-03-16[System.Web.Extensions] Rename method parameters to match .NET contractAlexander Köplinger
2017-03-16[System.Web.ApplicationServices] Rename method parameters to match .NET contractAlexander Köplinger
2017-03-16[System.Web] Rename method parameters to match .NET contractAlexander Köplinger
2017-03-16[System.Transactions] Rename method parameters to match .NET contractAlexander Köplinger
2017-03-16[System.ServiceModel.Web] Rename method parameters to match .NET contractAlexander Köplinger
2017-03-16[System.ServiceModel.Discovery] Rename method parameters to match .NET contractAlexander Köplinger
2017-03-16[System.ServiceModel] Rename method parameters to match .NET contractAlexander Köplinger
2017-03-16[System.Security] Rename method parameters to match .NET contractAlexander Köplinger
2017-03-16[System.Management] Rename method parameters to match .NET contractAlexander Köplinger
2017-03-16[System.IdentityModel.Selectors] Rename method parameters to match .NET contractAlexander Köplinger
2017-03-16[System.IdentityModel] Rename method parameters to match .NET contractAlexander Köplinger
2017-03-16[System.EnterpriseServices] Rename method parameters to match .NET contractAlexander Köplinger
2017-03-16[System.Drawing] Rename method parameters to match .NET contractAlexander Köplinger
2017-03-16[System.DirectoryServices] Rename method parameters to match .NET contractAlexander Köplinger
2017-03-16[System.Design] Rename method parameters to match .NET contractAlexander Köplinger
2017-03-16[System.Data.OracleClient] Rename method parameters to match .NET contractAlexander Köplinger
2017-03-16[System.Data.Linq] Rename method parameters to match .NET contractAlexander Köplinger
2017-03-16[System.Data] Rename method parameters to match .NET contractAlexander Köplinger
2017-03-16[System.Core] Rename method parameters to match .NET contractAlexander Köplinger
2017-03-16[System.Configuration] Rename method parameters to match .NET contractAlexander Köplinger
2017-03-16[System] Rename method parameters to match .NET contractAlexander Köplinger
2017-03-16[Microsoft.Build] Rename method parameters to match .NET contractAlexander Köplinger
2017-03-16[Microsoft.Build.Engine] Rename method parameters to match .NET contractAlexander Köplinger
2017-03-16[bcl] Rename variables to avoid conflict with later renamesAlexander Köplinger
2017-03-16[corlib] Fixes custom formatter with ";" section separator and zero valuesMarek Safar
2017-03-16Use MD5.Create () instead of new MD5CryptoServiceProvider()Frederik Carlier
2017-03-16Add [In, Out] annotation to points in GdipTransformMatrixPointsFrederik Carlier
2017-03-15[simd] Mark Mono.Simd classes as obsolete.Zoltan Varga
2017-03-14Handle windows paths in ResXFileRef, for conversion to string caseAnkit Jain
- convert the path a little earlier to handle the case for conversion to string - Fixes earlier commit a3195b79f6fdba3a8d59f0de5a881f90dcf7d458 - And enable the corresponding test
2017-03-13[runtime] Mark array types with more than 32 dimensions as invalid. Move the ↵Zoltan Varga
check for arrays of void into Array.CreateInstance (), since typeof (void).MakeArrayType () is valid. Fixes #53131. (#4514)
2017-03-13[System.Windows.Forms] Disable failing testMarek Safar
2017-03-13GDI+ functions: use constant for the library name, fix whitespace (#4515)Frederik Carlier
2017-03-12[corlib] FileStream::Name needs to include fully qualified normalized name. ↵Marek Safar
Fixes #53231
2017-03-11Remove CAS from System.Drawing unit testsFrederik Carlier