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
2017-11-03Fix UpdateBlobs regression, reenabling ValueTuple tests on Core, add ↵Viktor Hofer
Dictionary<string,string> serialization test case (#24962) * Fix UpdateBlobs regression, reenabling ValueTuple tests on Core * Add Dictionary<string,string> serialization test case
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-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-09-11DbNull serialization with tests and forward (#23897)Viktor Hofer
* DbNull tests and forward * UnitySerializationHolder deserialization test added
2017-06-20Update CoreClr, CoreFx, ProjectNTfs, ProjectNTfsTestILC, Standard to ↵dotnet-maestro-bot
preview1-25419-02, preview1-25419-02, beta-25419-00, beta-25419-00, preview1-25419-01, respectively (master) (#21221) * Update CoreClr, CoreFx, ProjectNTfs, ProjectNTfsTestILC, Standard to preview1-25419-02, preview1-25419-02, beta-25419-00, beta-25419-00, preview1-25419-01, respectively * Remove OICC
2017-06-17Fixes the ifdefs for the mscorlib and System facades to build for aot as ↵Morgan Brown
well. Also includes a minor rd.xml tweak for BinaryFormatter. Fixes hundreds of BinaryFormatter tests. Progress on #19119 (#21163)
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.