Rename src/powershell-windows to src/powershell-win-core

- Update build.psm1
- Update docs
This commit is contained in:
Sergei Vorobev 2016-07-26 16:47:57 -07:00
parent 6626720e44
commit e97af44674
3 changed files with 6 additions and 6 deletions

View File

@ -376,7 +376,7 @@ function New-PSOptions {
}
else
{
$Top = "$PSScriptRoot/src/powershell-windows"
$Top = "$PSScriptRoot/src/powershell-win-core"
}
}
Write-Verbose "Top project directory is $Top"

View File

@ -13,14 +13,14 @@ Top directory
We are calling `dotnet` tool build for `$Top` directory
- `src\powershell-windows` for CoreCLR on Windows.
- `src\powershell-win-core` for CoreCLR on Windows.
- `src\powershell-unix` for CoreCLR on Linux and OS X.
- `src\powershell-full` for FullCLR builds (Windows only)
- `src\powershell-win-full` for FullCLR builds (Windows only)
### Dummy dependencies
We use dummy dependencies between project.json files to leverage `dotnet` build functionality.
For example, `src\powershell-windows\project.json` has dependency on `Microsoft.PowerShell.PSReadLine`,
For example, `src\powershell-win-core\project.json` has dependency on `Microsoft.PowerShell.PSReadLine`,
but in reality, there is no build dependency.
Dummy dependencies allows us to build just `$Top` folder, instead of building several folders.
@ -28,7 +28,7 @@ Dummy dependencies allows us to build just `$Top` folder, instead of building se
### Dummy dependencies rules
* If assembly is part of FullCLR build,
it should be listed as a dependency for FullCLR $Top folder (src\powershell-full)
it should be listed as a dependency for FullCLR $Top folder (src\powershell-win-full)
* If assembly is part of CoreCLR build,
it should be listed as a dependency for $Top folder (src\powershell-unix or src\powershell-windows)
it should be listed as a dependency for $Top folder (src\powershell-unix or src\powershell-win-core)