Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
configmap
1.0.1.0
samples/_default/.build.map.ps1
$targets
=
@{
"build"
=
{
param
(
$ctx
,
[bool]
[switch]
$noRestore
)
$a
=
@(
)
if
(
$noRestore
)
{
$a
+=
"--no-restore"
}
dotnet
build
@a
}
}
return
$targets