Skip to content

Commit 1c711ae

Browse files
authored
Merge pull request #124 from jjw24/update_readme_badges
Update readme badges
2 parents 1258c44 + 0bec780 commit 1c711ae

File tree

2 files changed

+37
-3
lines changed

2 files changed

+37
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
WoX
22
===
33

4-
![Maintenance](https://img.shields.io/maintenance/yes/2019)
4+
![Maintenance](https://img.shields.io/maintenance/yes/2020)
55
[![GitHub release (latest by date)](https://img.shields.io/github/v/release/jjw24/wox)](https://github.com/jjw24/Wox/releases/latest)
66
![GitHub Release Date](https://img.shields.io/github/release-date/jjw24/wox)
77
![GitHub commits since latest release](https://img.shields.io/github/commits-since/jjw24/wox/v1.3.524)
8-
[![Build status](https://ci.appveyor.com/api/projects/status/bfktntbivg32e103/branch/master?svg=true)](https://ci.appveyor.com/project/happlebao/wox/branch/master)
9-
[![Github All Releases](https://img.shields.io/github/downloads/Wox-launcher/Wox/total.svg)](https://github.com/Wox-launcher/Wox/releases)
8+
[![Build Status](https://dev.azure.com/Wox-Launcher/Wox/_apis/build/status/jjw24.Wox?branchName=master)](https://dev.azure.com/Wox-Launcher/Wox/_build/latest?definitionId=1&branchName=master)
9+
[![Github All Releases](https://img.shields.io/github/downloads/jjw24/Wox/total.svg)](https://github.com/jjw24/Wox/releases)
1010
[![RamenBless](https://cdn.rawgit.com/LunaGao/BlessYourCodeTag/master/tags/ramen.svg)](https://github.com/LunaGao/BlessYourCodeTag)
1111

1212
**WoX** is a launcher for Windows that simply works. It's an alternative to [Alfred](https://www.alfredapp.com/) and [Launchy](http://www.launchy.net/). You can call it Windows omni-eXecutor if you want a long name.

azure-pipelines.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# .NET Desktop
2+
# Build and run tests for .NET Desktop or Windows classic desktop solutions.
3+
# Add steps that publish symbols, save build artifacts, and more:
4+
# https://docs.microsoft.com/azure/devops/pipelines/apps/windows/dot-net
5+
6+
trigger:
7+
- master
8+
- dev
9+
10+
pool:
11+
vmImage: 'vs2017-win2016' #'due to windows SDK dependency for building UWP project'
12+
13+
variables:
14+
solution: '**/*.sln'
15+
buildPlatform: 'Any CPU'
16+
buildConfiguration: 'Release'
17+
18+
steps:
19+
- task: NuGetToolInstaller@1
20+
21+
- task: NuGetCommand@2
22+
inputs:
23+
restoreSolution: '$(solution)'
24+
25+
- task: VSBuild@1
26+
inputs:
27+
solution: '$(solution)'
28+
platform: '$(buildPlatform)'
29+
configuration: '$(buildConfiguration)'
30+
31+
- task: VSTest@2
32+
inputs:
33+
platform: '$(buildPlatform)'
34+
configuration: '$(buildConfiguration)'

0 commit comments

Comments
 (0)