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-02-08Prepare uap package (#15866)Jose Perez Rodriguez
Prepare uap package
2017-02-08Merge pull request #15103 from lmolkova/dev/diagnosticsource_activityVance Morrison
Add Activity to DiagnosticSource
2017-02-08Delete unnecessary ifdef (#15940)Jan Kotas
2017-02-08rebase with master, fix uap buildLiudmila Molkova
2017-02-08Return Id generation algorithm, use Machine name on platforms which support thatLiudmila Molkova
2017-02-08Update Id generation schemaLiudmila Molkova
2017-02-08update Activity user guideLiudmila Molkova
2017-02-08review commentsLiudmila Molkova
2017-02-08Add Activity to DiagnosticSource #15023Liudmila Molkova
2017-02-08Filtering down the NETNative TargetingPack to avoid type conflicts (#15929)Jose Perez Rodriguez
Filtering down the NETNative TargetingPack to avoid type conflicts
2017-02-08Merge pull request #15928 from dennisdietrich/Issue15891Eric Mellino
Fixed cross-process tests
2017-02-08Fixed cross-process testsDennis "D.C." Dietrich
Several tests that use a secondary process fail when the path contains spaces. Fix #15891
2017-02-08Merge pull request #15922 from mellinoe/remove-projectjsonWes Haggard
Remove non-existent project.json's from project files
2017-02-08Add Activator.CreateInstance negative tests (#15923)Michal Strehovský
Regression tests for issues found in CoreRT/.NET Native.
2017-02-07Remove non-existent project.json's from project filesEric Mellino
2017-02-07Merge pull request #15918 from stephentoub/codedom_fixStephen Toub
CodeDom fixes for explicit interface implementation with built-in types
2017-02-07Merge pull request #15917 from weshaggard/FixReferenceOrderWes Haggard
Update Reference and ProjectReference ordering in our targets.
2017-02-07Augment tests for CodeDom fixStephen Toub
2017-02-07CodeDom fixes for explicit interface implementation with built-in typesMarek Safar
This is quite corner case but C#/VB compilers cannot even parse code where built in types are used as prefix in explicit interface implementation The patch fixes cases like the one bellow to always use fully qualified name in this scenario. public class Test1 { event int int.Click; }
2017-02-07Update Reference and ProjectReference ordering in our targets.Wes Haggard
Switch the to using a common DefaultReference notion between targets and eliminated targetingpack.props. Moved the default references for tests into tests.targets. Fixed where we added Private to References because in some cases it wasn't happing because the target that set Private=true was run before all the references were added. This is why we are now setting Reference Private=false in a different target from ProjectReference Private=false because they sometimes need to happen at different times in the target execution. Set _FindDependencies=false to block RAR from trying to automatically add the closure of the primary references as it added automatic references that folks could accidently start depending on and we want to be explicit about our dependencies. This was really noticable once we started auto referencing the netstandard facade which caused everything to get pulled into the reference set. To fix the various build scenarios where we add ProjectReferences automatically we needed a common target to hook on which we now have AddProjectReferencesDynamically target that correctly hooks into the various dependency chains. See comment in targets file for more details.
2017-02-07Remove all TargetingPackReference's from project filesEric Mellino
* The only remaining uses are in the CoreFX.Tools project (to be removed eventually, anyways).
2017-02-07Android - Support cross-compiling System.Native for Android (#15912)Frederik Carlier
* Last batch of fixes to get compilation to run on Android * Move the MNTOPT_RO definition inside HAVE_MNTINFO to avoid a unused identifier
2017-02-07Add tests for System.Configuration.UriSection (#15832)Pavel Maltsev
2017-02-07Merge pull request #15911 from qmfrederik/android/inotify_rm_unsignedStephen Toub
Android - Support unsigned wd in inotify_rm_watchx
2017-02-07Merge pull request #15857 from hughbe/ss-testsIan Hays
Add some SortedSet tests
2017-02-07Factor ImmutableArray<T> into many files (#15526)David Wrighton
* Factor ImmutableArray<T> into many files - Break immutable array (an enumerable, immutable, array) into a core component - And a bunch of algorithm components which represents algorithms on the array - And a bunch of components which represent creation of new related immutable arrays - The purpose of this work is to make it possible to source include the core of immutable array into a component which cannot depend on high level apis such as LINQ, SortedDictionary, etc. (All api use must be satisfied by System.Private.CoreLib). The work to add this other component (System.Private.Reflection.Metadata.Ecma335 will be delivered via a separate PR) * Finish merge with ImmutableArray changes * Reduce number of partial files to two
2017-02-07Support unsigned wd in inotify_rm_watchFrederik Carlier
2017-02-07Marking code as unchecked (pt 2) (#15885)Dennis "D.C." Dietrich
Marking code that may intentionally lead to over or underflows with unchecked in preparation of turning on CheckForOverflowUnderflow for all projects (issue #3140)
2017-02-07Merge pull request #15887 from steveharter/SocketPortCollisionStephen Toub
Make socket tests more reliable under Unix
2017-02-07Merge pull request #15907 from JonHanna/sle_dont_short_circuit_lifted_binaryStephen Toub
Don't short-circuit null-checks in lifted binary ops
2017-02-07Android - Support unsigned ipv6mr_interface, bind() arguments (#15881)Frederik Carlier
* Support unsigned ipv6mr_interface, bind() arguments
2017-02-07Don't short-circuit null-checks in lifted binary opsJon Hanna
S.L.Expressions compiles a lifted operator where both operands are nullable as x.HasValue && y.HasValue ? x op y : null; Roslyn compiles the same operator without the short-circuiting, avoiding a branch: x.HasValue & y.HasValue ? x op y : null; Make Expressions follow the same non-short-circuiting approach.
2017-02-07Delete duplicate implementation of UnmanagedMemoryStreamJan Kotas
2017-02-07Android - Fall back to mkstemp if mkstemps is not available (#15875)Frederik Carlier
* Fall back to mkstemp if mkstemps is not available
2017-02-07Android: Fall back to futimens if futimes is not available (#15877)Frederik Carlier
* Fall back to futimens if futimes is not available * Don't fail if futimes nor futimens are available
2017-02-07Merge pull request #15898 from jkotas/NoWarnStephen Toub
Delete NoWarn's that are not required anymore
2017-02-07Delete NoWarn's that are not required anymoreJan Kotas
2017-02-07Merge pull request #15880 from weshaggard/FixDocCommentFileForValueTupleStephen Toub
Fix name of DocumenationFile so intellisense correctly builds
2017-02-07Make socket tests more reliable under UnixSteve Harter
2017-02-07Android - Fall back to uname if getdomainname is not available (#15878)Frederik Carlier
* Fall back to uname if getdomainname is not available * PR feedback * Don't fail to compile if getdomainname and uname are not present, but return ENOTSUP
2017-02-07Fix name of DocumenationFile so intellisense correctly buildsWes Haggard
Fixes https://github.com/dotnet/corefx/issues/15823
2017-02-07Build System.Private.DataContractSerialization on uapaot (#15873)Shin Mao
* Get System.Private.DataContractSerialization to have a uapaot config * Build System.Private.DataContractSerialization in aot
2017-02-07Remove versioned configuration from test projects (#15879)Tarek Mahmoud Sayed
The changes onclude some other minor clean up in the test project files
2017-02-07Marking code as unchecked (pt 1) (#15805)Dennis "D.C." Dietrich
Marking code that may intentionally lead to over or underflows with unchecked in preparation of turning on CheckForOverflowUnderflow for all projects (issue #3140)
2017-02-06Merge pull request #15869 from dotnet-bot/master-UpdateDependenciesStephen Toub
Update CoreClr to beta-25006-03 (master)
2017-02-06Merge pull request #15874 from qmfrederik/android/shmunlinkStephen Toub
Android - Don't support ShmUnlink if ShmOpen is not supported
2017-02-06Disable CallstackTest failing due to missing framesStephen Toub
2017-02-06Don't support ShmUnlink if HAVE_SHM_OPEN_THAT_WORKS_WELL_ENOUGH_WITH_MMAP is ↵Frederik Carlier
not set
2017-02-06Merge pull request #15777 from Priya91/nettestsLakshmi Priya Sekar
Fix networking test activeissues in System.Net.Http
2017-02-06Merge pull request #15860 from JonHanna/fix_15859Stephen Toub
Throw expected message in expression hitting null T?.Value