We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea81b37 commit 51d2f4dCopy full SHA for 51d2f4d
Makefile
@@ -0,0 +1,12 @@
1
+
2
3
+release:
4
+ifeq ($(strip $(version)),)
5
+ @echo "\033[31mERROR:\033[0;39m No version provided."
6
+ @echo "\033[1;30mmake pack version=1.0.0\033[0;39m"
7
+else
8
+ dotnet pack --verbosity quiet --nologo -c Release /p:PackageVersion=$(version) src
9
+ @echo packed $(version)
10
+ nuget push src/bin/Release/TimoStamm.WebSockets.Controller.$(version).nupkg -Source https://www.nuget.org
11
+endif
12
0 commit comments