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-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-05-02Change sync.cmd to use argument parsing logic from build.cmd.Davis Goodin
2016-04-25Set exit codes for wrapper scripts if there is an error. (#8014)chcosta
2016-04-18Dev workflow for download from AzureMariana Rios Flores
2016-04-14Enable project reference to package dependency conversion for test bu…chcosta
* Enable project refrence to package dependency conversion in test builds •Opts some tests out of the process with "KeepAllProjectReferences" •Opts some project references out of conversion with "KeepProjectReference" •pulls in maririos change to sync.cmd •Respond to PR feedback Note: Generated project.json's fail to restore because of missing test-runtime property in frameworks which now have dependencies but previously did not. * Move global.json to root so that generated project.json's can find it for the test-runtime * System.Reflection.Context does not run on dnxcore50, but the project.json has that specified as the framework. Can't convert this to netcore50 because there is no current test-runtime for netcore50. Leave project reference when doing a test build against packages so that it can use the netcore50 implementation directly.
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-02-20Add sync.sh for dev workflowNate Amundson
This script is used for syncing one's repo. Also make a few minor fixes to sync.cmd.
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