Skip to content

Commit cd0de12

Browse files
committed
Add display names to Azure pipeline script
1 parent 38b7737 commit cd0de12

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

azure-pipelines.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,22 +16,26 @@ variables:
1616

1717
steps:
1818
- task: NuGetToolInstaller@1
19+
displayName: Install NuGet tool
1920

2021
- task: NuGetCommand@2
22+
displayName: Restore solution(s)
2123
inputs:
2224
command: 'restore'
2325
restoreSolution: '**/*.sln'
2426
feedsToUse: 'config'
2527
nugetConfigPath: ./samples/nuget.config
2628

2729
- task: VSBuild@1
30+
displayName: Build UWP solution
2831
inputs:
2932
platform: 'x86'
3033
solution: '$(solutionUwp)'
3134
configuration: '$(buildConfiguration)'
3235
msbuildArgs: '/p:AppxBundlePlatforms="$(buildPlatform)" /p:AppxPackageDir="$(appxPackageDir)" /p:AppxBundle=Always /p:UapAppxPackageBuildMode=StoreUpload'
3336

3437
- task: VSBuild@1
38+
displayName: Build Xamarin.Forms solution
3539
inputs:
3640
platform: 'Any CPU'
3741
solution: '$(solutionXf)'

0 commit comments

Comments
 (0)