Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSantiago Fernandez Madero <safern@microsoft.com>2020-07-07 23:19:37 +0300
committerGitHub <noreply@github.com>2020-07-07 23:19:37 +0300
commit792fd1df1894200a159a3fc0d03eeda3c400cc3e (patch)
treeeeaed033a1b7ca18b2d152c2cbb11d25553400d5 /eng/build.ps1
parent8f25c0423cc689dfea59ad2cade312c3958a1af7 (diff)
Add examples of System.Private.CoreLib iterative workflow (#38885)
* Add examples of System.Private.CoreLib iterative workflow * Update build.sh * PR Feedback
Diffstat (limited to 'eng/build.ps1')
-rw-r--r--eng/build.ps19
1 files changed, 6 insertions, 3 deletions
diff --git a/eng/build.ps1 b/eng/build.ps1
index bfce8766ece..f8b205bd393 100644
--- a/eng/build.ps1
+++ b/eng/build.ps1
@@ -93,9 +93,12 @@ function Get-Help() {
Write-Host "* Build Mono runtime for Windows x64 on Release configuration."
Write-Host ".\build.cmd mono -c release"
Write-Host ""
- Write-Host "It's important to mention that to build Mono for the first time,"
- Write-Host "you need to build the CLR and Libs subsets beforehand."
- Write-Host "This is done automatically if a full build is performed at first."
+ Write-Host "* Build Release coreclr corelib, crossgen corelib and update Debug libraries testhost to run test on an updated corelib."
+ Write-Host ".\build.cmd clr.corelib+clr.nativecorelib+libs.pretest -rc release"
+ Write-Host ""
+ Write-Host "* Build Debug mono corelib and update Release libraries testhost to run test on an updated corelib."
+ Write-Host ".\build.cmd mono.corelib+libs.pretest -rc debug -c release"
+ Write-Host ""
Write-Host ""
Write-Host "For more information, check out https://github.com/dotnet/runtime/blob/master/docs/workflow/README.md"
}