Skip to content

Commit

Permalink
Update azure-pipelines.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Yvand committed Feb 6, 2019
1 parent 405382f commit 50e7311
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions azure-pipelines.yml
Expand Up @@ -2,6 +2,8 @@ resources:
- repo: self
variables:
BuildPlatform: 'Any CPU'
SolutionFileName: 'LDAPCP.sln'
ProductDescription: 'This claims provider connects SharePoint with Active Directory and LDAP servers to provide a great search experience in the people picker with federated authentication'
jobs:
- job: Compile
displayName: Compile
Expand Down Expand Up @@ -57,7 +59,7 @@ jobs:
- task: NuGetCommand@2
displayName: 'NuGet restore'
inputs:
restoreSolution: '$(Parameters.solution)'
restoreSolution: '$(SolutionFileName)'

- task: bleddynrichards.Assembly-Info-Task.Assembly-Info-Task.Assembly-Info-Task@1
displayName: 'Set $(system.teamProject).dll version'
Expand All @@ -66,7 +68,7 @@ jobs:
AssemblyInfo.cs
Title: $(system.teamProject)
Product: $(system.teamProject)
Description: 'This claims provider connects SharePoint with Active Directory and LDAP servers to provide a great search experience in the people picker with federated authentication'
Description: '$(ProductDescription)'
Company: GitHub.com/Yvand
Copyright: 'Copyright © $(date:yyyy), Yvan Duhamel, All rights reserved'
Trademark: $(system.teamProject)
Expand All @@ -77,7 +79,7 @@ jobs:
- task: VSBuild@1
displayName: 'Build $(system.teamProject) solution'
inputs:
solution: '$(Parameters.solution)'
solution: '$(SolutionFileName)'
msbuildArgs: '/p:IsPackaging=true'
platform: '$(BuildPlatform)'
configuration: '$(BuildConfiguration)'
Expand All @@ -95,7 +97,7 @@ jobs:
inputs:
pathtoPublish: '$(Build.ArtifactStagingDirectory)'
artifactName: drop

- job: CreateTestEnvironment
displayName: Create test environment
timeoutInMinutes: 90
Expand Down

0 comments on commit 50e7311

Please sign in to comment.