From 15045aed993b2d9026b7daddac64ec5ed67a956e Mon Sep 17 00:00:00 2001 From: Ben Adams Date: Mon, 10 May 2021 02:15:09 +0100 Subject: [PATCH] Remove `Configuration` from `app.UseExceptionless()` instructions as is obselete overload --- content/docs/clients/dotnet/guides/web-server-example.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/clients/dotnet/guides/web-server-example.md b/content/docs/clients/dotnet/guides/web-server-example.md index abf0cc67..db8a59c2 100644 --- a/content/docs/clients/dotnet/guides/web-server-example.md +++ b/content/docs/clients/dotnet/guides/web-server-example.md @@ -38,7 +38,7 @@ By adding this helper method, Exceptionless is able to gather more information a Then in your `Configure` method, you would add: ```csharp -app.UseExceptionless(Configuration); +app.UseExceptionless(); ``` To get access to your Exceptionless configuration (which we'll explain next), you'll need to do create a `builder` variable in your `Startup` method and build the configuration like this: