Skip to content

Commit 481e580

Browse files
committed
Remove creating a zip file when publishing
1 parent 567d245 commit 481e580

File tree

2 files changed

+6
-14
lines changed

2 files changed

+6
-14
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Further information can be found at [SIA OSDP Homepage](https://www.securityindu
1111

1212
OSDP.Net supports the following .NET implementations:
1313
- .NET Framework 4.6.2 and later
14-
- NET 5.0 and later
14+
- NET 6.0 and later
1515

1616
## Getting Started
1717

@@ -175,7 +175,7 @@ It has all the required assemblies included to run as a self-contained executabl
175175
- [ARM64 macOS](https://www.dropbox.com/scl/fi/adks520hl6urybfr1ev85/ACUConsole?rlkey=ph2fiaq0352rdl1yhynqvbgq2&st=5zmrjd5t&dl=1)
176176
- [x64 Windows](https://www.dropbox.com/scl/fi/uraj72ufisky91k1xdvtz/ACUConsole.exe?rlkey=f7xvnd34mx79xfthxgnpdzd4j&st=zvqh9p1o&dl=1)
177177
178-
NOTE: First determine the COM port identifier of the 485 bus connected to the computer.
178+
NOTE: First, determine the COM port identifier of the 485 bus connected to the computer.
179179
This will need to be entered when starting the connection.
180180
Be sure to save configuration before exiting.
181181

ci/package.yml

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ steps:
3636
packagesToPack: 'src/OSDP.Net/OSDP.Net.csproj'
3737

3838
- task: DotNetCoreCLI@2
39-
displayName: 'dotnet publish for osx-arm64'
39+
displayName: 'ACUConsole dotnet publish for osx-arm64'
4040
inputs:
4141
command: 'publish'
4242
publishWebProjects: false
@@ -46,7 +46,7 @@ steps:
4646
modifyOutputPath: false
4747

4848
- task: DotNetCoreCLI@2
49-
displayName: 'dotnet publish for win-x64'
49+
displayName: 'ACUConsole dotnet publish for win-x64'
5050
inputs:
5151
command: 'publish'
5252
publishWebProjects: false
@@ -56,7 +56,7 @@ steps:
5656
arguments: '-r win-x64 --configuration $(BuildConfiguration) --self-contained true -p:PublishSingleFile=true -p:IncludeNativeLibrariesForSelfExtract=true -p:EnableCompressionInSingleFile=true --output $(Build.ArtifactStagingDirectory)/TestConsole/win-x64'
5757

5858
- task: DotNetCoreCLI@2
59-
displayName: 'dotnet publish for linux-x64'
59+
displayName: 'ACUConsole dotnet publish for linux-x64'
6060
inputs:
6161
command: 'publish'
6262
publishWebProjects: false
@@ -66,7 +66,7 @@ steps:
6666
arguments: '-r linux-x64 --configuration $(BuildConfiguration) --self-contained true -p:PublishSingleFile=true -p:IncludeNativeLibrariesForSelfExtract=true -p:EnableCompressionInSingleFile=true --output $(Build.ArtifactStagingDirectory)/TestConsole/linux-x64'
6767

6868
- task: DotNetCoreCLI@2
69-
displayName: 'dotnet publish for linux-arm64'
69+
displayName: 'ACUConsole dotnet publish for linux-arm64'
7070
inputs:
7171
command: 'publish'
7272
publishWebProjects: false
@@ -75,14 +75,6 @@ steps:
7575
projects: 'src/ACUConsole/ACUConsole.csproj'
7676
arguments: '-r linux-arm64 --configuration $(BuildConfiguration) --self-contained true -p:PublishSingleFile=true -p:IncludeNativeLibrariesForSelfExtract=true -p:EnableCompressionInSingleFile=true --output $(Build.ArtifactStagingDirectory)/TestConsole/linux-arm64'
7777

78-
- task: ArchiveFiles@2
79-
inputs:
80-
rootFolderOrFile: '$(Build.ArtifactStagingDirectory)/TestConsole'
81-
includeRootFolder: false
82-
archiveType: 'zip'
83-
archiveFile: '$(Build.ArtifactStagingDirectory)/OSDPTestConsole.zip'
84-
replaceExistingArchive: true
85-
8678
- task: PublishPipelineArtifact@1
8779
inputs:
8880
targetPath: '$(Build.ArtifactStagingDirectory)'

0 commit comments

Comments
 (0)