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 2a905a4 commit e91f167Copy full SHA for e91f167
deployment/publish.sh
@@ -2,14 +2,14 @@
2
version=$(cat version)
3
publish_dir="./source/$1/bin/Release"
4
full_version="$version.$2"
5
-package_name="$1.$full_version.nupkg"
+package_name="$1.$version.nupkg"
6
7
dotnet pack \
8
./source/"$1"/"$1".csproj \
9
--configuration Release \
10
-p:AssemblyVersion="$full_version" \
11
-p:AssemblyFileVersion="$full_version" \
12
- -p:PackageVersion="$full_version" \
+ -p:PackageVersion="$version" \
13
-p:InformationalVersion="$version""$3" \
14
/nologo ||
15
exit
0 commit comments