Skip to content
This repository was archived by the owner on Jul 6, 2022. It is now read-only.

Commit d01f4eb

Browse files
committed
2 parents 647c56f + f709ff0 commit d01f4eb

3 files changed

Lines changed: 46 additions & 1 deletion

File tree

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
language: csharp
2+
solution: CreateKnxProd.sln

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# CreateKnxProd
1+
# CreateKnxProd [![Build Status](https://dev.azure.com/thesing/CreateKnxProd/_apis/build/status/thelsing.CreateKnxProd?branchName=master)](https://dev.azure.com/thesing/CreateKnxProd/_build/latest?definitionId=1&branchName=master)
2+
23
Simple Gui to create simple knxprod file for ETS.
34

45
Configuration:

azure-pipelines.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
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+
9+
pool:
10+
vmImage: 'windows-latest'
11+
12+
variables:
13+
solution: '**/*.sln'
14+
buildPlatform: 'Any CPU'
15+
buildConfiguration: 'Release'
16+
17+
steps:
18+
- task: NuGetToolInstaller@0
19+
20+
- task: NuGetCommand@2
21+
inputs:
22+
restoreSolution: '$(solution)'
23+
24+
- task: VSBuild@1
25+
inputs:
26+
solution: '$(solution)'
27+
platform: '$(buildPlatform)'
28+
configuration: '$(buildConfiguration)'
29+
30+
- task: ArchiveFiles@2
31+
inputs:
32+
rootFolderOrFile: '$(Build.BinariesDirectory)'
33+
includeRootFolder: true
34+
archiveType: 'zip'
35+
archiveFile: '$(Build.ArtifactStagingDirectory)/CreateKnxProd.zip'
36+
replaceExistingArchive: true
37+
38+
- task: PublishBuildArtifacts@1
39+
inputs:
40+
PathtoPublish: '$(Build.ArtifactStagingDirectory)'
41+
ArtifactName: 'drop'
42+
publishLocation: 'Container'

0 commit comments

Comments
 (0)