-
Notifications
You must be signed in to change notification settings - Fork 220
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Sign VS Insertion Nuget Packages (#1466)
This PR removes the external YAML steps to create nuget packages and injects it into the solution build process if its on the CI.
- Loading branch information
1 parent
3cba36d
commit 61b1593
Showing
7 changed files
with
40 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Pack and Publish NuGet Packages for VS | ||
# Creates: | ||
# - VS.Redist.Debugger.MDD.MIEngine | ||
# - VS.Redist.Debugger.MDD.UnixPortSupplier | ||
--- | ||
parameters: | ||
BasePath: $(Build.StagingDirectory) | ||
|
||
steps: | ||
- task: 1ES.PublishNuget@1 | ||
displayName: Publish Nuget package | ||
condition: and(succeeded(), eq(variables['SignType'], 'real')) | ||
inputs: | ||
packagesToPush: '$(Build.SourcesDirectory)\VS.Redist.Debugger.MDD.MIEngine.*.nupkg;$(Build.SourcesDirectory)\VS.Redist.Debugger.MDD.UnixPortSupplier.*.nupkg' | ||
packageParentPath: '$(Build.SourcesDirectory)' | ||
publishVstsFeed: '97a41293-2972-4f48-8c0e-05493ae82010' # VS | ||
nuGetFeedType: internal | ||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters