Skip to content
Chris Duck edited this page Mar 2, 2019 · 1 revision
  1. Install the DotNet Core SDK 2.x+
    • Any version that can target netstandard2.0 will work
  2. Install the Windows 8 SDK
    • The only component needed is the .NET Framework 4.5 Software Development Kit
    • This allows the project to target .NET 4.5 for maximum backward compatibility on Windows PowerShell
    • This is missing if you are getting this error message during build: The reference assemblies for framework ".NETFramework,Version=v4.5" were not found.
    • Note that we've had to reboot after installing before the runtimes were detected

Additional tools used in the project

  1. PSScriptAnalyzer: used to make sure best practices are being followed
  2. Pester: used for testing
Install-Module PSScriptAnalyzer,Pester -Force -Scope CurrentUser -SkipPublisherCheck
Clone this wiki locally