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.
2 parents 3181455 + 2600aaf commit ec4d4e9Copy full SHA for ec4d4e9
azure-pipelines.yml
@@ -0,0 +1,23 @@
1
+trigger:
2
+- master
3
+pool:
4
+ vmImage: 'ubuntu-latest'
5
+variables:
6
+ buildConfiguration: 'Release'
7
+ Major: '2'
8
+ Minor: '0'
9
+ Patch: '0'
10
+# Version: '$(Major).$(Minor).$(Patch).$(Build.BuildID)'
11
+ Version: '$(Major).$(Minor).$(Build.BuildID)'
12
+steps:
13
+- task: DotNetCoreCLI@2
14
+ inputs:
15
+ command: 'build'
16
+ projects: 'OrmicoDbPatchManagerSqlServer/*.sln'
17
+ workingDirectory: 'OrmicoDbPatchManagerSqlServer'
18
+ arguments: '--configuration $(buildConfiguration) --output $(Build.ArtifactStagingDirectory)'
19
+- script: dotnet build OrmicoDbPatchManagerSqlServer/*.sln
20
+- task: PublishBuildArtifacts@1
21
22
+ pathtoPublish: '$(Build.ArtifactStagingDirectory)'
23
+ artifactName: nuget-artifacts
0 commit comments