Skip to content
This repository was archived by the owner on May 17, 2019. It is now read-only.

Commit fbebe1d

Browse files
committed
Fix build script adding to local feed
1 parent 1990836 commit fbebe1d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

scripts/appveyor_build.cmd

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,10 @@ dotnet restore --configfile ..\..\nuget.config
5454
IF NOT "%APPVEYOR_REPO_TAG_NAME%"=="" (
5555
IF NOT "%STEELTOE_VERSION_SUFFIX%"=="" (
5656
dotnet pack --configuration %BUILD_TYPE% --version-suffix %STEELTOE_VERSION_SUFFIX%
57+
nuget add "bin\%BUILD_TYPE%\Steeltoe.Security.DataProtection.CredHubBase.%STEELTOE_VERSION%-%STEELTOE_VERSION_SUFFIX%.nupkg" -Source "%USERPROFILE%\localfeed"
5758
) ELSE (
5859
dotnet pack --configuration %BUILD_TYPE%
60+
nuget add "bin\%BUILD_TYPE%\Steeltoe.Security.DataProtection.CredHubBase.%STEELTOE_VERSION%.nupkg" -Source "%USERPROFILE%\localfeed"
5961
)
6062
)
6163
IF "%APPVEYOR_REPO_TAG_NAME%"=="" (dotnet pack --configuration %BUILD_TYPE% --version-suffix %STEELTOE_VERSION_SUFFIX% --include-symbols --include-source)

0 commit comments

Comments
 (0)