Skip to content
This repository has been archived by the owner on Oct 21, 2023. It is now read-only.

VaporShell v2.10.0.20200218

Compare
Choose a tag to compare
@scrthq scrthq released this 18 Feb 10:16

Changelog

2.10.0.X - 2020-02-18

  • Brought minimum .NET version to 4.7.2
  • Updated build process to use InvokeBuild instead of psake
  • Updated tasks to pull down the latest dependent assemblies during build
  • Added scheduled build triggers for weekly deployments
  • Changed the version scheme so it includes the date stamp as the build version

Instructions

  1. Click here to download the VaporShell.zip file attached to the release.
  2. If on Windows: Right-click the downloaded zip, select Properties, then unblock the file.

    This is to prevent having to unblock each file individually after unzipping.

  3. Unzip the archive.
  4. (Optional) Place the module folder somewhere in your PSModulePath.

    You can view the paths listed by running the environment variable $env:PSModulePath

  5. Import the module, using the full path to the PSD1 file in place of VaporShell if the unzipped module folder is not in your PSModulePath:
    # In $env:PSModulePath
    Import-Module VaporShell
    
    # Otherwise, provide the path to the manifest:
    Import-Module -Path C:\MyPSModules\VaporShell\\VaporShell.psd1