Skip to content

Commit

Permalink
Update(s)
Browse files Browse the repository at this point in the history
  • Loading branch information
gonace committed Jun 27, 2023
1 parent 020593d commit a89f05f
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Intercom/Intercom.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,20 @@
<description></description>
<summary></summary>
<license type="expression">MIT</license>
<projectUrl>https://github.com/gonace/intercom</projectUrl>
<projectUrl>https://github.com/gonace/Intercom</projectUrl>
<icon>assets\icon.png</icon>
<repository type="git" url="https://github.com/gonace/intercom" branch="master" />
<repository type="git" url="https://github.com/gonace/Intercom" branch="master" />
<dependencies>
<group targetFramework="netstandard2.0">
<dependency id="Microsoft.CSharp" version="4.7.0" />
<dependency id="Newtonsoft.Json" version="13.0.2" />
</group>
<group targetFramework="netstandard2.1">
<dependency id="Microsoft.CSharp" version="4.7.0" />
<dependency id="Newtonsoft.Json" version="13.0.2" />
</group>
<group targetFramework="net6.0">
<dependency id="Microsoft.CSharp" version="4.7.0" />
<dependency id="Newtonsoft.Json" version="13.0.2" />
</group>
</dependencies>
Expand Down
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,25 @@ You can download the intercom client nuget.
## Usage
> For the full documentation please read our [wiki](https://github.com/gonace/intercom/wiki)!
```c#
Intercom.Configure("baseUri", "bearerToken")

Intercom.Companies...
Intercom.Me...
```

```c#
public class SomeClass
{
private readonly ICompaniesClient _client;

public SomeClass()
{
_client = new CompaniesClient("baseUri", "bearerToken")
}
}
```

```c#
```

Expand Down

0 comments on commit a89f05f

Please sign in to comment.