ea5d5c3d05
Instead of using `dotnet publish`, we can use `dotnet build` and the new `netcoreapp1.0` framework with a new dependency on `Microsoft.NETCore.App` to generate output that does not include the runtime, but can be run anywhere (given the installation of the runtime). While we cannot yet adopt a dependency on the shared host until .NET Core RTM, we are forced to switch to this system anyway because the latest RC3 packages and CLI do not support `netstandardapp1.5`. See dotnet/cli#2482. Thus we're in an in-between state where we have to use `netcoreapp1.0`, but cannot use `"Microsoft.NETCore.App": { "type": "platform" }` to utilize the shared host, as we need to continue to ship our host. Without specifying "platform", we retain the status quo with respect to build steps and outputs. Additionally, there is no longer a good reason to use the RC3 packages, and it has been advised we switch to RC2 since the `Microsoft.NETCore.App` is only available for RC2. We must update packages because our current version can no longer be debugged. |
||
---|---|---|
.github | ||
.vscode | ||
docs | ||
src | ||
test | ||
.gitignore | ||
.gitmodules | ||
.travis.yml | ||
appveyor.yml | ||
build.sh | ||
debug.sh | ||
download.sh | ||
global.json | ||
mapping.json | ||
nuget.config | ||
PowerShellGitHubDev.psm1 | ||
README.md |
PowerShell
This repository is "Project Magrathea": Open PowerShell on GitHub, for Linux, Windows (.NET Core and Full), and OS X. It is built using the .NET Command Line Interface to support targetting every flavor of PowerShell. It is a collaborative effort among many teams:
- Full PowerShell
- Core PowerShell
- Open Source Technology Center
- .NET Foundation
Build Status
Platform | master |
---|---|
Ubuntu 14.04 | |
OS X 10.11 | |
Windows |
Get PowerShell
Linux | Windows .NET Core | Windows .NET Full | OS X | PSRP | |
---|---|---|---|---|---|
Build from Source | Instructions | Instructions | Instructions | Instructions | Instructions |
Get Binaries | Releases | Artifacts | Artifacts | Releases | TBD |
Building summary: Start-PSBuild
from the module
./PowerShellGitHubDev.psm1
(self-host on Linux / OS X)
See Linux releases and Windows artifacts installation instructions.
Team coordination
- PSCore Slack chat
- Waffle.io scrum board
- VSO items
- PowerShell subsystem maintainers
- Internal documents
If you encounter any problems, see the known issues, search the issues, and if all else fails, open a new issue.
Obtain the source code
Setup Git
Install Git, the version control system.
See the Contributing Guidelines for more Git information, such as our installation instructions, contributing rules, and Git best practices.
Download source code
Clone this repository. It is a "superproject" and has a number of other repositories embedded within it as submodules. Please see the contributing guidelines and learn about submodules. To make things easy, we can just clone recursively.
git clone --recursive https://github.com/PowerShell/PowerShell.git