Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9b5bd3769f | ||
|
|
0b1b20f5df | ||
|
|
a15ad38a86 | ||
|
|
0a14c742e1 | ||
|
|
103bab1eb7 | ||
|
|
e1817ab447 |
@@ -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
|
||||
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
## UriBuilder.Fluent
|
||||
[](https://coveralls.io/github/TerribleDev/UriBuilder.Fluent) [](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.
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -19,7 +19,9 @@
|
||||
"dependencies": {
|
||||
"NETStandard.Library": "1.6.0"
|
||||
},
|
||||
|
||||
"authors": [
|
||||
"Tommy Parnell"
|
||||
],
|
||||
"frameworks": {
|
||||
"netstandard1.3": {
|
||||
"imports": "dnxcore50"
|
||||
|
||||
Reference in New Issue
Block a user