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 647304b commit 6609c65Copy full SHA for 6609c65
appveyor.yml
@@ -28,6 +28,13 @@ build:
28
include_nuget_references: false
29
verbosity: minimal
30
31
+after_build:
32
+ - ps: |
33
+ $semver = ${env:APPVEYOR_BUILD_VERSION} -ireplace '(\d+.\d+.\d+).(\d+)', "`$1-ci`$2-${env:APPVEYOR_REPO_BRANCH}"
34
+ $semver = $semver.Substring(0, [System.Math]::Min(20, $semver.Length))
35
+ nuget pack RabbitMQ.Client.nuspec -version $semver -symbols
36
+ nuget pack RabbitMQ.ServiceModel.nuspec -version $semver -symbols
37
+
38
install:
39
- ps: |
40
$regPath = "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\RabbitMQ"
@@ -46,4 +53,7 @@ test:
46
53
except:
47
54
- RequireSMP
48
55
56
+artifacts:
57
+ - path: '**\*.nupkg'
58
49
59
deploy: off
0 commit comments