mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Merge branch 'master' into update_readme_badges
This commit is contained in:
commit
4f8fa9f9eb
2 changed files with 35 additions and 1 deletions
|
|
@ -5,7 +5,7 @@ WoX
|
|||
[](https://github.com/jjw24/Wox/releases/latest)
|
||||

|
||||

|
||||
[](https://ci.appveyor.com/project/happlebao/wox/branch/master)
|
||||
[](https://dev.azure.com/Wox-Launcher/Wox/_build/latest?definitionId=1&branchName=master)
|
||||
[](https://github.com/Wox-launcher/Wox/releases)
|
||||
[](https://github.com/LunaGao/BlessYourCodeTag)
|
||||
|
||||
|
|
|
|||
34
azure-pipelines.yml
Normal file
34
azure-pipelines.yml
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
# .NET Desktop
|
||||
# Build and run tests for .NET Desktop or Windows classic desktop solutions.
|
||||
# Add steps that publish symbols, save build artifacts, and more:
|
||||
# https://docs.microsoft.com/azure/devops/pipelines/apps/windows/dot-net
|
||||
|
||||
trigger:
|
||||
- master
|
||||
- dev
|
||||
|
||||
pool:
|
||||
vmImage: 'vs2017-win2016' #'windows-latest'
|
||||
|
||||
variables:
|
||||
solution: '**/*.sln'
|
||||
buildPlatform: 'Any CPU'
|
||||
buildConfiguration: 'Release'
|
||||
|
||||
steps:
|
||||
- task: NuGetToolInstaller@1
|
||||
|
||||
- task: NuGetCommand@2
|
||||
inputs:
|
||||
restoreSolution: '$(solution)'
|
||||
|
||||
- task: VSBuild@1
|
||||
inputs:
|
||||
solution: '$(solution)'
|
||||
platform: '$(buildPlatform)'
|
||||
configuration: '$(buildConfiguration)'
|
||||
|
||||
- task: VSTest@2
|
||||
inputs:
|
||||
platform: '$(buildPlatform)'
|
||||
configuration: '$(buildConfiguration)'
|
||||
Loading…
Reference in a new issue