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-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-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-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-04-25Set exit codes for wrapper scripts if there is an error. (#8014)chcosta
2016-04-23Fixing issues in init-tools when path to git repo contains spaces (#8002)Jose Perez Rodriguez
2016-04-03Remove ReadyToRun workaroundJan Kotas
2016-03-30Upgrade dotnet cli version.Davis Goodin
2016-03-25Make "@echo off" configurable.Joel Hendrix
Echo is unconditionally turned off in batch files making it hard to debug issues. This change provides a way to leave echo on by setting the _echo environment var to on.
2016-02-25Merge pull request #6348 from joperezr/CleanToolRuntimeJose Perez Rodriguez
Correctly cleaning up the ToolRuntime folder once a new version is required.
2016-02-23Correctly cleaning up the ToolRuntime folder once a new version is required.Jose Perez Rodriguez
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-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-22Add error checking for dotnet cli restoringWes Haggard
2016-01-21Initial set of dev workflow scripts for windowsWes Haggard
Adds Clean.cmd and Sync.cmd There is also an option added for disabling batch restore of packages during the build. Right now it restore is still enabled by default but eventually it will be disabled and restore will only happen when you call sync.cmd or build an individual project. To disable batch restoring during build people can do one of 2 things: 1) set RestoreDuringBuild=false in your enviroment 2) pass /p:RestoreDuringBuild=false to build.cmd
2016-01-20Fix build on Windows 7Matt Ellis
There were two issues that we were hitting (with the first masking the second). 1. We seem to hit https://github.com/dotnet/coreclr/issues/2153 most of the time we tried to restore the tool-runtime (which manifested itself as a AV in CSC). Until that issue is fixed, we can use the COMPlus_ReadToRun environment variable to work around the issue. 2. We changed the unzipping part of the powershell init script to use System.IO.Compression.FileSystem, but that did not work on Windows 7 (Add-Type refuses to load the assembly within PowerShell). I added some extra logic to fall back to the shell stuff when we can't load the managed libraries. This does mean we'll pop UI when restoring the tools on Windows 7, but there's no real harm in doing so. Fixes #5493
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-19Update init-tools.cmd and build.cmd scriptsWes Haggard
Move init-tools to the top of build.cmd Clean-up init-tools.cmd script and put most stuff out into a log file Update build.cmd to add timestamp during logging also add timestamps around the batch restore target so we can see how log it takes. Adds the Summary option which will dump all the warnings and errors at the end of the console output so the are more noticable. Also cleans out the unnecessary restoring of packages.config files as we no longer have any of those.
2016-01-14Add quotes around the rmdir arguments as it ends with a "/" in some cases ↵Wes Haggard
which causes some invalid arg error. [tfs-changeset: 1564938]
2016-01-11Update init-tools.cmd so the semaphore file is written last so the failures ↵Wes Haggard
are easier to recover from. [tfs-changeset: 1563091]
2016-01-11Updating Dev WorkflowJose Perez Rodriguez
[tfs-changeset: 1562939]