Skip to content

Commit 5c1092f

Browse files
committed
Merge branch 'development-branch' of https://github.com/saucepleez/taskt into development-branch
2 parents b3d141d + 534f3e6 commit 5c1092f

File tree

2 files changed

+73
-3
lines changed

2 files changed

+73
-3
lines changed

README.md

+15-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,18 @@
11
![taskt](https://i.imgur.com/gBpKDg0.png)
22

3-
43
taskt (formerly sharpRPA) is the first truly free, easy to use, and open-source process automation client built on the .NET Framework in C#. taskt allows you to build and design process automation without needing to write application code.
54

5+
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
6+
[![Open Source Love svg1](https://badges.frapsoft.com/os/v1/open-source.svg?v=103)](https://github.com/saucepleez/taskt)
7+
8+
9+
branch | build status
10+
------------ | -------------
11+
master | [![Build Status](https://dev.azure.com/taskt/taskt/_apis/build/status/saucepleez.taskt?branchName=master)](https://dev.azure.com/taskt/taskt/_build/latest?definitionId=1&branchName=master)
12+
development-branch | [![Build Status](https://dev.azure.com/taskt/taskt/_apis/build/status/saucepleez.taskt?branchName=development-branch)](https://dev.azure.com/taskt/taskt/_build/latest?definitionId=1&branchName=development-branch)
13+
14+
15+
616
![taskt-main-screen](https://i.imgur.com/tHTy6eh.gif)
717

818
![Click. Configure. Done.](https://i.imgur.com/gzYEdRG.png)
@@ -35,5 +45,7 @@ taskt is free for both personal and commercial use. taskt is licensed under the
3545

3646
![Let us know what you think!](https://i.imgur.com/wKExziN.png)
3747
Feel free to open up a feature request or report a bug/issue.
38-
[Click here to open a new issue!](https://github.com/saucepleez/taskt/issues/new)
39-
[Need support? Want to say Hi? Come chat with us on Gitter!](https://gitter.im/taskt-rpa/Lobby)
48+
49+
[![Open New Issue](https://img.shields.io/badge/Open-New Issue-blue.svg)](https://github.com/saucepleez/taskt/issues/new)
50+
[![Chat on Gitter](https://img.shields.io/badge/Chat-On Gitter-green.svg)](https://gitter.im/taskt-rpa/Lobby)
51+

azure-pipelines.yml

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
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+
- development-branch
9+
10+
pool:
11+
vmImage: 'windows-latest'
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)'
35+
36+
- task: DownloadSecureFile@1
37+
inputs:
38+
secureFile: 'app_cert'
39+
40+
- task: codesigning@2
41+
inputs:
42+
secureFileId: 'app_cert'
43+
signCertPassword: '$(certPass)'
44+
files: '**/taskt.exe'
45+
timeServer: 'http://timestamp.digicert.com'
46+
hashingAlgorithm: 'SHA256'
47+
48+
- task: CopyFiles@2
49+
inputs:
50+
SourceFolder: '$(Build.SourcesDirectory)'
51+
Contents: '**'
52+
TargetFolder: '$(Build.ArtifactStagingDirectory)'
53+
54+
- task: PublishBuildArtifacts@1
55+
inputs:
56+
PathtoPublish: '$(Build.ArtifactStagingDirectory)'
57+
ArtifactName: 'taskt'
58+
publishLocation: 'Container'

0 commit comments

Comments
 (0)