Skip to content

Commit

Permalink
Remove README for appveyor and fix artifacts again
Browse files Browse the repository at this point in the history
  • Loading branch information
adamhathcock committed May 24, 2020
1 parent 02a17d2 commit b734d00
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
4 changes: 2 additions & 2 deletions src/build/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,14 @@ IEnumerable<string> 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!"));
Expand Down

0 comments on commit b734d00

Please sign in to comment.