Skip to content

Commit

Permalink
Remove .io from readme files
Browse files Browse the repository at this point in the history
  • Loading branch information
QuantumNightmare committed Jun 22, 2016
1 parent 717937e commit 93e2715
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 22 deletions.
8 changes: 4 additions & 4 deletions Mindscape.Raygun4Net.Mvc/readme.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
Raygun4Net.Mvc - Raygun.io Provider for ASP .NET MVC projects
Raygun4Net.Mvc - Raygun Provider for ASP .NET MVC projects
=============================================================

Where is my app API key?
========================
When you create a new application on your Raygun.io dashboard, your app API key is displayed at the top of the instructions page.
You can also find the API key by clicking the "Application Settings" button in the side bar of the Raygun.io dashboard.
When you create a new application in your Raygun dashboard, your app API key is displayed at the top of the instructions page.
You can also find the API key by clicking the "Application Settings" button in the side bar of the Raygun dashboard.

Namespace
=========
Expand Down Expand Up @@ -72,7 +72,7 @@ For example if you wanted to exclude errors that return the "I'm a teapot" respo
Exclude errors that originate from a local origin
-------------------------------------------------

Toggle this boolean and the HTTP module will not send errors to Raygun.io if the request originated from a local origin.
Toggle this boolean and the HTTP module will not send errors to Raygun if the request originated from a local origin.
i.e. A way to prevent local debug/development from notifying Raygun without having to resort to Web.config transforms.

<RaygunSettings apikey="YOUR_APP_API_KEY" excludeErrorsFromLocal="true" />
Expand Down
8 changes: 4 additions & 4 deletions Mindscape.Raygun4Net.WebApi/readme.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
Raygun4Net.WebApi - Raygun.io Provider for ASP .NET WebApi projects
Raygun4Net.WebApi - Raygun Provider for ASP .NET WebApi projects
===================================================================

Where is my app API key?
========================
When you create a new application on your Raygun.io dashboard, your app API key is displayed at the top of the instructions page.
You can also find the API key by clicking the "Application Settings" button in the side bar of the Raygun.io dashboard.
When you create a new application on your Raygun dashboard, your app API key is displayed at the top of the instructions page.
You can also find the API key by clicking the "Application Settings" button in the side bar of the Raygun dashboard.

Namespace
=========
Expand Down Expand Up @@ -74,7 +74,7 @@ For example if you wanted to exclude errors that return the "I'm a teapot" respo
Exclude errors that originate from a local origin
-------------------------------------------------

Toggle this boolean and Raygun will not send errors to Raygun.io if the request originated from a local origin.
Toggle this boolean and Raygun will not send errors to Raygun if the request originated from a local origin.
i.e. A way to prevent local debug/development from notifying Raygun without having to resort to Web.config transforms.

<RaygunSettings apikey="YOUR_APP_API_KEY" excludeErrorsFromLocal="true" />
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Raygun4Net
==========

[Raygun.io](http://raygun.io) Provider for .NET Framework
[Raygun](http://raygun.com) provider for .NET Framework

! IMPORTANT CHANGE IN 5.0 !
====================
Expand Down Expand Up @@ -55,9 +55,9 @@ Install the NuGet package to a project which uses one of the above frameworks an
Where is my app API key?
====================

When sending exceptions to the Raygun.io service, an app API key is required to map the messages to your application.
When sending exceptions to the Raygun service, an app API key is required to map the messages to your application.

When you create a new application on your Raygun.io dashboard, your app API key is displayed at the top of the instructions page. You can also find the API key by clicking the "Application Settings" button in the side bar of the Raygun.io dashboard.
When you create a new application in your Raygun dashboard, your app API key is displayed at the top of the instructions page. You can also find the API key by clicking the "Application Settings" button in the side bar of the Raygun dashboard.

Namespace
====================
Expand Down Expand Up @@ -137,7 +137,7 @@ If using the HTTP module then you can exclude errors by their HTTP status code b

**Exclude errors that originate from a local origin**

Toggle this boolean and the HTTP module will not send errors to Raygun.io if the request originated from a local origin. i.e. A way to prevent local debug/development from notifying Raygun without having to resort to Web.config transforms.
Toggle this boolean and the HTTP module will not send errors to Raygun if the request originated from a local origin. i.e. A way to prevent local debug/development from notifying Raygun without having to resort to Web.config transforms.

```
<RaygunSettings apikey="YOUR_APP_API_KEY" excludeErrorsFromLocal="true" />
Expand Down Expand Up @@ -236,7 +236,7 @@ private static void Application_ThreadException(object sender, ThreadExceptionEv

### Windows Store Apps (Windows 8.1 and Windows Phone 8.1)

In the App.xaml.cs constructor (or any central entry point in your application), call the static RaygunClient.Attach method using your API key. This will catch and send all unhandled exception to Raygun.io for you.
In the App.xaml.cs constructor (or any central entry point in your application), call the static RaygunClient.Attach method using your API key. This will catch and send all unhandled exception to Raygun for you.

```csharp
public App()
Expand Down Expand Up @@ -295,7 +295,7 @@ At any point after calling the Attach method, you can use RaygunClient.Current t
### Xamarin for Android

In the main/entry Activity of your application, use the static RaygunClient.Attach method using your app API key.
There is also an overload for the Attach method that lets you pass in a user-identity string which is useful for tracking affected users in your Raygun.io dashboard.
There is also an overload for the Attach method that lets you pass in a user-identity string which is useful for tracking affected users in your Raygun dashboard.

```csharp
RaygunClient.Attach("YOUR_APP_API_KEY");
Expand All @@ -306,7 +306,7 @@ At any point after calling the Attach method, you can use RaygunClient.Current t
### Xamarin for iOS

In the main entry point of the application, use the static RaygunClient.Attach method using your app API key.
There is also an overload for the Attach method that lets you pass in a user-identity string which is useful for tracking affected users in your Raygun.io dashboard.
There is also an overload for the Attach method that lets you pass in a user-identity string which is useful for tracking affected users in your Raygun dashboard.

```csharp
static void Main(string[] args)
Expand Down
14 changes: 7 additions & 7 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Raygun4Net - Raygun.io Provider for .NET Framework
Raygun4Net - Raygun Provider for .NET Framework
===================

Using Raygun4Net in an Mvc or WebApi project?
Expand All @@ -15,8 +15,8 @@ NOTE: the Mvc and WebApi packages can work side-by-side, so install both if you

Where is my app API key?
====================
When you create a new application on your Raygun.io dashboard, your app API key is displayed at the top of the instructions page.
You can also find the API key by clicking the "Application Settings" button in the side bar of the Raygun.io dashboard.
When you create a new application in your Raygun dashboard, your app API key is displayed at the top of the instructions page.
You can also find the API key by clicking the "Application Settings" button in the side bar of the Raygun dashboard.

Namespace
====================
Expand Down Expand Up @@ -105,7 +105,7 @@ If using the HTTP module then you can exclude errors by their HTTP status code b
Exclude errors that originate from a local origin
-------------------------------------------------

Toggle this boolean and the HTTP module will not send errors to Raygun.io if the request originated from a local origin. i.e. A way to prevent local debug/development from notifying Raygun without having to resort to Web.config transforms.
Toggle this boolean and the HTTP module will not send errors to Raygun if the request originated from a local origin. i.e. A way to prevent local debug/development from notifying Raygun without having to resort to Web.config transforms.

<RaygunSettings apikey="YOUR_APP_API_KEY" excludeErrorsFromLocal="true" />

Expand Down Expand Up @@ -197,7 +197,7 @@ private static void Application_ThreadException(object sender, ThreadExceptionEv
Windows Store Apps (Windows 8.1 and Windows Phone 8.1)
====================

In the App.xaml.cs constructor (or any central entry point in your application), call the static RaygunClient.Attach method using your API key. This will catch and send all unhandled exception to Raygun.io for you.
In the App.xaml.cs constructor (or any central entry point in your application), call the static RaygunClient.Attach method using your API key. This will catch and send all unhandled exception to Raygun for you.

public App()
{
Expand Down Expand Up @@ -254,7 +254,7 @@ At any point after calling the Attach method, you can use RaygunClient.Current t
Xamarin for Android
====================
In the main/entry Activity of your application, use the static RaygunClient.Attach method using your app API key.
There is also an overload for the Attach method that lets you pass in a user-identity string which is useful for tracking affected users in your Raygun.io dashboard.
There is also an overload for the Attach method that lets you pass in a user-identity string which is useful for tracking affected users in your Raygun dashboard.

RaygunClient.Attach("YOUR_APP_API_KEY");

Expand All @@ -263,7 +263,7 @@ At any point after calling the Attach method, you can use RaygunClient.Current t
Xamarin for iOS
====================
In the main entry point of the application, use the static RaygunClient.Attach method using your app API key.
There is also an overload for the Attach method that lets you pass in a user-identity string which is useful for tracking affected users in your Raygun.io dashboard.
There is also an overload for the Attach method that lets you pass in a user-identity string which is useful for tracking affected users in your Raygun dashboard.

static void Main(string[] args)
{
Expand Down

0 comments on commit 93e2715

Please sign in to comment.