Skip to content

Commit 2ed30b8

Browse files
committed
Set resource generator pipeline
[skip ci]
1 parent b4450c7 commit 2ed30b8

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

azure-pipelines-1.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
pool:
2+
vmImage: 'VS2017-Win2016'
3+
4+
variables:
5+
solution: 'MaterialDesignToolkit.ResourceGeneration.sln'
6+
buildPlatform: 'Any CPU'
7+
buildConfiguration: 'Release'
8+
9+
steps:
10+
- powershell: .paket\paket.exe restore
11+
12+
- task: VSBuild@1
13+
inputs:
14+
solution: '$(solution)'
15+
platform: '$(buildPlatform)'
16+
configuration: '$(buildConfiguration)'
17+
18+
- task: PublishPipelineArtifact@0
19+
name: "PublishResourceGenerator"
20+
inputs:
21+
artifactName: 'ResourceGenerator'
22+
targetPath: 'mdresgen/bin/Release'

0 commit comments

Comments
 (0)