Skip to content

Commit

Permalink
add appveyor build artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
b4tman committed Aug 25, 2021
1 parent 932d962 commit e94cbd2
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,15 @@ version: 1.0.{build}
before_build:
- ps: nuget restore PasswordChanger1C.sln
build:
verbosity: minimal
verbosity: minimal
after_build:
- ps: |
if (!$env:Configuration) {$env:Configuration="Debug"};
7z a PasswordChanger1C.zip `
$env:APPVEYOR_BUILD_FOLDER\PasswordChanger1C\bin\$env:Configuration\*.dll `
$env:APPVEYOR_BUILD_FOLDER\PasswordChanger1C\bin\$env:Configuration\*.exe `
$env:APPVEYOR_BUILD_FOLDER\PasswordChanger1C\bin\$env:Configuration\*.exe.config `
$env:APPVEYOR_BUILD_FOLDER\PasswordChanger1C\bin\$env:Configuration\*.pdb
artifacts:
- path: PasswordChanger1C.zip
name: PasswordChanger1C

0 comments on commit e94cbd2

Please sign in to comment.