mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-04 19:26:51 +00:00
Add way to get to blob client
This commit is contained in:
@@ -54,6 +54,7 @@
|
||||
<ItemGroup>
|
||||
<Compile Include="Authentication\CredentialsTests.cs" />
|
||||
<Compile Include="Clients\AssigneesClientTests.cs" />
|
||||
<Compile Include="Clients\BlobClientTests.cs" />
|
||||
<Compile Include="Clients\CommitStatusClientTests.cs" />
|
||||
<Compile Include="Clients\EventsClientTests.cs" />
|
||||
<Compile Include="Clients\GitDatabaseClientTests.cs" />
|
||||
|
||||
@@ -81,6 +81,7 @@ namespace Octokit
|
||||
var apiConnection = new ApiConnection(connection);
|
||||
Authorization = new AuthorizationsClient(apiConnection);
|
||||
Activity = new ActivitiesClient(apiConnection);
|
||||
Blob = new BlobsClient(apiConnection);
|
||||
Issue = new IssuesClient(apiConnection);
|
||||
Miscellaneous = new MiscellaneousClient(connection);
|
||||
Notification = new NotificationsClient(apiConnection);
|
||||
@@ -128,6 +129,7 @@ namespace Octokit
|
||||
|
||||
public IAuthorizationsClient Authorization { get; private set; }
|
||||
public IActivitiesClient Activity { get; set; }
|
||||
public IBlobsClient Blob { get; private set; }
|
||||
public IIssuesClient Issue { get; private set; }
|
||||
public IMiscellaneousClient Miscellaneous { get; private set; }
|
||||
public IOrganizationsClient Organization { get; private set; }
|
||||
|
||||
@@ -8,6 +8,7 @@ namespace Octokit
|
||||
|
||||
IAuthorizationsClient Authorization { get; }
|
||||
IActivitiesClient Activity { get; }
|
||||
IBlobsClient Blob { get; }
|
||||
IIssuesClient Issue { get; }
|
||||
IMiscellaneousClient Miscellaneous { get; }
|
||||
IOrganizationsClient Organization { get; }
|
||||
|
||||
@@ -53,12 +53,14 @@
|
||||
<Compile Include="Clients\ApiPagination.cs" />
|
||||
<Compile Include="Clients\AssigneesClient.cs" />
|
||||
<Compile Include="Clients\AuthorizationsClient.cs" />
|
||||
<Compile Include="Clients\BlobsClient.cs" />
|
||||
<Compile Include="Clients\CommitStatusClient.cs" />
|
||||
<Compile Include="Clients\EventsClient.cs" />
|
||||
<Compile Include="Clients\GitDatabaseClient.cs" />
|
||||
<Compile Include="Clients\IActivitiesClient.cs" />
|
||||
<Compile Include="Clients\IAssigneesClient.cs" />
|
||||
<Compile Include="Clients\IAuthorizationsClient.cs" />
|
||||
<Compile Include="Clients\IBlobsClient.cs" />
|
||||
<Compile Include="Clients\ICommitStatusClient.cs" />
|
||||
<Compile Include="Clients\IEventsClient.cs" />
|
||||
<Compile Include="Clients\IGitDatabaseClient.cs" />
|
||||
@@ -144,6 +146,7 @@
|
||||
<Compile Include="Models\Request\MilestoneRequest.cs" />
|
||||
<Compile Include="Models\Request\MilestoneUpdate.cs" />
|
||||
<Compile Include="Models\Request\NewAuthorization.cs" />
|
||||
<Compile Include="Models\Request\NewBlob.cs" />
|
||||
<Compile Include="Models\Request\NewCommitStatus.cs" />
|
||||
<Compile Include="Models\Request\NewIssue.cs" />
|
||||
<Compile Include="Models\Request\NewMilestone.cs" />
|
||||
@@ -160,6 +163,7 @@
|
||||
<Compile Include="Models\Response\ApiErrorDetail.cs" />
|
||||
<Compile Include="Models\Response\Application.cs" />
|
||||
<Compile Include="Models\Response\Authorization.cs" />
|
||||
<Compile Include="Models\Response\Blob.cs" />
|
||||
<Compile Include="Models\Response\CommitStatus.cs" />
|
||||
<Compile Include="Models\Response\EmailAddress.cs" />
|
||||
<Compile Include="Models\Response\GitTag.cs" />
|
||||
|
||||
Reference in New Issue
Block a user