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-10-05Revert changes to clean.shMatt Galbraith
Explicitly undoing previous changes to clean.sh; Adding a case insensitive check is neither desired nor nice to do in a both Mac and Linux friendly way.
2016-10-04PR Feedback: support variations on "all" for clean.sh as wellMatt Galbraith
2016-08-11Fix minor bug in `clean.sh`Sung-Jae Lee
* add '-?' and '-h' option processing for usage. * fix 'line 19: [: ==: unary operator expected' when running without option. * fix typo '--all' to '-all' in usage() documentation
2016-07-28Changing dev workflow scripts to use the Run Command Tool (#10231)Mariana Rios Flores
Changes to dev workflow scripts to use run command tool.
2016-06-16Fixing DevWorkflow Scripts given that corerun is not present in the tool ↵Jose Perez Rodriguez
runtime anymore (#9469)
2016-03-31Add support for additional properties passed to msbuildMariana Rios Flores
2016-03-18Minor fixes to clean.shNate Amundson
clean.sh only needs to call init-tools.sh when it is going to use MSBuild. A corresponding change was made to clean.cmd in https://github.com/dotnet/corefx/commit/fe967b3 Specifying a substring using a negative length is only supported on Bash 4.2 and later. Some machines may have an older version of Bash (e.g. on Mac OS X), so we should avoid using it.
2016-02-17Make clean.sh executableEric Mellino
2016-02-06Add clean.sh for Linux dev workflowNate Amundson
This script provides a convenient way to clean the local dev environment on Linux. It provides options for removing the bin directory, the packages directory, the Tools directory, the NuGet package caches, all untracked files under the src directory, and all of the above. This change also utilizes the clean targets from BuildTools, and updates clean.cmd to exclude clean.log from being removed in the "all" option and check for errors from "git clean".