├── runtests
├── runtests.bat
├── Libs
├── munq
│ ├── Munq.MVC2.dll
│ ├── Munq.MVC3.dll
│ ├── Munq.IocContainer.dll
│ └── Munq.CommonServiceLocator.dll
├── mvc
│ ├── System.Web.Mvc.dll
│ ├── System.Web.Razor.dll
│ ├── System.Web.Helpers.dll
│ ├── System.Web.Routing.dll
│ ├── System.Web.WebPages.dll
│ ├── System.Web.Abstractions.dll
│ ├── System.Web.WebPages.Razor.dll
│ └── System.Web.WebPages.Deployment.dll
├── nunit
│ ├── nunit.mocks.dll
│ └── nunit.framework.dll
└── servicestack
│ └── ServiceStack.Text.dll
├── Samples
├── MvcSample
│ ├── MvcUI
│ │ ├── Views
│ │ │ ├── Shared
│ │ │ │ ├── Footer.cshtml
│ │ │ │ ├── Error.cshtml
│ │ │ │ ├── Login.cshtml
│ │ │ │ ├── LoginDisplay.cshtml
│ │ │ │ ├── LoginControl.cshtml
│ │ │ │ ├── Menu.cshtml
│ │ │ │ └── _Layout.cshtml
│ │ │ ├── _ViewStart.cshtml
│ │ │ ├── Commit
│ │ │ │ ├── SingleFileCommitRenderer.ascx
│ │ │ │ ├── Index.aspx
│ │ │ │ ├── Commit.aspx
│ │ │ │ ├── Commits.aspx
│ │ │ │ └── CommitRenderer.ascx
│ │ │ ├── Gists
│ │ │ │ └── Index.aspx
│ │ │ ├── Issues
│ │ │ │ ├── Index.aspx
│ │ │ │ ├── Issue.ascx
│ │ │ │ ├── View.aspx
│ │ │ │ ├── Labels.aspx
│ │ │ │ ├── List.aspx
│ │ │ │ └── Comments.aspx
│ │ │ ├── Network
│ │ │ │ └── Index.aspx
│ │ │ ├── Object
│ │ │ │ └── Index.aspx
│ │ │ ├── User
│ │ │ │ └── Index.aspx
│ │ │ ├── Home
│ │ │ │ └── Index.aspx
│ │ │ ├── Repository
│ │ │ │ ├── Delete.aspx
│ │ │ │ ├── Branches.aspx
│ │ │ │ ├── Languages.aspx
│ │ │ │ ├── Tags.aspx
│ │ │ │ ├── Network.aspx
│ │ │ │ ├── Search.aspx
│ │ │ │ ├── Create.aspx
│ │ │ │ ├── PublicKeys.aspx
│ │ │ │ └── Get.aspx
│ │ │ └── Web.config
│ │ ├── Default.aspx
│ │ ├── Global.asax
│ │ ├── css
│ │ │ ├── grid.png
│ │ │ ├── main.min.css
│ │ │ ├── ie.min.css
│ │ │ └── main.css
│ │ ├── images
│ │ │ ├── favicon.ico
│ │ │ └── githubsharp.png
│ │ ├── js
│ │ │ ├── main.min.js
│ │ │ └── main.js
│ │ ├── Web.Debug.config
│ │ ├── Web.Release.config
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── Web.config
│ └── MvcApplication
│ │ ├── Models
│ │ ├── ViewModels
│ │ │ ├── LoginViewModel.cs
│ │ │ ├── BaseViewModel.cs
│ │ │ └── ErrorViewModel.cs
│ │ └── HtmlHelpers
│ │ │ └── AdditionalHtmlAndUrlHelpers.cs
│ │ ├── Controllers
│ │ ├── UserController.cs
│ │ ├── ObjectController.cs
│ │ ├── NetworkController.cs
│ │ ├── BaseAPIController.cs
│ │ ├── CommitController.cs
│ │ ├── IssuesController.cs
│ │ ├── HomeController.cs
│ │ └── BaseController.cs
│ │ ├── Default.cs
│ │ ├── Properties
│ │ └── AssemblyInfo.cs
│ │ └── ServerApp.cs
└── ConsoleSample
│ ├── app.config
│ ├── Properties
│ └── AssemblyInfo.cs
│ ├── Program.cs
│ └── ConsoleSample.csproj
├── Core
├── Models
│ ├── GithubUser.cs
│ ├── Fork.cs
│ ├── ChangeStatus.cs
│ ├── Internal
│ │ ├── Network.cs
│ │ ├── Commit.cs
│ │ ├── PullRequest.cs
│ │ ├── Object.cs
│ │ ├── JsonSimpleDictionary.cs
│ │ ├── User.cs
│ │ ├── Issues.cs
│ │ └── Repository.cs
│ ├── BasicUser.cs
│ ├── History.cs
│ ├── Comment.cs
│ ├── Object.cs
│ ├── Gist.cs
│ ├── Commit.cs
│ ├── Issue.cs
│ ├── Network.cs
│ ├── User.cs
│ └── Repository.cs
├── Base
│ ├── IBaseApi.cs
│ ├── JsonConverter.cs
│ ├── Enums.cs
│ └── GithubApiBase.cs
├── GithubAuthenticationException.cs
├── GithubFailedResponse.cs
├── Services
│ ├── ILogProvider.cs
│ ├── ICacheProvider.cs
│ └── IAuthProvider.cs
├── Helpers
│ └── URLUtils.cs
├── AssemblyInfo.cs
├── GithubResponse.cs
├── GithubException.cs
├── API
│ ├── Network.cs
│ ├── PullRequest.cs
│ ├── Commits.cs
│ └── Object.cs
├── GithubRequestWithInputAndReturnType.cs
├── GithubURLs.cs
└── GithubRequestWithReturnType.cs
├── README
├── NOTES
├── Tests
└── CoreTests
│ ├── TestSettings.cs
│ └── CoreTests.csproj
├── .gitignore
├── nuget
├── GithubSharp.Core.nuspec
├── GithubSharp.nuspec
└── GithubSharp.Plugins.All.nuspec
└── Plugins
├── LogProviders
├── NullLogger
│ ├── NullLogger.cs
│ ├── AssemblyInfo.cs
│ └── NullLogger.csproj
└── SimpleLogProvider
│ ├── Properties
│ └── AssemblyInfo.cs
│ ├── SimpleLogProvider.cs
│ └── SimpleLogProvider.csproj
├── CacheProviders
├── NullCacher
│ ├── NullCacher.cs
│ ├── AssemblyInfo.cs
│ └── NullCacher.csproj
├── WebCache
│ ├── AssemblyInfo.cs
│ ├── WebCacher.cs
│ └── WebCache.csproj
├── ApplicationCacher
│ ├── AssemblyInfo.cs
│ ├── ApplicationCacher.cs
│ └── ApplicationCacher.csproj
└── BasicCacher
│ ├── Properties
│ └── AssemblyInfo.cs
│ ├── BasicCacher.cs
│ └── BasicCacher.csproj
└── AuthProviders
├── NullAuthProvider
├── AssemblyInfo.cs
├── NullAuthProvider.cs
└── NullAuthProvider.csproj
└── UserPasswordAuthProvider
├── AssemblyInfo.cs
├── UserPasswordAuthProvider.cs
└── UserPasswordAuthProvider.csproj
/runtests:
--------------------------------------------------------------------------------
1 | nunit-console Tests/CoreTests/bin/Debug/GithubSharp.Tests.CoreTests.dll
2 |
--------------------------------------------------------------------------------
/runtests.bat:
--------------------------------------------------------------------------------
1 | call nunit-console Tests/CoreTests/bin/Debug/GithubSharp.Tests.CoreTests.dll
2 |
--------------------------------------------------------------------------------
/Libs/munq/Munq.MVC2.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/erikzaadi/GithubSharp/HEAD/Libs/munq/Munq.MVC2.dll
--------------------------------------------------------------------------------
/Libs/munq/Munq.MVC3.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/erikzaadi/GithubSharp/HEAD/Libs/munq/Munq.MVC3.dll
--------------------------------------------------------------------------------
/Libs/mvc/System.Web.Mvc.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/erikzaadi/GithubSharp/HEAD/Libs/mvc/System.Web.Mvc.dll
--------------------------------------------------------------------------------
/Libs/nunit/nunit.mocks.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/erikzaadi/GithubSharp/HEAD/Libs/nunit/nunit.mocks.dll
--------------------------------------------------------------------------------
/Samples/MvcSample/MvcUI/Views/Shared/Footer.cshtml:
--------------------------------------------------------------------------------
1 | Copyright 2011 Erik Zaadi
--------------------------------------------------------------------------------
/Libs/mvc/System.Web.Razor.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/erikzaadi/GithubSharp/HEAD/Libs/mvc/System.Web.Razor.dll
--------------------------------------------------------------------------------
/Libs/nunit/nunit.framework.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/erikzaadi/GithubSharp/HEAD/Libs/nunit/nunit.framework.dll
--------------------------------------------------------------------------------
/Samples/MvcSample/MvcUI/Default.aspx:
--------------------------------------------------------------------------------
1 | <%@ Page Language="C#" Inherits="GithubSharp.MvcSample.MvcApplication.Default" %>
--------------------------------------------------------------------------------
/Libs/munq/Munq.IocContainer.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/erikzaadi/GithubSharp/HEAD/Libs/munq/Munq.IocContainer.dll
--------------------------------------------------------------------------------
/Libs/mvc/System.Web.Helpers.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/erikzaadi/GithubSharp/HEAD/Libs/mvc/System.Web.Helpers.dll
--------------------------------------------------------------------------------
/Libs/mvc/System.Web.Routing.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/erikzaadi/GithubSharp/HEAD/Libs/mvc/System.Web.Routing.dll
--------------------------------------------------------------------------------
/Libs/mvc/System.Web.WebPages.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/erikzaadi/GithubSharp/HEAD/Libs/mvc/System.Web.WebPages.dll
--------------------------------------------------------------------------------
/Libs/mvc/System.Web.Abstractions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/erikzaadi/GithubSharp/HEAD/Libs/mvc/System.Web.Abstractions.dll
--------------------------------------------------------------------------------
/Libs/mvc/System.Web.WebPages.Razor.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/erikzaadi/GithubSharp/HEAD/Libs/mvc/System.Web.WebPages.Razor.dll
--------------------------------------------------------------------------------
/Samples/MvcSample/MvcUI/Global.asax:
--------------------------------------------------------------------------------
1 | <%@ Application Inherits="GithubSharp.MvcSample.MvcApplication.ServerApp" Language="C#" %>
2 |
--------------------------------------------------------------------------------
/Samples/MvcSample/MvcUI/css/grid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/erikzaadi/GithubSharp/HEAD/Samples/MvcSample/MvcUI/css/grid.png
--------------------------------------------------------------------------------
/Libs/munq/Munq.CommonServiceLocator.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/erikzaadi/GithubSharp/HEAD/Libs/munq/Munq.CommonServiceLocator.dll
--------------------------------------------------------------------------------
/Libs/servicestack/ServiceStack.Text.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/erikzaadi/GithubSharp/HEAD/Libs/servicestack/ServiceStack.Text.dll
--------------------------------------------------------------------------------
/Libs/mvc/System.Web.WebPages.Deployment.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/erikzaadi/GithubSharp/HEAD/Libs/mvc/System.Web.WebPages.Deployment.dll
--------------------------------------------------------------------------------
/Samples/MvcSample/MvcUI/images/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/erikzaadi/GithubSharp/HEAD/Samples/MvcSample/MvcUI/images/favicon.ico
--------------------------------------------------------------------------------
/Samples/MvcSample/MvcUI/images/githubsharp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/erikzaadi/GithubSharp/HEAD/Samples/MvcSample/MvcUI/images/githubsharp.png
--------------------------------------------------------------------------------
/Samples/ConsoleSample/app.config:
--------------------------------------------------------------------------------
1 |
2 |
11 | Click on the links to browse the various api's 12 |
13 |