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 2de5924 commit e4d3d77Copy full SHA for e4d3d77
dotnet/nuget-pack.sh
@@ -1,6 +1,12 @@
1
#!/bin/sh
2
echo "Building and testing..."
3
-. ./test.sh
+dotnet test -c Release Serpent/Tests
4
5
-echo "Creating nuget release package..."
6
-dotnet pack -c Release Serpent
+echo "\n\nCreating nuget release package..."
+dotnet pack -c Release -o $(pwd)/dist Serpent
7
+
8
+echo "\n\nPackage available in dist/ directory:"
9
+ls -l dist
10
11
+echo "\nIf this is allright, publish to nuget.org with:"
12
+echo "dotnet nuget push dist/Razorvine.Serpent.xxxxx.nupkg -s https://www.nuget.org -k api_key_from_nuget_org"
0 commit comments