Guest User

Untitled

a guest
Feb 7th, 2018
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. queue:
  2. name: Hosted VS2017
  3. demands: msbuild
  4.  
  5.  
  6. steps:
  7. - task: DotNetCoreCLI@1
  8. inputs:
  9. command: "restore"
  10. projects: "v2/src/AzureFunctionsIntroduction.sln"
  11.  
  12. - task: MSBuild@1
  13. inputs:
  14. solution: "v2/src/AzureFunctionsIntroduction.sln"
  15. configuration: "Release"
  16. msbuildArguments: "/p:OutputPath=$(Build.SourcesDirectory)/Tmp"
  17. clean: "true"
  18.  
  19. - task: CmdLine@1
  20. inputs:
  21. filename: ""C:/Program Files/IIS/Microsoft Web Deploy V3/msdeploy.exe""
  22. arguments: "-verb:sync -source:contentPath=$(Build.SourcesDirectory)/Tmp -dest:contentPath='$(DeploySiteName)',ComputerName="$(DeployScmUrl)",UserName='$(DeployUserName)',Password='$(DeployPassword)',AuthType='Basic'"
Add Comment
Please, Sign In to add comment