6 Commits
1.0.0 ... 1.0.1

Author SHA1 Message Date
Tommy Parnell
9b5bd3769f add author 2016-11-08 22:36:11 -05:00
Tommy Parnell
0b1b20f5df add author 2016-11-08 22:33:31 -05:00
Tommy Parnell
a15ad38a86 im dumb 2016-11-08 22:31:11 -05:00
Tommy Parnell
0a14c742e1 appveyor tag things 2016-11-08 22:29:21 -05:00
Tommy Parnell
103bab1eb7 readme 2016-11-08 22:26:52 -05:00
Tommy Parnell
e1817ab447 dont try to publish other packages 2016-11-08 22:26:03 -05:00
4 changed files with 13 additions and 5 deletions

View File

@@ -1,3 +1,8 @@
if($env:APPVEYOR_REPO_TAG -eq "true")
{
"do not publish coverall data on tag builds"
return
}
nuget install OpenCover -Version 4.6.519 -OutputDirectory tools
nuget install coveralls.net -Version 0.7.0 -OutputDirectory tools

View File

@@ -1,4 +1,5 @@
## UriBuilder.Fluent
[![Coverage Status](https://coveralls.io/repos/github/TerribleDev/UriBuilder.Fluent/badge.svg)](https://coveralls.io/github/TerribleDev/UriBuilder.Fluent) [![Build status](https://ci.appveyor.com/api/projects/status/cp704w3bgaerufxm/branch/master?svg=true)](https://ci.appveyor.com/project/tparnell8/uribuilder-fluent/branch/master)
This places extension methods over System.UriBuilder to help deal with query string parameters, and create more of a fluent interface. Unlike other projects this builds ontop of trusty UriBuilder, and does not use custom Uri generators, or have outside dependencies.

View File

@@ -4,7 +4,7 @@ nuget:
account_feed: true
project_feed: true
artifacts:
- path: '**\*.nupkg'
- path: 'src\**\*.nupkg'
init:
- git config --global core.autocrlf true
@@ -17,14 +17,14 @@ build_script:
- ps: dotnet restore
- ps: dotnet build -c Release .\src\UriBuilder.Fluent
- ps: dotnet build -c Release .\src\UriBuilder.Fluent.UnitTests
- ps: .\update-projectjson.ps1
- ps: dotnet restore
- ps: dotnet pack -c Release .\src\UriBuilder.Fluent
test_script:
- ps: dotnet test -c Release .\src\UriBuilder.Fluent.UnitTests
- ps: .\Coverage.ps1
- ps: .\update-projectjson.ps1
- ps: dotnet restore
- ps: dotnet pack -c Release .\src\UriBuilder.Fluent
deploy:
- provider: NuGet

View File

@@ -19,7 +19,9 @@
"dependencies": {
"NETStandard.Library": "1.6.0"
},
"authors": [
"Tommy Parnell"
],
"frameworks": {
"netstandard1.3": {
"imports": "dnxcore50"