Figured out how to include the files for the other projects

This commit is contained in:
Mordechai Zuber
2016-01-19 00:15:21 +02:00
parent 15c8ff9362
commit 4265b62573
5 changed files with 14 additions and 0 deletions

View File

@@ -95,6 +95,7 @@
<Compile Include="Clients\RepositoryForksClientTests.cs" />
<Compile Include="Clients\RepositoryHooksClientTest.cs" />
<Compile Include="Clients\RepositoryDeployKeysClientTests.cs" />
<Compile Include="Clients\RepositoryPagesClientTests.cs" />
<Compile Include="Clients\SshKeysClientTests.cs" />
<Compile Include="Clients\StarredClientTests.cs" />
<Compile Include="Clients\StatisticsClientTests.cs" />

View File

@@ -104,6 +104,7 @@
<Compile Include="Clients\RepositoryCommentsClientTests.cs" />
<Compile Include="Clients\RepositoryContentsClientTests.cs" />
<Compile Include="Clients\RepositoryDeployKeysClientTests.cs" />
<Compile Include="Clients\RepositoryPagesClientTests.cs" />
<Compile Include="Clients\SshKeysClientTests.cs" />
<Compile Include="Clients\StarredClientTests.cs" />
<Compile Include="Clients\StatisticsClientTests.cs" />

View File

@@ -69,6 +69,7 @@
<Compile Include="Clients\IPullRequestsClient.cs" />
<Compile Include="Clients\IRepositoryForksClient.cs" />
<Compile Include="Clients\IRepositoryHooksClient.cs" />
<Compile Include="Clients\IRepositoryPagesClient.cs" />
<Compile Include="Clients\IssueCommentsClient.cs" />
<Compile Include="Clients\IssuesClient.cs" />
<Compile Include="Clients\IssuesEventsClient.cs" />
@@ -85,6 +86,7 @@
<Compile Include="Clients\ReferencesClient.cs" />
<Compile Include="Clients\RepositoryForksClient.cs" />
<Compile Include="Clients\RepositoryHooksClient.cs" />
<Compile Include="Clients\RepositoryPagesClient.cs" />
<Compile Include="Clients\StarredClient.cs" />
<Compile Include="Clients\PullRequestsClient.cs" />
<Compile Include="Clients\StatisticsClient.cs" />
@@ -172,6 +174,8 @@
<Compile Include="Models\Request\NewIssue.cs" />
<Compile Include="Models\Response\Notification.cs" />
<Compile Include="Models\Response\NotificationInfo.cs" />
<Compile Include="Models\Response\Page.cs" />
<Compile Include="Models\Response\PagesBuild.cs" />
<Compile Include="Models\Response\PullRequest.cs" />
<Compile Include="Models\Request\RepositoryIssueRequest.cs" />
<Compile Include="Models\Request\MilestoneRequest.cs" />

View File

@@ -57,6 +57,7 @@
<Compile Include="Clients\AuthorizationsClient.cs" />
<Compile Include="Clients\BlobsClient.cs" />
<Compile Include="Clients\CommitsClient.cs" />
<Compile Include="Clients\IRepositoryPagesClient.cs" />
<Compile Include="Clients\MergingClient.cs" />
<Compile Include="Clients\CommitStatusClient.cs" />
<Compile Include="Clients\EventsClient.cs" />
@@ -116,6 +117,7 @@
<Compile Include="Clients\RepositoryContentsClient.cs" />
<Compile Include="Clients\RepositoryForksClient.cs" />
<Compile Include="Clients\RepositoryHooksClient.cs" />
<Compile Include="Clients\RepositoryPagesClient.cs" />
<Compile Include="Clients\SshKeysClient.cs" />
<Compile Include="Clients\StarredClient.cs" />
<Compile Include="Clients\StatisticsClient.cs" />
@@ -241,6 +243,8 @@
<Compile Include="Models\Response\BranchProtection.cs" />
<Compile Include="Models\Response\Commit.cs" />
<Compile Include="Models\Response\CommitStatus.cs" />
<Compile Include="Models\Response\Page.cs" />
<Compile Include="Models\Response\PagesBuild.cs" />
<Compile Include="Models\Response\RepositoryContributor.cs" />
<Compile Include="Models\Response\Contributor.cs" />
<Compile Include="Models\Response\EmailAddress.cs" />

View File

@@ -73,6 +73,7 @@
<Compile Include="Clients\IActivitiesClient.cs" />
<Compile Include="Clients\IPullRequestReviewCommentsClient.cs" />
<Compile Include="Clients\IPullRequestsClient.cs" />
<Compile Include="Clients\IRepositoryPagesClient.cs" />
<Compile Include="Clients\PullRequestReviewCommentsClient.cs" />
<Compile Include="Clients\PullRequestsClient.cs" />
<Compile Include="Clients\IAssigneesClient.cs" />
@@ -123,6 +124,7 @@
<Compile Include="Clients\RepositoriesClient.cs" />
<Compile Include="Clients\RepositoryForksClient.cs" />
<Compile Include="Clients\RepositoryHooksClient.cs" />
<Compile Include="Clients\RepositoryPagesClient.cs" />
<Compile Include="Clients\SshKeysClient.cs" />
<Compile Include="Clients\StarredClient.cs" />
<Compile Include="Clients\StatisticsClient.cs" />
@@ -270,6 +272,8 @@
<Compile Include="Models\Response\Notification.cs" />
<Compile Include="Models\Response\NotificationInfo.cs" />
<Compile Include="Models\Response\Organization.cs" />
<Compile Include="Models\Response\Page.cs" />
<Compile Include="Models\Response\PagesBuild.cs" />
<Compile Include="Models\Response\Plan.cs" />
<Compile Include="Models\Response\PullRequest.cs" />
<Compile Include="Models\Response\PullRequestMerge.cs" />