From b734d000626b05bdc861f294fc8f96160080f997 Mon Sep 17 00:00:00 2001 From: Adam Hathcock Date: Sun, 24 May 2020 10:35:39 +0100 Subject: [PATCH] Remove README for appveyor and fix artifacts again --- README.md | 3 --- src/build/Program.cs | 4 ++-- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 07c8b248b..437b894eb 100644 --- a/README.md +++ b/README.md @@ -4,9 +4,6 @@ SharpCompress is a compression library in pure C# for .NET Standard 1.3 and 2.0 The major feature is support for non-seekable streams so large files can be processed on the fly (i.e. download stream). -AppVeyor Build - -[![Build status](https://ci.appveyor.com/api/projects/status/voxg971oemmvxh1e/branch/master?svg=true)](https://ci.appveyor.com/project/adamhathcock/sharpcompress/branch/master) - GitHub Actions Build - [![GitHubActions](https://github.com/adamhathcock/sharpcompress/workflows/SharpCompress/badge.svg)](https://circleci.com/gh/adamhathcock/sharpcompress) diff --git a/src/build/Program.cs b/src/build/Program.cs index cab080447..4ff50041e 100644 --- a/src/build/Program.cs +++ b/src/build/Program.cs @@ -59,14 +59,14 @@ IEnumerable GetFiles(string d) foreach (var file in GetFiles("*.Tests/**/*.csproj")) { - Run("dotnet", $"test {file} -c Release -f {framework} --no-restore --no-build -o artifacts/"); + Run("dotnet", $"test {file} -c Release -f {framework} --no-restore --no-build"); } }); Target(Publish, DependsOn(Test), () => { - Run("dotnet", "pack src/SharpCompress/SharpCompress.csproj -c Release"); + Run("dotnet", "pack src/SharpCompress/SharpCompress.csproj -c Release -o artifacts/"); }); Target("default", DependsOn(Publish), () => Console.WriteLine("Done!"));