Go to file
Sergei Vorobev 273328d06f Update files from psl-monad source-depot [SD:695331]
Corresponds to 1218e29752ba4
2016-04-13 09:41:34 -07:00
.vscode Put version back to make VS Code happy 2016-04-01 10:26:50 -07:00
docs Update Git setup documentation 2016-04-12 16:16:17 -07:00
src Update files from psl-monad source-depot [SD:695331] 2016-04-13 09:41:34 -07:00
test Merge pull request #782 from PowerShell/ImportAliasPesterUnitTest 2016-04-13 09:40:28 -07:00
.gitignore Update .gitignore to include work on windows 2016-04-04 18:51:57 -07:00
.gitmodules Remove OMI and provider submodules 2016-04-12 12:10:54 -07:00
.travis.yml Disable xUnit tests on Travis temporarily 2016-04-12 16:00:05 -07:00
appveyor.yml Publish on AppVeyor 2016-04-08 16:25:53 -07:00
bootstrap.sh Install latest .NET CLI packages on Travis 2016-04-01 17:52:00 -07:00
build.sh Deprecate build.sh script 2016-04-07 14:19:35 -07:00
CONTRIBUTING.md Quick markdown cleanups 2016-04-07 13:56:20 -07:00
debug.sh Improve debug.sh script 2016-02-19 14:58:42 -08:00
download.sh Update download.sh to get v0.3.0 deb asset 2016-04-11 12:41:58 -07:00
global.json Add global.json for dnu restore from root 2015-11-24 15:07:55 -08:00
KNOWNISSUES.md Update readme and known issues 2016-03-08 10:12:28 -08:00
mapping.json Fix accidental mapping change 2016-04-08 18:09:09 -07:00
nuget.config Add cli-deps feed for dotnet-test-xunit 2016-02-17 16:20:17 -08:00
omibuild.sh Update OMI and PSRP scripts 2016-03-08 16:17:37 -08:00
PowerShellGitHubDev.psm1 Improve Start-PSPackage 2016-04-09 19:44:55 -07:00
psrp.sh Update OMI and PSRP scripts 2016-03-08 16:17:37 -08:00
README.md Update Git setup documentation 2016-04-12 16:16:17 -07:00

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 Build Status
Windows Build status

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

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

You can verify that the submodules were initialized properly with:

git submodule status

If they're initialized, it will look like this:

 f23641488f8d7bf8630ca3496e61562aa3a64009 src/Modules/Pester (f23641488)
 c99458533a9b4c743ed51537e25989ea55944908 src/libpsl-native/test/googletest (release-1.7.0)
 e6bf85694ae8352d77175c4c7d304946e018808c src/windows-build (monad/cc6afbeb-3/31)

If they're not, there will be minuses in front (and the folders will be empty):

-f23641488f8d7bf8630ca3496e61562aa3a64009 src/Modules/Pester (f23641488)
-c99458533a9b4c743ed51537e25989ea55944908 src/libpsl-native/test/googletest (release-1.7.0)
-e6bf85694ae8352d77175c4c7d304946e018808c src/windows-build (monad/cc6afbeb-3/31)