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-12-13Merged with dotnet/release/2.2.Martin Baulig
2018-03-20Share common props file for manual shimsWes Haggard
Share common props file for the manual shims. Add GenFacadesForceZeroVersionSeeds=true so that the assembly references for the shims are set to 0.0.0.0 so that they will correctly unify up and support multiple versions of OOB packages like SqlClient.
2018-03-09Update UAP System.Private.CoreLib to unblock UAP builds (#27805)Simon Nattress
* Update UAP targeting pack To fix the flow from CoreCLR and CoreFX into TFS, update the targeting pack with a version of System.Private.CoreLib that has an updated signature for Stream.WriteAsync. This should be sufficient to re-enable uapaot builds so we can get a new set of uap packages. * Revert "Disable uapaot builds on several projects" This reverts commit ebe14686a89d26d1d34d359f7a636d6e9a36a624.
2018-03-02Disable uapaot builds on several projectsStephen Toub
This was needed to get through the change of Stream.WriteAsync's return type from Task to ValueTask.
2017-08-08Add DiaSymReader to list of included packages in test-runtime depproj. (#23028)Eric Mellino
* Add DiaSymReader to list of included packages in test-runtime depproj. * Exclude DiaSymReader from the references of our manual shims.
2017-06-20Add Corefx.Private.Test.Utilities solution (#21254)Hugh Bellamy
* Add CoreFx.Private.TestUtilities solution file * Update VS configurations across corefx
2017-06-08Manually build mscorlib shim to allow for internal type forwards & Adding ↵Wes Haggard
TypeForwardFrom to serialiazable types (#20697) * Manually build mscorlib shim to allow for internal type forwards * prepare tests for netfx->core deserialization changes * update netfx serialized data * change hash updater so it doesn't use hard-coded path * Code cleanup for binary serialization * Changed ListT to ArrayList in CookieCoolection for cross serialization * Merge * Changed observablecollection typeforwards that already had typeforwards on netfx * Adding ValueTuple blobs for netfx471 * Add internal types which need to be forwarded * Pull mscorlib shim in along with windows.winmd To build UAP refs and libs we need an mscorlib shim. So for the build we pull one in from packages and it will get overwritten when we build the final one as part of our shim builds * Removed not needed typeforward and added description * Remved typeforwards from nested types * Fixed generic type syntax * Updated coreclr version, ifdefed imports for netcoreapp * disable netfx serialization for now * Merge error fixed * Update blobs after coreclr changes * Adding ValueTuple manual typeforwards * Renamed serialization variables for SortedSet * Disabling TreeSet<,> serialization support (for now) * Exception internal data storage typeforward added * Fix type conflict for mscorlib shim in uapaot configuration * Split the runtime and ref mscorlib shim We need to build the ref mscorlib shim only against the reference assemblies so we still build in shims.proj. However the runtime mscorlib shim needs to have access to internals so we build it against the runtime implementation using a manual project.