Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,5 @@ jobs:
- visualstudio
steps:
- template: build/template-install-dependencies.yaml
- template: build/template-build.yaml
- template: build/template-run-unit-tests.yaml
19 changes: 19 additions & 0 deletions build/template-build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# template-build.yaml
# Restore and build the solution so that the test assemblies exist before
# the VSTest steps run. This is required on Microsoft-hosted (ephemeral)
# agents, which start from a clean workspace with no pre-built output.

steps:
- task: DotNetCoreCLI@2
displayName: 'Install wasm-tools workload'
inputs:
command: 'custom'
custom: 'workload'
arguments: 'install wasm-tools'

- task: DotNetCoreCLI@2
displayName: 'Build solution (Release)'
inputs:
command: 'custom'
custom: 'msbuild'
arguments: 'Microsoft.Identity.Web.sln -r -t:build -verbosity:m -property:Configuration=Release'
Loading