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
2016-09-16Remove -u from cpEric StJohn
2016-09-16Update CLI's NuGet.Frameworks.dllEric St. John
We need the latest compatibility mappings for NuGet but the CLI hasn't yet picked up a new NuGet drop. Workaround this by manually patching the NuGet.Frameworks.dll in CLI.
2016-09-08Upgrade CLI, buildtools for RTM shared framework (#11387)Davis Goodin
* Upgrade CLI, buildtools for RTM shared framework. * Upgrade buildtools, add new platforms to init-tools (ubuntu 16.10, fedora 24, opensuse 42.1).
2016-08-27Add init-tools output to standard output (#11201)chcosta
2016-08-25Enable init-tools option to suppress non-error output from the console ↵chcosta
output (#11059) * Enable option to suppress non-error output from the console output for init-tools. * Redirect standard output to log * Remove unneccesary arg * Add Linux init-tools changes * revert dotnet to x64 * Remove echo line from run.sh
2016-08-25Allow Ubuntu 16.10 to initialize toolsEric Mellino
2016-07-12Specify --no-cache on restoreEric St. John
This lets us publish a package and consume it immediately from our builds. Without this our CI clients were relying on an HTTP cache of our myget feeds and failing when we updated projects or buildtools.
2016-07-05Fail init-tools atomicallyRainer Sigwald
Before this change, a failure fairly early in the `init-tools.sh` process could result in subsequent attempts being short-circuited. This introduces a marker file that is only written at the very end of the script, so that a `dotnet restore` or `init-tools.sh`-from-package failure can be retried immediately.
2016-06-23Allow override of __DOTNET_PKG used for Tools initEric Mellino
* Also, fall back to Ubuntu 14.04 if using an unsupported version.
2016-05-27Support building on all supported distrosMatt Ellis
With the updated buildtools, we should now be able to build on all the supported distros: - Centos 7 - Fedora 23 - openSUSE 13.2 - RHEL 7.2 - Ubuntu 14.04 - Ubuntu 16.06 Since the CLI support for some of these is still comming online, I have published custom versions to our own Azure Blob storage that we can download. Once CLI has real builds ready, we can move back to their built binaries. I also cleaned up how we compute the RID for the tools to restore.
2016-05-27Remove broken BUILDTOOLS_OVERRIDE_RUNTIME supportMatt Ellis
The layout of CLI has changed and the logic resulted in a non working CLI and errors during init-tools.sh
2016-05-25Add retry logic when downloading the CLI from Azure blob storage.Joel Hendrix
Downloading from Azure can transiently fail for a number of reasons. Add some retry logic when downloading to avoid transient failures. For *nix variants add a retry value when using curl (wget retries by default).
2016-05-25Clean up references to DNXCore50.Eric St. John
Clean up all non-essential references to DNXCore50.
2016-05-13Update CLI to 1.0.0-preview2-002733Eric St. John
2016-05-11Catching errors if they are thrown in the inner init-tools (#8397)Jose Perez Rodriguez
2016-03-30Upgrade dotnet cli version.Davis Goodin
2016-03-26Fixes to DW in OSXmaririos
2016-02-23Add new dotnet CLI, buildtools, and fixes to make restore work.Davis Goodin
Include capitalization fixes for NETNative packages to avoid xplat nuget race condition.
2016-02-12PR feedbackJose Perez Rodriguez
2016-02-12Cleaning up the output of init-tools.sh to mimic the cmd equivalentJose Perez Rodriguez
2016-02-10Add support for CentOS, Debian, RHELNate Amundson
The CoreFx build using build.sh is currently broken on CentOS because it doesn't restore the right version of the .NET CLI. This change fixes that and also restores the appropriate version for Debian and RHEL, and sets appropriate defaults for TestNugetRuntimeId for those three platforms. It also makes a few other minor edits: - Remove ToolNugetRuntimeId, which is no longer used. - Don't use "sh" when invoking init-tools.sh, because Bash is needed to use the "source" command. - Add a few more console output messages to init-tools.sh, similar to the ones already in init-tools.cmd. - Fix indentation in init-tools.sh. - Set the default TestNugetRuntimeId in build.sh when the target OS is specified to be FreeBSD, NetBSD, or Windows.
2016-02-06Consume v3 versions of the new feedsMatt Ellis
- We have moved our feeds to our enterprise myget account (dotnet.myget.org). Start pulling from there and use the v3 feeds since we are restoring with tools that understand them. - Remove some no longer needed NuGet commands and sources
2016-01-29Allow init-tools.sh to be called from any directoryJohn Chen (CLR)
2016-01-28Use .Net Core MSBuild for OS X and Linux BuildsJose Perez Rodriguez
2016-01-22Adding the option to use curl instead of wget for downloading the tarballJose Perez Rodriguez
2016-01-21Fix build script for Unix.Lakshmi Priya Sekar
2016-01-20Merge pull request #5529 from pgavlin/BuildToolsOverrideRuntimeStephen Toub
Respect BUILDTOOLS_OVERRIDE_RUNTIME in init-tools.
2016-01-20Fix dotnet cli version number to a specific versionWes Haggard
While we would like to use 'Latest' as the version for dogfooding purposes, we have to keep our builds unblocked and there is currently a breaking change we have to react to. So to unblock we are fixing to a particular version we know works.
2016-01-20Respect BUILDTOOLS_OVERRIDE_RUNTIME in init-tools.Pat Gavlin
If the user has specified a value for BUILDTOOLS_OVERRIDE_RUNTIME (e.g. if they are building on an OS or distro for which a package is not available), copy the specified runtime into the necessary locations for dotnet, dnx, etc.
2016-01-12Fix init-tools.shNate McMaster
2016-01-11Updating Dev WorkflowJose Perez Rodriguez
[tfs-changeset: 1562939]