en/about_Builder.help.txt

TOPIC
    about_Builder
 
SYNOPSIS
    Build system DSL based on PowerShell
 
VERSION
    You are running version 3.1.1024.0 of Builder :)
 
SHORT DESCRIPTION
    Builder is a source code build system based on PowerShell.
 
INSTALLATION
    The best option (if you are on Windows 10 or similar) is to use the `Install-Package` command from
    PowerShell.
 
    # Using Install-Package
 
    1. `Install-Package Builder`
 
    2. `ipmo Builder`
 
    3. `Get-Help about_Builder`, or `Get-Command -Module Builder`.
 
    4. YOUR WORK HERE IS DONE.
 
 
    # Manual portable installation
 
    If that doesn't work for you, try installing it manually.
 
    1. Download the latest release (https://get.lizoc.com/builder.zip)[from here]. If you want a specific
       version, it's something like `https://get.lizoc.com/builder.3.1.1024.0.zip`.
 
    2. Copy the 'Builder' folder in archive to `Documents\WindowsPowerShell\Modules`.
    So you get `Documents\WindowsPowerShell\Modules\Builder\Builder.psd1`, ...
 
    3. Make sure your PowerShell policy allows running scripts (in an escalated terminal, type in:
    `Set-ExecutionPolicy Unrestricted`).
 
    4. Here is a short script snipplet to automate the steps above:
    ```
    wget https://get.lizoc.com/builder.zip -OutFile $env:TEMP\builder.zip
    Expand-Archive $env:TEMP\builder.zip $env:PSModulePath.Split(';')[0]
    ipmo Builder
    ```
 
CHANGELOG
    http://buildcenter.github.io/Builder/CHANGELOG.md
 
LINKS
    http://www.github.com/buildcenter/Builder
 
COPYRIGHT
    Copyright (c) 2018 Lizoc Inc. All rights reserved.
 
LICENSE
    The MIT License
    ===============
     
    Copyright 2017 Lizoc Inc.
     
    Permission is hereby granted, free of charge, to any person obtaining
    a copy of this software and associated documentation files (the
    "Software"), to deal in the Software without restriction, including
    without limitation the rights to use, copy, modify, merge, publish,
    distribute, sublicense, and/or sell copies of the Software, and to
    permit persons to whom the Software is furnished to do so, subject to
    the following conditions:
     
    The above copyright notice and this permission notice shall be included
    in all copies or substantial portions of the Software.
     
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
    IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
    CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
    TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
    SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.