Remove README for appveyor and fix artifacts again

This commit is contained in:
Adam Hathcock
2020-05-24 10:35:39 +01:00
parent 02a17d22f6
commit b734d00062
2 changed files with 2 additions and 5 deletions

View File

@@ -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)

View File

@@ -59,14 +59,14 @@ class Program
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!"));