7
.nuget/packages.config
Normal file
7
.nuget/packages.config
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="coveralls.io" version="1.3.4" />
|
||||
<package id="NUnit.Runners" version="2.6.4" />
|
||||
<package id="OpenCover" version="4.5.3723" />
|
||||
<package id="ReportGenerator" version="2.1.4.0" />
|
||||
</packages>
|
||||
@@ -1,14 +1,14 @@
|
||||
**Master:** [](https://ci.appveyor.com/project/tparnell8/untappd-net/branch/master)
|
||||
**Release:**[](https://ci.appveyor.com/project/tparnell8/untappd-net/branch/Release)
|
||||
**Code Coverage:** [](https://coveralls.io/r/tparnell8/Untappd.Net?branch=coveralls2)
|
||||
|
||||
**Tips:** [](https://gratipay.com/TommyParnell)
|
||||
**Chat:** [](https://gitter.im/tparnell8/Untappd.Net?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
||||
# Untappd.Net
|
||||
|
||||
[](https://gitter.im/tparnell8/Untappd.Net?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
||||
|
||||
This is a c# wrapper around the Untappd API. This can be downloaded via [Nuget](https://www.nuget.org/packages/Untappd.Net/), or the [backup feed](https://www.myget.org/F/untappd-net/api/v2).
|
||||
|
||||
## Coverage
|
||||
## API Coverage
|
||||
|
||||
So far only the Requests that do not require user tokens have been implemented
|
||||
|
||||
|
||||
@@ -1,12 +1,22 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 14
|
||||
VisualStudioVersion = 14.0.22609.0
|
||||
# Visual Studio 2013
|
||||
VisualStudioVersion = 12.0.31101.0
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Untappd.Net", "src\Untappd.Net\Untappd.Net.csproj", "{D8571A44-2E86-43A3-B64A-2364614C6934}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Untappd.Net.UnitTests", "src\Untappd.Net.UnitTests\Untappd.Net.UnitTests.csproj", "{513A3FB2-6664-40E7-A03E-591D852C42E4}"
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{7175F502-2C45-4728-8693-A6ACDC7D5892}"
|
||||
ProjectSection(SolutionItems) = preProject
|
||||
appveyor.yml = appveyor.yml
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{8013BAEB-9A81-4ED1-8471-343D16B06D98}"
|
||||
ProjectSection(SolutionItems) = preProject
|
||||
.nuget\packages.config = .nuget\packages.config
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
|
||||
@@ -11,10 +11,17 @@ nuget:
|
||||
before_build:
|
||||
- nuget restore
|
||||
build:
|
||||
project: Untappd.Net.sln
|
||||
publish_nuget: true
|
||||
publish_nuget_symbols: true
|
||||
include_nuget_references: true
|
||||
verbosity: normal
|
||||
after_test:
|
||||
- packages\OpenCover.4.5.3723\OpenCover.Console.exe -register:user -filter:"+[Untappd.Net*]* -[*Tests]*" -target:"packages\NUnit.Runners.2.6.4\tools\nunit-console.exe" -targetargs:"/noshadow /domain:single src\Untappd.Net.UnitTests\bin\Release\Untappd.Net.UnitTests.dll" -output:coverage.xml
|
||||
- packages\coveralls.io.1.3.4\tools\coveralls.net.exe --opencover coverage.xml
|
||||
environment:
|
||||
COVERALLS_REPO_TOKEN:
|
||||
secure: /h8yknR8j7rmq98PNUt4ecnbknx10OSu4abqFfL0FoA3a4Ram00hvbyvQeGesK3u
|
||||
deploy:
|
||||
- provider: NuGet
|
||||
server:
|
||||
|
||||
Reference in New Issue
Block a user