Skip to content

Commit

Permalink
Sets up Appveyor (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
jreina committed Dec 1, 2017
1 parent ec1579a commit 333d1af
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -2,6 +2,7 @@
The shitty version of the LINQ-to-objects Enumerable extension methods for .NET Core.

[![Bless](https://cdn.rawgit.com/LunaGao/BlessYourCodeTag/master/tags/alpaca.svg)](http://lunagao.github.io/BlessYourCodeTag/)
[![Build status](https://ci.appveyor.com/api/projects/status/vhjo0ouavf0ccdjb?svg=true)](https://ci.appveyor.com/project/jreina/shittylinq)

## What this is
A collection of extension methods for `IEnumerable<T>`
Expand Down
1 change: 1 addition & 0 deletions ShittyLINQ.sln
Expand Up @@ -7,6 +7,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ShittyLINQ", "ShittyLINQ\Sh
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{311D2853-E5AA-4971-9301-77AAD5EDF147}"
ProjectSection(SolutionItems) = preProject
appveyor.yml = appveyor.yml
LICENSE.md = LICENSE.md
README.md = README.md
EndProjectSection
Expand Down
14 changes: 13 additions & 1 deletion ShittyLINQ/ShittyLINQ.csproj
@@ -1,7 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp2.0</TargetFramework>
<Version>0.1.3</Version>
<Description>The shitty version of LINQ.</Description>
<PackageLicenseUrl>https://github.com/jreina/ShittyLINQ/blob/master/LICENSE.md</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/jreina/ShittyLINQ</PackageProjectUrl>
<Copyright>Copyright 2017 Johnny Reina</Copyright>
<RepositoryUrl>https://github.com/jreina/ShittyLINQ</RepositoryUrl>
<PackageTags>fp utilities</PackageTags>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>bin\Release\</OutputPath>
<DocumentationFile>bin\Release\ShittyLINQ.xml</DocumentationFile>
</PropertyGroup>

</Project>
16 changes: 16 additions & 0 deletions appveyor.yml
@@ -0,0 +1,16 @@
version: 0.1.{build}
image: Visual Studio 2017
build_script:
- ps: dotnet pack -c Release /p:PackageVersion=0.1.$env:APPVEYOR_BUILD_NUMBER
test: off
artifacts:
- path: .\ShittyLINQ\bin\Release\netcoreapp2.0\ShittyLINQ.dll
- path: .\ShittyLINQ\bin\Release\ShittyLINQ.*.nupkg
deploy:
provider: NuGet
api_key:
secure: Vrrtx5P/dF4zXnDo3tPhO/2E40A23iRqFQDJGD9DUH0GXQRWxMZOpk82bfeqJk7k
skip_symbols: false
artifact: /.*\.nupkg/
on:
branch: master

0 comments on commit 333d1af

Please sign in to comment.