Skip to content

Latest commit

 

History

History
48 lines (31 loc) · 778 Bytes

BUILDING.md

File metadata and controls

48 lines (31 loc) · 778 Bytes

How to build

Using the build script

Statiq uses Cake to handle scripted build activities. Right now, Statiq is Windows-only (both build and execution). If you just want to build Statiq and all the extensions, run

from cmd

build.cmd

or from Powershell

.\build.ps1

If you want to build and run tests, run

from cmd

build.cmd -target Run-Unit-Tests

from Powershell

.\build.ps1 -target Run-Unit-Tests

You can also clean the build by running

from cmd

build.cmd -target Clean

from Powershell

.\build.ps1 -target Clean

From Visual Studio

If you want to open and build Statiq from Visual Studio, the main solution is in the root folder as Statiq.Framework.sln.