Skip to content

Commit 4023d14

Browse files
committed
Updated documentation links
1 parent 1e94fed commit 4023d14

File tree

11 files changed

+66
-66
lines changed

11 files changed

+66
-66
lines changed

build/common.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<PropertyGroup>
33
<Product>Exceptionless</Product>
44
<Description>Exceptionless is a cloud based error reporting service that sends your exceptions to https://exceptionless.com and provides aggregated views and analytics.</Description>
5-
<PackageProjectUrl>https://github.com/exceptionless/Exceptionless</PackageProjectUrl>
6-
<PackageReleaseNotes>https://github.com/exceptionless/Exceptionless/releases</PackageReleaseNotes>
5+
<PackageProjectUrl>https://github.com/exceptionless/Exceptionless.Net</PackageProjectUrl>
6+
<PackageReleaseNotes>https://github.com/exceptionless/Exceptionless.Net/releases</PackageReleaseNotes>
77
<MinVerSkip Condition="'$(Configuration)' == 'Debug'">true</MinVerSkip>
88
<MinVerTagPrefix>v</MinVerTagPrefix>
99

src/Exceptionless/readme.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ and viewing your project configuration page.
2020
By default the Exceptionless Client will report all available metadata including potential PII data.
2121
You can fine tune the collection of information via Data Exclusions or turning off collection completely.
2222

23-
Please visit the wiki https://github.com/exceptionless/Exceptionless.Net/wiki/Configuration#general-data-protection-regulation
23+
Please visit the documentation https://exceptionless.com/docs/clients/dotnet/private-information/
2424
for detailed information on how to configure the client to meet your requirements.
2525

2626
-------------------------------------
@@ -31,14 +31,14 @@ referenced runtime, Exceptionless will attempt to wire up to available error han
3131
discover configuration settings available to that runtime. For these reasons if you are on a known
3232
platform then use the platform specific package to save you time configuring while giving you more
3333
contextual information. For more information and configuration examples please read the Exceptionless
34-
Configuration documentation on https://github.com/exceptionless/Exceptionless.Net/wiki/Configuration
34+
Configuration documentation on https://exceptionless.com/docs/clients/dotnet/configuration/
3535

3636
On app startup, import the Exceptionless namespace and call the client.Startup() extension method
3737
to wire up to any runtime specific error handlers and read any available configuration.
3838

3939
Exceptionless.ExceptionlessClient.Default.Startup("API_KEY_HERE")
4040

41-
Please visit the wiki https://github.com/exceptionless/Exceptionless.Net/wiki/Sending-Events
41+
Please visit the documentation https://exceptionless.com/docs/clients/dotnet/sending-events/
4242
for examples on sending events to Exceptionless.
4343

4444
-------------------------------------
@@ -61,7 +61,7 @@ of code to start reporting unhandled exceptions.
6161

6262
Exceptionless.ExceptionlessClient.Default.Startup()
6363

64-
Please visit the wiki https://github.com/exceptionless/Exceptionless.Net/wiki/Sending-Events
64+
Please visit the documentation https://exceptionless.com/docs/clients/dotnet/sending-events/
6565
for examples on sending events to Exceptionless.
6666

6767
-------------------------------------

src/Platforms/Exceptionless.AspNetCore/readme.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ and viewing your project configuration page.
2020
By default the Exceptionless Client will report all available metadata including potential PII data.
2121
You can fine tune the collection of information via Data Exclusions or turning off collection completely.
2222

23-
Please visit the wiki https://github.com/exceptionless/Exceptionless.Net/wiki/Configuration#general-data-protection-regulation
23+
Please visit the documentation https://exceptionless.com/docs/clients/dotnet/private-information/
2424
for detailed information on how to configure the client to meet your requirements.
2525

2626
-------------------------------------
@@ -35,7 +35,7 @@ app.UseExceptionless("API_KEY_HERE");
3535
Alternatively, you can also use the different overloads of the UseExceptionless method
3636
for different configuration options.
3737

38-
Please visit the wiki https://github.com/exceptionless/Exceptionless.Net/wiki/Sending-Events
38+
Please visit the documentation https://exceptionless.com/docs/clients/dotnet/sending-events/
3939
for examples on sending events to Exceptionless.
4040

4141
-------------------------------------
@@ -48,7 +48,7 @@ the following method.
4848
exception.ToExceptionless().Submit()
4949

5050
Please note that ASP.NET Core doesn't have a static http context. We recommend registering
51-
the http context accessor. Doing so will allow the request and user information to be populated.
51+
the http context accessor. Doing so will allow the request and user information to be populated.
5252
You can do this by calling the AddHttpContextAccessor while configure services.
5353

5454
services.AddHttpContextAccessor()

src/Platforms/Exceptionless.Extensions.Logging/readme.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ and viewing your project configuration page.
2020
By default the Exceptionless Client will report all available metadata including potential PII data.
2121
You can fine tune the collection of information via Data Exclusions or turning off collection completely.
2222

23-
Please visit the wiki https://github.com/exceptionless/Exceptionless.Net/wiki/Configuration#general-data-protection-regulation
23+
Please visit the documentation https://exceptionless.com/docs/clients/dotnet/private-information/
2424
for detailed information on how to configure the client to meet your requirements.
2525

2626
-------------------------------------
@@ -34,7 +34,7 @@ loggerFactory.AddExceptionless("API_KEY_HERE");
3434
Alternatively, you can also use the different overloads of the AddExceptionless method
3535
for different configuration options.
3636

37-
Please visit the wiki https://github.com/exceptionless/Exceptionless.Net/wiki/Sending-Events
37+
Please visit the documentation https://exceptionless.com/docs/clients/dotnet/sending-events/
3838
for examples on sending events to Exceptionless.
3939

4040
-------------------------------------

src/Platforms/Exceptionless.Log4net/readme.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
-------------------------------------
22
Exceptionless Readme
33
-------------------------------------
4-
Exceptionless provides real-time error reporting for your apps. It organizes the
5-
gathered information into simple actionable data that will help your app become
4+
Exceptionless provides real-time error reporting for your apps. It organizes the
5+
gathered information into simple actionable data that will help your app become
66
exceptionless!
77

88
Learn more at http://exceptionless.io.
99

1010
-------------------------------------
1111
How to get an api key
1212
-------------------------------------
13-
The Exceptionless client requires an api key to use the Exceptionless service.
14-
You can get your Exceptionless api key by logging into http://exceptionless.io
13+
The Exceptionless client requires an api key to use the Exceptionless service.
14+
You can get your Exceptionless api key by logging into http://exceptionless.io
1515
and viewing your project configuration page.
1616

1717
-------------------------------------
@@ -20,7 +20,7 @@ and viewing your project configuration page.
2020
By default the Exceptionless Client will report all available metadata including potential PII data.
2121
You can fine tune the collection of information via Data Exclusions or turning off collection completely.
2222

23-
Please visit the wiki https://github.com/exceptionless/Exceptionless.Net/wiki/Configuration#general-data-protection-regulation
23+
Please visit the documentation https://exceptionless.com/docs/clients/dotnet/private-information/
2424
for detailed information on how to configure the client to meet your requirements.
2525

2626
-------------------------------------

src/Platforms/Exceptionless.Mvc/readme.txt

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
-------------------------------------
22
Exceptionless Readme
33
-------------------------------------
4-
Exceptionless provides real-time error reporting for your apps. It organizes the
5-
gathered information into simple actionable data that will help your app become
4+
Exceptionless provides real-time error reporting for your apps. It organizes the
5+
gathered information into simple actionable data that will help your app become
66
exceptionless!
77

88
Learn more at http://exceptionless.io.
99

1010
-------------------------------------
1111
How to get an api key
1212
-------------------------------------
13-
The Exceptionless client requires an api key to use the Exceptionless service.
14-
You can get your Exceptionless api key by logging into http://exceptionless.io
13+
The Exceptionless client requires an api key to use the Exceptionless service.
14+
You can get your Exceptionless api key by logging into http://exceptionless.io
1515
and viewing your project configuration page.
1616

1717
-------------------------------------
@@ -20,26 +20,26 @@ and viewing your project configuration page.
2020
By default the Exceptionless Client will report all available metadata including potential PII data.
2121
You can fine tune the collection of information via Data Exclusions or turning off collection completely.
2222

23-
Please visit the wiki https://github.com/exceptionless/Exceptionless.Net/wiki/Configuration#general-data-protection-regulation
23+
Please visit the documentation https://exceptionless.com/docs/clients/dotnet/private-information/
2424
for detailed information on how to configure the client to meet your requirements.
2525

2626
-------------------------------------
2727
ASP.NET Integration
2828
-------------------------------------
29-
The Exceptionless.Mvc NuGet package will automatically configure your web.config.
30-
To start reporting unhandled exceptions in your application, add your Exceptionless
29+
The Exceptionless.Mvc NuGet package will automatically configure your web.config.
30+
To start reporting unhandled exceptions in your application, add your Exceptionless
3131
api key to the web.config Exceptionless section.
3232

3333
<exceptionless apiKey="API_KEY_HERE" />
3434

35-
Please visit the wiki https://github.com/exceptionless/Exceptionless.Net/wiki/Sending-Events
35+
Please visit the documentation https://exceptionless.com/docs/clients/dotnet/sending-events/
3636
for examples on sending events to Exceptionless.
3737

3838
-------------------------------------
3939
Manually reporting an exception
4040
-------------------------------------
41-
By default the Exceptionless Client will report all unhandled exceptions. You can
42-
also manually send an exception by importing the Exceptionless namespace and calling
41+
By default the Exceptionless Client will report all unhandled exceptions. You can
42+
also manually send an exception by importing the Exceptionless namespace and calling
4343
the following method.
4444

4545
exception.ToExceptionless().Submit()

src/Platforms/Exceptionless.NLog/readme.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
-------------------------------------
22
Exceptionless Readme
33
-------------------------------------
4-
Exceptionless provides real-time error reporting for your apps. It organizes the
5-
gathered information into simple actionable data that will help your app become
4+
Exceptionless provides real-time error reporting for your apps. It organizes the
5+
gathered information into simple actionable data that will help your app become
66
exceptionless!
77

88
Learn more at http://exceptionless.io.
99

1010
-------------------------------------
1111
How to get an api key
1212
-------------------------------------
13-
The Exceptionless client requires an api key to use the Exceptionless service.
14-
You can get your Exceptionless api key by logging into http://exceptionless.io
13+
The Exceptionless client requires an api key to use the Exceptionless service.
14+
You can get your Exceptionless api key by logging into http://exceptionless.io
1515
and viewing your project configuration page.
1616

1717
-------------------------------------
@@ -20,7 +20,7 @@ and viewing your project configuration page.
2020
By default the Exceptionless Client will report all available metadata including potential PII data.
2121
You can fine tune the collection of information via Data Exclusions or turning off collection completely.
2222

23-
Please visit the wiki https://github.com/exceptionless/Exceptionless.Net/wiki/Configuration#general-data-protection-regulation
23+
Please visit the documentation https://exceptionless.com/docs/clients/dotnet/private-information/
2424
for detailed information on how to configure the client to meet your requirements.
2525

2626
-------------------------------------
@@ -39,7 +39,7 @@ minimum log level that will be used until the client retrieves settings from the
3939
<extensions>
4040
    <add assembly="Exceptionless.NLog"/>
4141
  </extensions>
42-
42+
4343
  <targets async="true">
4444
    <target xsi:type="Exceptionless" name="exceptionless" apiKey="API_KEY_HERE">
4545
      <field name="host" layout="${machinename}" />
@@ -48,7 +48,7 @@ minimum log level that will be used until the client retrieves settings from the
4848
      <field name="process" layout="${processname}" />
4949
    </target>
5050
  </targets>
51-
51+
5252
  <rules>
5353
    <logger name="*" minlevel="Trace" writeTo="exceptionless" />
5454
  </rules>

src/Platforms/Exceptionless.Web/readme.txt

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
-------------------------------------
22
Exceptionless Readme
33
-------------------------------------
4-
Exceptionless provides real-time error reporting for your apps. It organizes the
5-
gathered information into simple actionable data that will help your app become
4+
Exceptionless provides real-time error reporting for your apps. It organizes the
5+
gathered information into simple actionable data that will help your app become
66
exceptionless!
77

88
Learn more at http://exceptionless.io.
99

1010
-------------------------------------
1111
How to get an api key
1212
-------------------------------------
13-
The Exceptionless client requires an api key to use the Exceptionless service.
14-
You can get your Exceptionless api key by logging into http://exceptionless.io
13+
The Exceptionless client requires an api key to use the Exceptionless service.
14+
You can get your Exceptionless api key by logging into http://exceptionless.io
1515
and viewing your project configuration page.
1616

1717
-------------------------------------
@@ -20,31 +20,31 @@ and viewing your project configuration page.
2020
By default the Exceptionless Client will report all available metadata including potential PII data.
2121
You can fine tune the collection of information via Data Exclusions or turning off collection completely.
2222

23-
Please visit the wiki https://github.com/exceptionless/Exceptionless.Net/wiki/Configuration#general-data-protection-regulation
23+
Please visit the documentation https://exceptionless.com/docs/clients/dotnet/private-information/
2424
for detailed information on how to configure the client to meet your requirements.
2525

2626
-------------------------------------
2727
ASP.NET Integration
2828
-------------------------------------
2929
The Exceptionless.Web NuGet package will automatically configure your web.config.
30-
To start reporting unhandled exceptions in your application, add your Exceptionless
30+
To start reporting unhandled exceptions in your application, add your Exceptionless
3131
api key to the web.config Exceptionless section.
3232

3333
<exceptionless apiKey="API_KEY_HERE" />
3434

35-
You can also add support for WCF by adding the ExceptionlessWcfHandleError
35+
You can also add support for WCF by adding the ExceptionlessWcfHandleError
3636
attribute to your WCF classes.
3737

3838
[ExceptionlessWcfHandleError]
3939

40-
Please visit the wiki https://github.com/exceptionless/Exceptionless.Net/wiki/Sending-Events
40+
Please visit the documentation https://exceptionless.com/docs/clients/dotnet/sending-events/
4141
for examples on sending events to Exceptionless.
4242

4343
-------------------------------------
4444
Manually reporting an exception
4545
-------------------------------------
46-
By default the Exceptionless Client will report all unhandled exceptions. You can
47-
also manually send an exception by importing the Exceptionless namespace and calling
46+
By default the Exceptionless Client will report all unhandled exceptions. You can
47+
also manually send an exception by importing the Exceptionless namespace and calling
4848
the following method.
4949

5050
exception.ToExceptionless().Submit()

src/Platforms/Exceptionless.WebApi/readme.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ and viewing your project configuration page.
2020
By default the Exceptionless Client will report all available metadata including potential PII data.
2121
You can fine tune the collection of information via Data Exclusions or turning off collection completely.
2222

23-
Please visit the wiki https://github.com/exceptionless/Exceptionless.Net/wiki/Configuration#general-data-protection-regulation
23+
Please visit the documentation https://exceptionless.com/docs/clients/dotnet/private-information/
2424
for detailed information on how to configure the client to meet your requirements.
2525

2626
-------------------------------------
@@ -43,7 +43,7 @@ If you are hosting Web API inside of ASP.NET, you would register Exceptionless l
4343

4444
Exceptionless.ExceptionlessClient.Default.RegisterWebApi(GlobalConfiguration.Configuration)
4545

46-
Please visit the wiki https://github.com/exceptionless/Exceptionless.Net/wiki/Sending-Events
46+
Please visit the documentation https://exceptionless.com/docs/clients/dotnet/sending-events/
4747
for examples on sending events to Exceptionless.
4848

4949
-------------------------------------

src/Platforms/Exceptionless.Windows/readme.txt

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
-------------------------------------
22
Exceptionless Readme
33
-------------------------------------
4-
Exceptionless provides real-time error reporting for your apps. It organizes the
5-
gathered information into simple actionable data that will help your app become
4+
Exceptionless provides real-time error reporting for your apps. It organizes the
5+
gathered information into simple actionable data that will help your app become
66
exceptionless!
77

88
Learn more at http://exceptionless.io.
99

1010
-------------------------------------
1111
How to get an api key
1212
-------------------------------------
13-
The Exceptionless client requires an api key to use the Exceptionless service.
14-
You can get your Exceptionless api key by logging into http://exceptionless.io
13+
The Exceptionless client requires an api key to use the Exceptionless service.
14+
You can get your Exceptionless api key by logging into http://exceptionless.io
1515
and viewing your project configuration page.
1616

1717
-------------------------------------
@@ -20,20 +20,20 @@ and viewing your project configuration page.
2020
By default the Exceptionless Client will report all available metadata including potential PII data.
2121
You can fine tune the collection of information via Data Exclusions or turning off collection completely.
2222

23-
Please visit the wiki https://github.com/exceptionless/Exceptionless.Net/wiki/Configuration#general-data-protection-regulation
23+
Please visit the documentation https://exceptionless.com/docs/clients/dotnet/private-information/
2424
for detailed information on how to configure the client to meet your requirements.
2525

2626
-------------------------------------
2727
Windows Integration
2828
-------------------------------------
29-
If your project has an app.config file, the Exceptionless.Windows NuGet package
29+
If your project has an app.config file, the Exceptionless.Windows NuGet package
3030
will automatically configure your app.config with the required config sections.
31-
All you need to do is open the app.config and add your Exceptionless api key to
31+
All you need to do is open the app.config and add your Exceptionless api key to
3232
the app.config Exceptionless section.
3333

3434
<exceptionless apiKey="API_KEY_HERE" />
3535

36-
If your project does not have an app.config file, then please add the following
36+
If your project does not have an app.config file, then please add the following
3737
assembly attribute and your own Exceptionless api key to your project (E.G., AssemblyInfo class).
3838

3939
[assembly: Exceptionless.Configuration.Exceptionless("API_KEY_HERE")]
@@ -43,14 +43,14 @@ of code to start reporting unhandled exceptions.
4343

4444
Exceptionless.ExceptionlessClient.Default.Register()
4545

46-
Please visit the wiki https://github.com/exceptionless/Exceptionless.Net/wiki/Sending-Events
46+
Please visit the documentation https://exceptionless.com/docs/clients/dotnet/sending-events/
4747
for examples on sending events to Exceptionless.
4848

4949
-------------------------------------
5050
Manually reporting an exception
5151
-------------------------------------
52-
By default the Exceptionless Client will report all unhandled exceptions. You can
53-
also manually send an exception by importing the Exceptionless namespace and calling
52+
By default the Exceptionless Client will report all unhandled exceptions. You can
53+
also manually send an exception by importing the Exceptionless namespace and calling
5454
the following method.
5555

5656
exception.ToExceptionless().Submit()

0 commit comments

Comments
 (0)