File tree Expand file tree Collapse file tree 2 files changed +37
-3
lines changed Expand file tree Collapse file tree 2 files changed +37
-3
lines changed Original file line number Diff line number Diff line change 1
1
WoX
2
2
===
3
3
4
- ![ Maintenance] ( https://img.shields.io/maintenance/yes/2019 )
4
+ ![ Maintenance] ( https://img.shields.io/maintenance/yes/2020 )
5
5
[ ![ GitHub release (latest by date)] ( https://img.shields.io/github/v/release/jjw24/wox )] ( https://github.com/jjw24/Wox/releases/latest )
6
6
![ GitHub Release Date] ( https://img.shields.io/github/release-date/jjw24/wox )
7
7
![ 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 )
10
10
[ ![ RamenBless] ( https://cdn.rawgit.com/LunaGao/BlessYourCodeTag/master/tags/ramen.svg )] ( https://github.com/LunaGao/BlessYourCodeTag )
11
11
12
12
** 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.
Original file line number Diff line number Diff line change
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)'
You can’t perform that action at this time.
0 commit comments