Octokit 0.7.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Octokit --version 0.7.0
NuGet\Install-Package Octokit -Version 0.7.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Octokit" Version="0.7.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Octokit --version 0.7.0
#r "nuget: Octokit, 0.7.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Octokit as a Cake Addin
#addin nuget:?package=Octokit&version=0.7.0

// Install Octokit as a Cake Tool
#tool nuget:?package=Octokit&version=0.7.0

An async-based GitHub API client library for .NET

Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Universal Windows Platform uap was computed.  uap10.0 was computed. 
Windows Store netcore was computed.  netcore45 is compatible.  netcore451 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 4.5

    • No dependencies.
  • All Frameworks

  • Portable Class Library (Windows 8.1, WindowsPhoneApp 8.1)

    • No dependencies.
  • Windows 0.0

    • No dependencies.

GitHub repositories (170)

Showing the top 5 popular GitHub repositories that depend on Octokit:

Repository Stars
CodeHubApp/CodeHub
CodeHub is an iOS application written using Xamarin
rocksdanister/lively
Free and open-source software that allows users to set animated desktop wallpapers and screensavers powered by WinUI 3.
abpframework/abp
Open Source Web Application Framework for ASP.NET Core. Offers an opinionated architecture to build enterprise software solutions with best practices on top of the .NET and the ASP.NET Core platforms. Provides the fundamental infrastructure, production-ready startup templates, application modules, UI themes, tooling, guides and documentation.
dotnet/BenchmarkDotNet
Powerful .NET library for benchmarking
AngleSharp/AngleSharp
:angel: The ultimate angle brackets parser library parsing HTML5, MathML, SVG and CSS to construct a DOM based on the official W3C specifications.
Version Downloads Last updated
0.10.0 1,630 4/22/2015
0.9.0 1,709 4/6/2015
0.8.0 1,883 3/19/2015
0.7.3 698 3/9/2015
0.7.2 1,262 3/1/2015
0.7.1 1,097 2/24/2015
0.7.0 180 2/23/2015
0.7.0-alpha2 40 2/19/2015
0.7.0-alpha 34 2/19/2015
0.6.2 4,776 1/5/2015
0.6.1 745 12/23/2014
0.6.0 373 12/11/2014
0.5.3 317 12/10/2014
0.5.2 4,775 10/14/2014
0.5.1 750 10/7/2014
0.5.0 131 10/7/2014
0.4.1 2,843 7/22/2014
0.4.0 177 7/11/2014
0.3.5 220 6/30/2014
0.3.4 723 4/30/2014
0.3.3 971 4/24/2014
0.3.2 55 4/17/2014
0.3.1 130 3/31/2014
0.3.0 84 3/19/2014
0.2.2 64 3/6/2014
0.2.1 61 2/20/2014
0.2.0 55 2/20/2014
0.1.9 53 2/20/2014
0.1.8 174 1/22/2014
0.1.7 60 12/27/2013
0.1.6 52 12/26/2013
0.1.5 66 11/19/2013
0.1.4 77 11/7/2013
0.1.3 76 11/6/2013
0.1.1 53 10/30/2013
0.1.0 55 10/30/2013

New: Response models now use read-only properties - #658, #662 via @haacked, #663 via @khellang, #679 via @Zoltu
New: Added `Truncated` property to `TreeResponse` - #674 via @Zoltu
New: Added `GetRecursive` method to `ITreesClient` - #673 via @Zoltu
New: Added `Merging` client to `Repository` API: - #603 via @tabro
New: API internals are now read-only - #662 via @haacked
Fixed: Commit Status API now supports combined status- #618 via @khellang
Fixed: Changed `IGistCommentsClient` identifiers to `string` instead of `int` - #681 via @thedillonb
Fixed: Improved error message when repository creation fails - #667 via @gabrielweyer
Fixed: Team membership API was incorrect - #695 via @aneville
Breaking Changes**
- Response models are all read only. It is recommended that you subclass the
model class if you need to contructor responses (e.g. for testing)
- `IResponse` is now a `readonly` interface.
- `ApiResponse<T>` accepts the strongly typed body as an argument.
- `IResponse<T> changed to `IApiResponse<T>`.