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/pkg
AgeCommit message (Collapse)Author
2017-03-23Add DataTable support to SqlBulkCopy. Also adds tests for SqlBulkCopy.Cory Rivera
2017-03-22Merge pull request #17364 from weshaggard/UpdateOSXVersionStephen Toub
Bump version of OSX to 10.12 which is they lowest we support in .NET Core 2.0
2017-03-22Bump version of OSX to 10.12Wes Haggard
For .NET Core 2.0 the min version of OSX we support is 10.12
2017-03-21Add back System.Numerics.Vectors packageEric St. John
We need the package even though this library is currently part of netstandard2.0 (at least for now https://github.com/dotnet/standard/issues/250) because not all types are present in .NET 4.6.1 even though it supports netstandard2.0.
2017-03-21Fix markdown headings to render correctlyOmair Majid
GitHub recently switched their rendering engine and now require a space between `#` and the actual heading. See https://github.github.com/gfm/#atx-headings
2017-03-20Merge pull request #17246 from ericstj/diagSourceNoMetaEric StJohn
Fix package dependency issues
2017-03-18Only include symbols / src in transport packages, also fix pre-existing typo ↵chcosta
(#17259) * Only include symbols / src in transport packages, also fix pre-existing typo * PR feedback
2017-03-17Add test project for packagesEric St. John
This is not currently plugged into the build but can be ran after a complete `-allConfigurations` build. It examines the package reports for every project built and generates a project.json that restores that package for each framework / RID that it supports. Things to do in the future: 1. Switch to latest CLI and MSBuild based projects. 2. Add test cases post-restore that examine the following: a) No bin-clashes b) API compat between ref & lib. c) No type-clashes in ref. d) Verify closure 3. Enable the tests to run in helix.
2017-03-14Ensure we build SqlClient.Sni packageEric St. John
This package is just a meta-package for the RID-specific SNI packages, which are built in another repository.
2017-03-07Merge pull request #16729 from cydhaselton/android-ridsEric Mellino
Add RIDs for Android
2017-03-07Removed final hidden tab, replace with whitespace.cydhaselton
2017-03-07Fixing hidden tabs, replacing with correct spacingcydhaselton
2017-03-07Fixed whitespace issuecydhaselton
2017-03-07Replace Android MIPS RID with arm. Remove Android API levels 22-23cydhaselton
(corrected authoring info)
2017-03-06Merge pull request #16728 from qmfrederik/rids/arm64Eric Mellino
Add RIDs for arm64 Ubuntu, Alpine Linux
2017-03-05Changed android x64 RID to clearer arm64cydhaselton
2017-03-05Fix whitespace in runtime.jsonFrederik Carlier
2017-03-05Add RIDs for Androidcydhaselton
2017-03-05Add RIDs for arm64 Ubuntu, Alpine LinuxFrederik Carlier
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-03-02Merge pull request #16444 from dotnet/qizhanMS-Tx-NamechangeQi Zhang
Assembly Name Change for System.Transactions.Local
2017-03-02Update package index for System.Transactions.Local name change.qizhanMS
2017-03-02ApplyPreReleaseSuffix to static dependenciesEric St. John
I was applying the baseline but neglecting to append pre-release. As a result we were getting dependencies to stable packages which didn't exist.
2017-03-01Set correct RID in private package runtime.jsonEric St. John
My previous change https://github.com/dotnet/corefx/commit/83ecd322e3c6190870f4855fa7104ab3ac0a6404 broke the runtime.json by putting the wrong target runtime string (it was getting runtime package ID instead). This was happening because MSBuild does the transform first then applies metadata and ended up using the transformed value. Fix this by breaking it up into to steps so that applying metadata happens before the transform.
2017-02-28Add RID support for LinuxMint 18.1Gaurav Khanna
2017-02-27Fix RIDS for UAP metapackageJose Perez Rodriguez
2017-02-25update pkg/descriptions.json for System.Transactions.Local assembly name change.qizhanMS
2017-02-25Fix casing of BuildRIDEric St. John
This was hitting a bug in msbuild. https://github.com/Microsoft/msbuild/issues/1751
2017-02-24Improve private package build perfEric St. John
After including all source in private packages build perf is significantly regressed. This is due to the huge number of props and items from those props. When evaluating project references we were revaluating all these once for each RID. This was excessive since the only thing we needed out of the project reference was the package ID. Since that's coming from the same project, just list it explicitly.
2017-02-24Use file lists for packaging rather than copiesEric St. John
Avoid an unnecessary copy for packaging.
2017-02-24Update compression package indexIan Hays
removes the 4.4.0 package from the index and sets 4.3.0 and the last stable
2017-02-23Add NETStandard.Library meta-package to package indexEric St. John
Also update buildtools to understand meta-packages in package index.
2017-02-22Merge pull request #16355 from ericstj/harvestPackagesEric StJohn
Harvest packages
2017-02-21Download packages for harvestingEric St. John
This brings back the project that download last-shipped stable packages for the purpose of harvesting assets and support. In doing this I found a bug in buildtools that requried a fix & had to update the packageIndex.
2017-02-21Move package harvest project to externalEric St. John
2017-02-21Add RIDs for Fedora 25 and 26 (#16302)Radka
2017-02-16Update packageIndex to contain inbox itemsEric St. John
This to start I did a one-time call of UpdatePackageIndex specifying InboxFrameworkListFolder=<buildTools>\FrameworkLists This committed all the previous framework lists to the package index. Then I updated using the included target to include the inbox items from framework packages.
2017-02-16Fix baseline for packages that no longer ship.Eric St. John
For all libraries that no longer ship in packages, remove baseline entries for the non-shipping versions.
2017-02-16Remove runtime packages from package indexEric St. John
All runtime packages will be part of the framework package. One exception (still TBD) is SqlClient's SNI.dll.
2017-02-16Enable package buildEric St. John
This turns the package build back on and fixes all packages so that they build. There is still work to do to fix dependencies.
2017-02-15Update index and descriptions for new packagesEric St. John
2017-02-14Merge pull request #16115 from ericstj/buildAllFixesEric StJohn
Build all fixes
2017-02-13Fix UAP package build for BuildAllConfigurationsEric St. John
2017-02-13Remove arm64 support for UAP packageJose Perez Rodriguez
2017-02-10Adding new definition for UAP and UAPAOT builds and adding it to pipebuild ↵Jose Perez Rodriguez
(#16018) Adding new definition for UAP and UAPAOT builds and adding it to pipebuild
2017-02-10Generate aot-runtime specific packagesJose Perez Rodriguez
2017-02-09Adding Microsoft.Private.CoreFx.UAP package build (#15964)Jose Perez Rodriguez
Adding Microsoft.Private.CoreFx.UAP package build
2017-02-08Prevent compiling against runtime implementation librariesChristopher Costa
2017-02-03Update NS2.0 Apicompat baselineWes Haggard
Update the NS2.0 package to fix a couple issues in the shims. Added more shims to the list we need for .NET Core compat with NS2.0 The remaining System.Transactions issues will be fixed once we rename that assembly as part of https://github.com/dotnet/corefx/issues/15259
2017-02-02Only build private NETCoreApp nupkg for TargetGroup-netcoreappEric St. John