From b025a5708c0a1db70f9c957bf75284ba8c64dd3b Mon Sep 17 00:00:00 2001 From: Michael Ganss Date: Mon, 2 Jul 2018 12:04:23 +0200 Subject: [PATCH] Package binaries during AppVeyor build --- appveyor.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/appveyor.yml b/appveyor.yml index da7228f4..9b376a15 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -12,6 +12,7 @@ build_script: - dotnet pack --include-symbols --include-source -c Release XmlSchemaClassGenerator - dotnet pack --include-symbols --include-source -c Release XmlSchemaClassGenerator.Console - dotnet pack --include-symbols --include-source -c Release xscgen + - 7z a -mx=9 Binaries.zip ".\XmlSchemaClassGenerator.Console\bin\Debug\net45\publish\*" test_script: - dotnet test XmlSchemaClassGenerator.Tests\XmlSchemaClassGenerator.Tests.csproj - nuget.exe install OpenCover -ExcludeVersion @@ -23,3 +24,4 @@ artifacts: - path: 'XmlSchemaClassGenerator\**\*.nupkg' - path: 'XmlSchemaClassGenerator.Console\**\*.nupkg' - path: 'xscgen\**\*.nupkg' + - path: 'Binaries.zip'