Skip to content
This repository has been archived by the owner on Jul 11, 2019. It is now read-only.

Commit

Permalink
Set up CI with Azure Pipelines
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
0xF6 committed Jul 1, 2019
1 parent 1237410 commit 6ed589b
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
trigger:
- master
pr:
- master
jobs:
- job: Windows
pool:
vmImage: 'windows-latest'

variables:
solution: '**/*.sln'
buildPlatform: 'Any CPU'
buildConfiguration: 'Release'
steps:
- checkout: self
submodules: "true"

- task: UseDotNet@2
displayName: "Install Preview .NET Core SDK"
inputs:
packageType: 'sdk'
version: '3.0.100-preview6-012264'
includePreviewVersions: true

- task: NuGetToolInstaller@0
displayName: "Install NuGet"

- task: NuGetCommand@2
displayName: "NuGet Restore"
inputs:
restoreSolution: '$(solution)'

- task: DotNetCoreCLI@2
displayName: "Build"
name: "Build"
inputs:
command: 'build'
feedsToUse: 'select'
versioningScheme: 'off'

0 comments on commit 6ed589b

Please sign in to comment.