Skip to content

Commit

Permalink
Renamed to Itofinity.Bitbucket.Rest and removed additional projects
Browse files Browse the repository at this point in the history
  • Loading branch information
mminns committed Feb 24, 2019
1 parent 4cfbfc3 commit 75e5911
Show file tree
Hide file tree
Showing 394 changed files with 1,675 additions and 2,672 deletions.
48 changes: 0 additions & 48 deletions Itofinity.Bitbucket.Refit.sln

This file was deleted.

36 changes: 36 additions & 0 deletions Itofinity.Bitbucket.Rest.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.26621.2
MinimumVisualStudioVersion = 10.0.40219.1
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Itofinity.Bitbucket.Rest.shared", "src\Itofinity.Bitbucket.Rest.Shared\Itofinity.Bitbucket.Rest.shared.shproj", "{E563B1D4-8996-4D29-B045-46D309ABD843}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Itofinity.Bitbucket.Rest", "src\Itofinity.Bitbucket.Rest\Itofinity.Bitbucket.Rest.csproj", "{20C061CB-0737-4167-BB5A-0031F23B4D3F}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Itofinity.Bitbucket.Rest.Test", "src\Itofinity.Bitbucket.Rest.Test\Itofinity.Bitbucket.Rest.Test.csproj", "{90F58E2C-E140-4463-96CE-7036F81CA2E7}"
EndProject
Global
GlobalSection(SharedMSBuildProjectFiles) = preSolution
src\Itofinity.Bitbucket.Rest.Shared\Itofinity.Bitbucket.Rest.Shared.projitems*{e563b1d4-8996-4d29-b045-46d309abd843}*SharedItemsImports = 13
EndGlobalSection
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{20C061CB-0737-4167-BB5A-0031F23B4D3F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{20C061CB-0737-4167-BB5A-0031F23B4D3F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{20C061CB-0737-4167-BB5A-0031F23B4D3F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{20C061CB-0737-4167-BB5A-0031F23B4D3F}.Release|Any CPU.Build.0 = Release|Any CPU
{90F58E2C-E140-4463-96CE-7036F81CA2E7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{90F58E2C-E140-4463-96CE-7036F81CA2E7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{90F58E2C-E140-4463-96CE-7036F81CA2E7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{90F58E2C-E140-4463-96CE-7036F81CA2E7}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {F74B5F85-30FA-4FF8-9049-9F984A391C40}
EndGlobalSection
EndGlobal
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Itofinity.Bitbucket.Refit - the C# library for the Bitbucket API
# Itofinity.Bitbucket.Rest - the C# library for the Bitbucket API

Code against the Bitbucket API to automate simple tasks, embed Bitbucket data into your own site, build mobile or desktop apps, or even add custom UI add-ons into Bitbucket itself using the Connect framework.

Expand All @@ -24,9 +24,9 @@ Generate the DLL using Visual Studio 2017 (15.3.0)

Then include the DLL (under the `bin` folder) in the C# project, and use the namespaces:
```csharp
using Itofinity.Bitbucket.Refit.Api;
using Itofinity.Bitbucket.Refit.Client;
using Itofinity.Bitbucket.Refit.Model;
using Itofinity.Bitbucket.Rest.Api;
using Itofinity.Bitbucket.Rest.Client;
using Itofinity.Bitbucket.Rest.Model;
```

<a name="getting-started"></a>
Expand All @@ -35,9 +35,9 @@ using Itofinity.Bitbucket.Refit.Model;
```csharp
using System;
using System.Diagnostics;
using Itofinity.Bitbucket.Refit.Api;
using Itofinity.Bitbucket.Refit.Client;
using Itofinity.Bitbucket.Refit.Model;
using Itofinity.Bitbucket.Rest.Api;
using Itofinity.Bitbucket.Rest.Client;
using Itofinity.Bitbucket.Rest.Model;

namespace Example
{
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ assembly_info:

build_script:
- ps: |
dotnet build -c release "Itofinity.Bitbucket.Refit.sln"
dotnet build -c release "Itofinity.Bitbucket.Rest.sln"
dotnet pack -c release -p:PackageVersion=$env:APPVEYOR_BUILD_VERSION
after_build:
Expand Down
2 changes: 1 addition & 1 deletion docs/Account.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Itofinity.Bitbucket.Refit.Model.Account
# Itofinity.Bitbucket.Rest.Model.Account
## Properties

Name | Type | Description | Notes
Expand Down
2 changes: 1 addition & 1 deletion docs/AccountLinks.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Itofinity.Bitbucket.Refit.Model.AccountLinks
# Itofinity.Bitbucket.Rest.Model.AccountLinks
## Properties

Name | Type | Description | Notes
Expand Down
68 changes: 34 additions & 34 deletions docs/AddonApi.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Itofinity.Bitbucket.Refit.Api.AddonApi
# Itofinity.Bitbucket.Rest.Api.AddonApi

All URIs are relative to *https://api.localhost:8000/2.0*

Expand Down Expand Up @@ -29,9 +29,9 @@ Method | HTTP request | Description
```csharp
using System;
using System.Diagnostics;
using Itofinity.Bitbucket.Refit.Api;
using Itofinity.Bitbucket.Refit.Client;
using Itofinity.Bitbucket.Refit.Model;
using Itofinity.Bitbucket.Rest.Api;
using Itofinity.Bitbucket.Rest.Client;
using Itofinity.Bitbucket.Rest.Model;

namespace Example
{
Expand Down Expand Up @@ -96,9 +96,9 @@ This endpoint does not need any parameter.
```csharp
using System;
using System.Diagnostics;
using Itofinity.Bitbucket.Refit.Api;
using Itofinity.Bitbucket.Refit.Client;
using Itofinity.Bitbucket.Refit.Model;
using Itofinity.Bitbucket.Rest.Api;
using Itofinity.Bitbucket.Rest.Client;
using Itofinity.Bitbucket.Rest.Model;

namespace Example
{
Expand Down Expand Up @@ -163,9 +163,9 @@ This endpoint does not need any parameter.
```csharp
using System;
using System.Diagnostics;
using Itofinity.Bitbucket.Refit.Api;
using Itofinity.Bitbucket.Refit.Client;
using Itofinity.Bitbucket.Refit.Model;
using Itofinity.Bitbucket.Rest.Api;
using Itofinity.Bitbucket.Rest.Client;
using Itofinity.Bitbucket.Rest.Model;

namespace Example
{
Expand Down Expand Up @@ -234,9 +234,9 @@ Name | Type | Description | Notes
```csharp
using System;
using System.Diagnostics;
using Itofinity.Bitbucket.Refit.Api;
using Itofinity.Bitbucket.Refit.Client;
using Itofinity.Bitbucket.Refit.Model;
using Itofinity.Bitbucket.Rest.Api;
using Itofinity.Bitbucket.Rest.Client;
using Itofinity.Bitbucket.Rest.Model;

namespace Example
{
Expand Down Expand Up @@ -305,9 +305,9 @@ Name | Type | Description | Notes
```csharp
using System;
using System.Diagnostics;
using Itofinity.Bitbucket.Refit.Api;
using Itofinity.Bitbucket.Refit.Client;
using Itofinity.Bitbucket.Refit.Model;
using Itofinity.Bitbucket.Rest.Api;
using Itofinity.Bitbucket.Rest.Client;
using Itofinity.Bitbucket.Rest.Model;

namespace Example
{
Expand Down Expand Up @@ -376,9 +376,9 @@ Name | Type | Description | Notes
```csharp
using System;
using System.Diagnostics;
using Itofinity.Bitbucket.Refit.Api;
using Itofinity.Bitbucket.Refit.Client;
using Itofinity.Bitbucket.Refit.Model;
using Itofinity.Bitbucket.Rest.Api;
using Itofinity.Bitbucket.Rest.Client;
using Itofinity.Bitbucket.Rest.Model;

namespace Example
{
Expand Down Expand Up @@ -447,9 +447,9 @@ Name | Type | Description | Notes
```csharp
using System;
using System.Diagnostics;
using Itofinity.Bitbucket.Refit.Api;
using Itofinity.Bitbucket.Refit.Client;
using Itofinity.Bitbucket.Refit.Model;
using Itofinity.Bitbucket.Rest.Api;
using Itofinity.Bitbucket.Rest.Client;
using Itofinity.Bitbucket.Rest.Model;

namespace Example
{
Expand Down Expand Up @@ -518,9 +518,9 @@ Name | Type | Description | Notes
```csharp
using System;
using System.Diagnostics;
using Itofinity.Bitbucket.Refit.Api;
using Itofinity.Bitbucket.Refit.Client;
using Itofinity.Bitbucket.Refit.Model;
using Itofinity.Bitbucket.Rest.Api;
using Itofinity.Bitbucket.Rest.Client;
using Itofinity.Bitbucket.Rest.Model;

namespace Example
{
Expand Down Expand Up @@ -589,9 +589,9 @@ Name | Type | Description | Notes
```csharp
using System;
using System.Diagnostics;
using Itofinity.Bitbucket.Refit.Api;
using Itofinity.Bitbucket.Refit.Client;
using Itofinity.Bitbucket.Refit.Model;
using Itofinity.Bitbucket.Rest.Api;
using Itofinity.Bitbucket.Rest.Client;
using Itofinity.Bitbucket.Rest.Model;

namespace Example
{
Expand Down Expand Up @@ -660,9 +660,9 @@ Name | Type | Description | Notes
```csharp
using System;
using System.Diagnostics;
using Itofinity.Bitbucket.Refit.Api;
using Itofinity.Bitbucket.Refit.Client;
using Itofinity.Bitbucket.Refit.Model;
using Itofinity.Bitbucket.Rest.Api;
using Itofinity.Bitbucket.Rest.Client;
using Itofinity.Bitbucket.Rest.Model;

namespace Example
{
Expand Down Expand Up @@ -727,9 +727,9 @@ POST a new custom event. The data within the event body will be hydrated by Bit
```csharp
using System;
using System.Diagnostics;
using Itofinity.Bitbucket.Refit.Api;
using Itofinity.Bitbucket.Refit.Client;
using Itofinity.Bitbucket.Refit.Model;
using Itofinity.Bitbucket.Rest.Api;
using Itofinity.Bitbucket.Rest.Client;
using Itofinity.Bitbucket.Rest.Model;

namespace Example
{
Expand Down
2 changes: 1 addition & 1 deletion docs/Author.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Itofinity.Bitbucket.Refit.Model.Author
# Itofinity.Bitbucket.Rest.Model.Author
## Properties

Name | Type | Description | Notes
Expand Down
2 changes: 1 addition & 1 deletion docs/BaseCommit.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Itofinity.Bitbucket.Refit.Model.BaseCommit
# Itofinity.Bitbucket.Rest.Model.BaseCommit
## Properties

Name | Type | Description | Notes
Expand Down
2 changes: 1 addition & 1 deletion docs/Branch.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Itofinity.Bitbucket.Refit.Model.Branch
# Itofinity.Bitbucket.Rest.Model.Branch
## Properties

Name | Type | Description | Notes
Expand Down
2 changes: 1 addition & 1 deletion docs/Branchrestriction.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Itofinity.Bitbucket.Refit.Model.Branchrestriction
# Itofinity.Bitbucket.Rest.Model.Branchrestriction
## Properties

Name | Type | Description | Notes
Expand Down
32 changes: 16 additions & 16 deletions docs/BranchrestrictionsApi.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Itofinity.Bitbucket.Refit.Api.BranchrestrictionsApi
# Itofinity.Bitbucket.Rest.Api.BranchrestrictionsApi

All URIs are relative to *https://api.localhost:8000/2.0*

Expand All @@ -23,9 +23,9 @@ Returns a paginated list of all branch restrictions on the repository.
```csharp
using System;
using System.Diagnostics;
using Itofinity.Bitbucket.Refit.Api;
using Itofinity.Bitbucket.Refit.Client;
using Itofinity.Bitbucket.Refit.Model;
using Itofinity.Bitbucket.Rest.Api;
using Itofinity.Bitbucket.Rest.Client;
using Itofinity.Bitbucket.Rest.Model;

namespace Example
{
Expand Down Expand Up @@ -96,9 +96,9 @@ Deletes an existing branch restriction rule.
```csharp
using System;
using System.Diagnostics;
using Itofinity.Bitbucket.Refit.Api;
using Itofinity.Bitbucket.Refit.Client;
using Itofinity.Bitbucket.Refit.Model;
using Itofinity.Bitbucket.Rest.Api;
using Itofinity.Bitbucket.Rest.Client;
using Itofinity.Bitbucket.Rest.Model;

namespace Example
{
Expand Down Expand Up @@ -170,9 +170,9 @@ Returns a specific branch restriction rule.
```csharp
using System;
using System.Diagnostics;
using Itofinity.Bitbucket.Refit.Api;
using Itofinity.Bitbucket.Refit.Client;
using Itofinity.Bitbucket.Refit.Model;
using Itofinity.Bitbucket.Rest.Api;
using Itofinity.Bitbucket.Rest.Client;
using Itofinity.Bitbucket.Rest.Model;

namespace Example
{
Expand Down Expand Up @@ -245,9 +245,9 @@ Updates an existing branch restriction rule. Fields not present in the request
```csharp
using System;
using System.Diagnostics;
using Itofinity.Bitbucket.Refit.Api;
using Itofinity.Bitbucket.Refit.Client;
using Itofinity.Bitbucket.Refit.Model;
using Itofinity.Bitbucket.Rest.Api;
using Itofinity.Bitbucket.Rest.Client;
using Itofinity.Bitbucket.Rest.Model;

namespace Example
{
Expand Down Expand Up @@ -322,9 +322,9 @@ Creates a new branch restriction rule for a repository. `kind` describes what w
```csharp
using System;
using System.Diagnostics;
using Itofinity.Bitbucket.Refit.Api;
using Itofinity.Bitbucket.Refit.Client;
using Itofinity.Bitbucket.Refit.Model;
using Itofinity.Bitbucket.Rest.Api;
using Itofinity.Bitbucket.Rest.Client;
using Itofinity.Bitbucket.Rest.Model;

namespace Example
{
Expand Down
2 changes: 1 addition & 1 deletion docs/Comment.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Itofinity.Bitbucket.Refit.Model.Comment
# Itofinity.Bitbucket.Rest.Model.Comment
## Properties

Name | Type | Description | Notes
Expand Down
2 changes: 1 addition & 1 deletion docs/CommentContent.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Itofinity.Bitbucket.Refit.Model.CommentContent
# Itofinity.Bitbucket.Rest.Model.CommentContent
## Properties

Name | Type | Description | Notes
Expand Down
Loading

0 comments on commit 75e5911

Please sign in to comment.