2016-03-30 19:06:57 +00:00
PowerShell
==========
2015-07-01 22:06:29 +00:00
2016-03-30 22:13:29 +00:00
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][dotnet-cli] 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
[dotnet-cli]: https://github.com/dotnet/cli
2016-03-30 19:06:57 +00:00
Build Status
------------
2016-01-22 19:36:23 +00:00
2016-04-06 18:32:10 +00:00
| Platform | `master` |
|--------------|----------|
| Ubuntu 14.04 | [![Build Status ](https://travis-ci.com/PowerShell/PowerShell.svg?token=31YifM4jfyVpBmEGitCm&branch=master )](https://travis-ci.com/PowerShell/PowerShell) |
2016-04-14 18:25:09 +00:00
| OS X 10.11 | [![Build Status ](https://travis-ci.com/PowerShell/PowerShell.svg?token=31YifM4jfyVpBmEGitCm&branch=master )](https://travis-ci.com/PowerShell/PowerShell) |
2016-04-06 18:32:10 +00:00
| Windows | [![Build status ](https://ci.appveyor.com/api/projects/status/wb0a0apbn4aiccp1/branch/master?svg=true )](https://ci.appveyor.com/project/PowerShell/powershell-linux/branch/master) |
2016-03-30 19:06:57 +00:00
2016-03-30 22:13:29 +00:00
Get PowerShell
--------------
2016-03-30 22:57:52 +00:00
| | Linux | Windows .NET Core | Windows .NET Full | OS X | PSRP |
|-----------------------|-------|-------------------|-------------------|------|------|
2016-04-12 22:59:38 +00:00
| Build from **Source** | [Instructions ](docs/building/linux.md ) | [Instructions ](docs/building/windows-core.md ) | [Instructions ](docs/building/windows-full.md ) | [Instructions ](docs/building/osx.md ) | [Instructions][psrp] |
2016-03-30 22:57:52 +00:00
| Get **Binaries** | [Releases][] | [Artifacts][] | [Artifacts][] | [Releases][] | TBD |
2016-03-30 22:13:29 +00:00
Building summary: `Start-PSBuild` from the module
2016-05-18 20:58:59 +00:00
`./build.psm1` (self-host on Linux / OS X)
2016-03-30 22:13:29 +00:00
2016-03-31 06:29:16 +00:00
See [Linux releases ](docs/installation/linux.md ) and
[Windows artifacts ](docs/installation/windows.md ) installation
instructions.
2016-03-30 22:13:29 +00:00
[releases]: https://github.com/PowerShell/PowerShell/releases
[artifacts]: https://ci.appveyor.com/project/PowerShell/powershell-linux/build/artifacts
2016-04-12 22:59:38 +00:00
[psrp]: https://github.com/PowerShell/psl-omi-provider
2016-03-30 22:13:29 +00:00
2016-03-30 19:06:57 +00:00
Team coordination
-----------------
- [PSCore Slack chat ](https://pscore.slack.com/ )
- [Waffle.io scrum board ](https://waffle.io/PowerShell/PowerShell )
2016-04-21 21:22:06 +00:00
- [VSO items ](https://aka.ms/openps )
- [PowerShell subsystem maintainers ](https://aka.ms/psowners )
2016-05-18 17:47:13 +00:00
- [Automation Sharepoint ](https://aka.ms/pscore )
- [Internal Open PowerShell Documents ](https://github.com/PowerShell/Internal-PowerShellTeam-Tools/tree/master/OpenPowerShellDocs )
2016-01-22 19:36:23 +00:00
2016-03-30 22:13:29 +00:00
If you encounter any problems, see the [known issues ](KNOWNISSUES.md ),
search the [issues][], and if all else fails, open a new issue.
[issues]: https://github.com/PowerShell/PowerShell/issues
2016-03-31 06:29:16 +00:00
Obtain the source code
----------------------
2015-07-01 22:06:29 +00:00
2015-10-08 20:44:37 +00:00
### Setup Git
2015-07-01 22:06:29 +00:00
2016-01-21 20:25:48 +00:00
Install [Git][], the version control system.
2016-04-22 21:37:26 +00:00
See the [Contributing Guidelines ](.github/CONTRIBUTING.md ) for more Git
2016-03-14 19:03:04 +00:00
information, such as our installation instructions, contributing
rules, and Git best practices.
2016-03-09 22:24:15 +00:00
2016-03-14 19:03:04 +00:00
[Git]: https://git-scm.com/documentation
2016-03-09 22:24:15 +00:00
2016-03-14 19:03:04 +00:00
### Download source code
2016-01-21 20:25:48 +00:00
2016-03-14 19:03:04 +00:00
Clone this repository. It is a "superproject" and has a number of
other repositories embedded within it as submodules. *Please* see the
2016-04-12 23:16:17 +00:00
contributing guidelines and learn about submodules. To make things
easy, we can just clone recursively.
```sh
git clone --recursive https://github.com/PowerShell/PowerShell.git
```