Skip to content
This repository was archived by the owner on Aug 30, 2023. It is now read-only.

Commit 0b5adba

Browse files
authored
doc: sentry logo and extras (#250)
* doc: sentry logo and extras
1 parent d8e6938 commit 0b5adba

File tree

1 file changed

+18
-8
lines changed

1 file changed

+18
-8
lines changed

README.md

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
1-
# SharpRaven
1+
<p align="center">
2+
<a href="https://sentry.io" target="_blank" align="center">
3+
<img src="https://sentry-brand.storage.googleapis.com/sentry-logo-black.png" width="280">
4+
</a>
5+
<br />
6+
</p>
27

3-
SharpRaven is the .NET client for [Sentry](https://getsentry.com/welcome/).
8+
Official [Sentry](https://sentry.io/for/csharp/) SDK for .NET.
9+
===========
410

511
| | Stable | Pre-release |
612
| -------------------: | :----------------------------: | :------------------: |
@@ -11,10 +17,10 @@ SharpRaven is the .NET client for [Sentry](https://getsentry.com/welcome/).
1117
| **AppVeyor Build** | [![Master][9]][10] | [![Develop][15]][10] |
1218

1319
## Usage
14-
Instantiate the client with your DSN:
20+
Instantiate the client with your 'Data Source Name' (DSN):
1521

1622
```csharp
17-
var ravenClient = new RavenClient("http://public:[email protected]/project-id");
23+
var ravenClient = new RavenClient("https://public@sentry.io/project-id");
1824
```
1925

2026
### Capturing Exceptions
@@ -63,7 +69,7 @@ sent with your request, such as `ErrorLevel`, `Fingerprint`, a custom `Message`
6369
and `Tags`.
6470

6571
### Async Support
66-
In the .NET 4.5 build of SharpRaven, there's an `async` version of the `Capture`
72+
In the .NET 4.5 or later build of SharpRaven, there's an `async` version of the `Capture`
6773
method as well:
6874

6975
```csharp
@@ -82,7 +88,7 @@ instance of the `Dsn` class in your container:
8288
```csharp
8389
protected override void ApplicationStartup(TinyIoCContainer container, IPipelines pipelines)
8490
{
85-
container.Register(new Dsn("http://public:[email protected]/project-id"));
91+
container.Register(new Dsn("https://public@sentry.io/project-id"));
8692
}
8793
```
8894

@@ -94,7 +100,7 @@ or through configuration:
94100
<section name="sharpRaven" type="SharpRaven.Nancy.NancyConfiguration, SharpRaven.Nancy" />
95101
</configSections>
96102
<sharpRaven>
97-
<dsn value="http://public:[email protected]/project-id" />
103+
<dsn value="https://public@sentry.io/project-id" />
98104
</sharpRaven>
99105
</configuration>
100106
```
@@ -148,8 +154,11 @@ with prebuilt binaries, there's NuGet packages of both
148154
## Resources
149155
* [![Join the chat at https://gitter.im/getsentry/raven-csharp][gitter-badge]][gitter-link]
150156
* [Code][github]
157+
* [Bug Tracker](https://github.com/getsentry/raven-csharp/issues)
158+
* [Forum][forum]
151159
* [Mailing List][mail]
152160
* [IRC][irc] (`#sentry` on `irc.freenode.net`)
161+
* Follow [@getsentry](https://twitter.com/getsentry) on Twitter for updates
153162

154163
[1]: https://img.shields.io/github/release/getsentry/raven-csharp.svg
155164
[2]: https://github.com/getsentry/raven-csharp/releases/latest
@@ -168,8 +177,9 @@ with prebuilt binaries, there's NuGet packages of both
168177
[ex]: https://msdn.microsoft.com/en-us/library/system.exception.data.aspx
169178
[gitter-badge]: https://badges.gitter.im/Join%20Chat.svg
170179
[gitter-link]: https://gitter.im/getsentry/raven-csharp?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge
171-
[github]: http://github.com/getsentry/raven-csharp
180+
[github]: http://github.com/getsentry/raven-csharp/develop/src
172181
[mail]: https://groups.google.com/group/getsentry
182+
[forum]: https://forum.sentry.io/c/sdks
173183
[irc]: irc://irc.freenode.net/sentry
174184
[nuget]: https://www.nuget.org/packages/SharpRaven
175185
[nuget-nancy]: https://www.nuget.org/packages/SharpRaven.Nancy

0 commit comments

Comments
 (0)