Skip to content

Latest commit

 

History

History

aspnetcore8-mvc

.NET 8 ASP.NET Core (MVC) Example Application

This example shows how you can use the BugSnag .NET notifier in a basic ASP.NET Core MVC app.

Try this out with your own BugSnag account by replacing the placeholder API key with your own. You'll be able to see how the errors are reported in the dashboard, how breadcrumbs are left, how errors are grouped and how they relate to the original source.

Requirements

  • Visual Studio 2022
  • .NET 8.0 SDK

Setup

The example project is set up to use Bugsnag packages built locally from source. Or, alternatively, you can use Visual Studio to install the latest version from nuget.org.

  1. Clone the repo and run the build script from the repository root to build and generate the local packages:

    git clone https://github.com/bugsnag/bugsnag-dotnet.git
    cd bugsnag-dotnet
    .\build.ps1 --Target Pack
  2. cd into this directory:

    cd examples/aspnetcore8-mvc
  3. In the Program.cs file Replace the API_KEY placeholder with your own Bugsnag API key.

  4. In the aspnetcore8-mvc.csproj file, make sure Bugsnag.AspNet.Core is included in your NuGet packages.

  5. To report non-fatal exceptions, in the HomeController.cs file, make sure to declare the IClient dependency where you want the Bugsnag client injected into your classes.

  6. Build the application:

    dotnet build
  7. Run the application:

    dotnet run
  8. View the example page which will (most likely) be served at: http://localhost:5000