10 lines
183 B
Bash
Executable File
10 lines
183 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# pack.sh — produce the ZB.MOM.WW.Auth NuGet packages into ./artifacts.
|
|
#
|
|
# Usage:
|
|
# ./build/pack.sh
|
|
|
|
set -euo pipefail
|
|
|
|
dotnet pack -c Release -o ./artifacts
|