Skip to content

Commit 7b7f18b

Browse files
committed
Added initial yml file
1 parent 2bb3cb5 commit 7b7f18b

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

Synercoding.FileFormats.Pdf.sln

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
1717
ProjectSection(SolutionItems) = preProject
1818
.editorconfig = .editorconfig
1919
.gitignore = .gitignore
20+
azure-build-artifacts.yml = azure-build-artifacts.yml
2021
azure-pipelines.yml = azure-pipelines.yml
2122
build.cake = build.cake
2223
build.ps1 = build.ps1

azure-build-artifacts.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
trigger:
2+
- master
3+
4+
jobs:
5+
- job: Windows
6+
pool:
7+
vmImage: 'vs2017-win2016'
8+
steps:
9+
- powershell: .\build.ps1
10+
displayName: 'Run build script'
11+
env:
12+
COREHOST_TRACE: 0
13+
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
14+
DOTNET_CLI_TELEMETRY_OPTOUT: 1
15+
- task: CopyFiles@2
16+
displayName: 'Copy Files to: StagingDir'
17+
inputs:
18+
SourceFolder: artifacts
19+
Contents: '**/*.nupkg'
20+
TargetFolder: '$(Build.ArtifactStagingDirectory)'
21+
- task: PublishBuildArtifacts@1
22+
displayName: 'Publish Artifact: drop'

0 commit comments

Comments
 (0)