Skip to content
/ NBug Public
forked from lelmarir/NBug

NBug is a .NET library created to automate the bug reporting process. It automatically creates and sends: * Bug reports, * Crash reports with minidump, * Error/exception reports with stack trace + ext. info. It can also be set up as a user feedback system (i.e. feature requests).

License

Notifications You must be signed in to change notification settings

bommerio/NBug

This branch is 4 commits ahead of, 17 commits behind lelmarir/NBug:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

16326e8 · Jan 20, 2024
Jul 19, 2013
Jul 19, 2013
Jul 19, 2013
Nov 5, 2015
Dec 17, 2015
Nov 5, 2015
Dec 22, 2023
Nov 6, 2015
Nov 5, 2015
Nov 6, 2015
Jan 20, 2024
Jul 19, 2013
Nov 5, 2015
Jan 14, 2016
Jul 19, 2013
May 4, 2012

Repository files navigation

NBug

Build Status

NBug is a .NET library created to automate the bug reporting process. It automatically creates and sends:

  • Bug reports,
  • Crash reports with minidump,
  • Error/exception reports with stack trace + ext. info. It can also be set up as a user feedback system (i.e. feature requests).

Quickstart

Read the quickstart here: http://soygul.com/nbug/

In a typical scenario all you need is to add the NuGet package (or compile and use the NBug.dll directly, which is always more up-to-date) and add following to your application's Program.cs file (assuming it is a console app):

// Uncomment the following after testing to see that NBug is working as configured
// NBug.Settings.ReleaseMode = true;

// NBug config
NBug.Settings.Destination1 = "Type=Mail;From=me@mycompany.com;To=bugtracker@mycompany.com;SmtpServer=smtp.mycompany.com;";

// Attach exception handlers after all configuration is done
AppDomain.CurrentDomain.UnhandledException += NBug.Handler.UnhandledException;

After this, any unhandled exception will be formatted and sent to the configured e-mail address, after the app is restarted by the user.

Questions

You can post your question on StackOverflow with NBug tag: http://stackoverflow.com/questions/tagged/nbug

Install-Package NBug

CodePlex Home

Old (up to v1.1.1 release) project source is hosted at CodePlex, where you can find more information about the project: http://nbug.codeplex.com/

About

NBug is a .NET library created to automate the bug reporting process. It automatically creates and sends: * Bug reports, * Crash reports with minidump, * Error/exception reports with stack trace + ext. info. It can also be set up as a user feedback system (i.e. feature requests).

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 100.0%