This repository was archived by the owner on Jul 6, 2022. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ language : csharp
2+ solution : CreateKnxProd.sln
Original file line number Diff line number Diff line change 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+
23Simple Gui to create simple knxprod file for ETS.
34
45Configuration:
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+
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'
You can’t perform that action at this time.
0 commit comments