We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ab5c7ef + d8440be commit 3cf40abCopy full SHA for 3cf40ab
1 file changed
azure-pipelines.yml
@@ -0,0 +1,37 @@
1
+trigger:
2
+ branches:
3
+ include:
4
+ - '*'
5
+
6
+pool:
7
+ vmImage: 'windows-latest'
8
9
+variables:
10
+ solution: '**/*.sln'
11
+ buildPlatform: 'Any CPU'
12
+ buildConfiguration: 'Release'
13
14
+steps:
15
+- task: NuGetToolInstaller@1
16
17
+- task: NuGetCommand@2
18
+ inputs:
19
+ restoreSolution: '$(solution)'
20
21
+- task: VSBuild@1
22
23
+ solution: '$(solution)'
24
+ platform: '$(buildPlatform)'
25
+ configuration: '$(buildConfiguration)'
26
27
+- task: CopyFiles@2
28
29
+ Contents: '**/bin/Release/*'
30
+ TargetFolder: '$(build.artifactstagingdirectory)'
31
+ flattenFolders: true
32
33
+- task: PublishBuildArtifacts@1
34
35
+ PathtoPublish: '$(Build.ArtifactStagingDirectory)'
36
+ ArtifactName: 'drop'
37
+ publishLocation: 'Container'
0 commit comments