File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11# CodeSigningDemo
22Skeleton for demonstrating use of the Sign CLI tool
33
4- The ` azure-pipelines.yml ` shows how you can use a multi-stage build with an ` environment ` to require
5- a manual approval for code signing. Once signed, a Release is created and pushed though a release pipeline.
4+ The ` azure-pipelines.yml ` shows how you can use a multi-stage build with code signing for Azure DevOps
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ stages:
1111 jobs :
1212 - job : Build
1313 pool :
14- vmImage : windows -latest
14+ vmImage : ubuntu -latest
1515 variables :
1616 BuildConfiguration : Release
1717
@@ -21,26 +21,16 @@ stages:
2121 inputs :
2222 version : 6.x
2323
24- - task : DotNetCoreCLI@2
25- inputs :
26- command : custom
27- custom : tool
28- arguments : install --tool-path . nbgv
29- displayName : Install NBGV tool
30-
31- - script : nbgv cloud
32- displayName : Set Version
33-
3424 - task : DotNetCoreCLI@2
3525 inputs :
3626 command : pack
3727 packagesToPack : src/AClassLibrary/AClassLibrary.csproj
3828 configuration : $(BuildConfiguration)
39- packDirectory : $(Build.ArtifactStagingDirectory)\ Packages
29+ packDirectory : $(Build.ArtifactStagingDirectory)/ Packages
4030 verbosityPack : Minimal
4131 displayName : Build Package
4232
43- - publish : $(Build.ArtifactStagingDirectory)\ Packages
33+ - publish : $(Build.ArtifactStagingDirectory)/ Packages
4434 displayName : Publish Build Artifacts
4535 artifact : BuildPackages
4636
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments