We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c088679 commit ff5b253Copy full SHA for ff5b253
1 file changed
azure-pipelines.yml
@@ -0,0 +1,28 @@
1
+trigger:
2
+- master
3
+
4
+pool:
5
+ vmImage: 'windows-latest'
6
7
+variables:
8
+ solution: '**/*.sln'
9
+ buildPlatform: 'Any CPU'
10
+ buildConfiguration: 'Release'
11
12
+steps:
13
+- task: NuGetToolInstaller@0
14
15
+- task: NuGetCommand@2
16
+ inputs:
17
+ restoreSolution: '$(solution)'
18
19
+- task: VSBuild@1
20
21
+ solution: '$(solution)'
22
+ platform: '$(buildPlatform)'
23
+ configuration: '$(buildConfiguration)'
24
25
+- task: PublishBuildArtifacts@1
26
27
+ PathtoPublish: '$(Build.ArtifactStagingDirectory)'
28
+ ArtifactName: '$(system.teamProject)'
0 commit comments