We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dd2eb25 + 862defa commit 0006a3dCopy full SHA for 0006a3d
pack.sh
@@ -0,0 +1,9 @@
1
+#!/bin/bash
2
+set -e
3
+
4
+[ -z $1 ] && echo "Missing version" && exit 1
5
6
+version=$1
7
+project=src/Cuiliang.AliyunOssSdk.csproj
8
+dotnet build -p:version=$version -c Release $project
9
+dotnet pack $project -c Release -p:IncludeSymbols=true -p:SymbolPackageFormat=snupkg --include-source -p:Version=$version -o ./artifacts
0 commit comments