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-08Fix _echo to be uniform (_echo just needs to be defined for it to be on). ↵Vance Morrison
(#12475)
2016-10-07Fix bug when calling clean.cmd with no args. Tested with -all, --all, -AlL, ↵Matt Galbraith
-ALL, no args, -b, -c, and -s to do the right thing now.
2016-10-04Handle any and alll variations of -all, --all, AlL, etc in clean.cmd -all.Matt Galbraith
First part of "clean.cmd --all" not causing build.
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-03-31Add support for additional properties passed to msbuildMariana Rios Flores
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-03-24Minor fix to clean when called without parametersMariana Rios Flores
2016-03-16New property /e for cleaning a running processMariana Rios Flores
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".
2016-01-22Fix missing semicolon for and do some small tweaks to clean.cmdWes 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