File tree Expand file tree Collapse file tree 4 files changed +17
-10
lines changed
Expand file tree Collapse file tree 4 files changed +17
-10
lines changed Original file line number Diff line number Diff line change @@ -3,15 +3,8 @@ solution: CSharpHTTPClient/CSharpHTTPClient.sln
33env :
44 matrix :
55 secure : KJrQ+NfmzlgCSXRyqeAMDGZUG6GO4/+xk1T0wGy1BgVz8seo/fDWL8osWEljB4Sj05sfFj7CM+rociwL6sdVyqCiHbCAM7XuHs58D+4Tlh5pGHL+G1qOl65/pDl0ulq+M7PwDxHPZ60/oyH2a16t5jtD9e4W31y2fXzEbHGLHXg=
6- install :
7- - nuget restore CSharpHTTPClient/CSharpHTTPClient.sln
8- - nuget install NUnit.Runners -Version 2.6.4 -OutputDirectory testrunner
96script :
10- - xbuild /p:Configuration=Release CSharpHTTPClient/CSharpHTTPClient.sln
11- - mono ./testrunner/NUnit.Runners.2.6.4/tools/nunit-console.exe UnitTest/bin/Release/UnitTest.dll -domain:None
12- - curl -s https://codecov.io/bash > .codecov
13- - chmod +x .codecov
14- - ./.codecov
7+ - make test
158deploy :
169 skip_cleanup : true
1710 provider : script
Original file line number Diff line number Diff line change @@ -3,7 +3,8 @@ All notable changes to this project will be documented in this file.
33
44This project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
55
6- ## [ 3.4.1] - 2019-08-14
6+ [ 2019-08-14] Version 3.4.1
7+ --------------------------
78### Added
89- [ PR #90 ] ( https://github.com/sendgrid/csharp-http-client/pull/90 ) : Twilio branding updates.
910
Original file line number Diff line number Diff line change 11The MIT License (MIT)
22
3- Copyright (c) 2012-2019 Twilio SendGrid, Inc.
3+ Copyright (c) 2012-2020 Twilio SendGrid, Inc.
44
55Permission is hereby granted, free of charge, to any person obtaining a copy
66of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change 1+ .PHONY : test install
2+
3+ install :
4+ nuget restore CSharpHTTPClient/CSharpHTTPClient.sln
5+ nuget install NUnit.Runners -Version 2.6.4 -OutputDirectory testrunner
6+
7+ test : install
8+ xbuild /p:Configuration=Release CSharpHTTPClient/CSharpHTTPClient.sln
9+ mono ./testrunner/NUnit.Runners.2.6.4/tools/nunit-console.exe UnitTest/bin/Release/UnitTest.dll -domain:None
10+ curl -s https://codecov.io/bash > .codecov
11+ chmod +x .codecov
12+ ./.codecov
13+
You can’t perform that action at this time.
0 commit comments