psconfluencepublisher/scripts/pack.ps1
Rodweil, Theodor 46b1b7c83f
refactor: make this a valid nuget package for Powershell gallery
feat: add build environment scripts
2023-08-07 20:56:50 +02:00

12 lines
268 B
PowerShell
Executable file

#! /usr/bin/pwsh
Set-StrictMode -Version Latest
$ErrorActionPreference = 'Stop'
$ErrorView = "NormalView"
$basePath = Join-Path $PSScriptRoot '..'
nuget pack (Join-Path $basePath 'PSConfluencePublisher.nuspec') `
-OutputDirectory (Join-Path $basePath 'dist')