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.
1 parent dd2eb25 commit 862defaCopy full SHA for 862defa
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