With this .net package you will be able to create a bug report with Slack application, inspect and track any issues your users run into while running your app.
It's really simple, send an error to be tracked as a handled exception using the function SendToSlack:
try
{
//your code here
}
catch (System.Exception ex)
{
ex.SendToSlack();
}
Results in:
We have a great wiki article explaining exactly that or follow the steps:
1 - Prepare your Slack channel to receive exceptions
2 - Prepare your application to send exceptions
3 - Customizations
3.1 - Add extra fields
3.2 - Add actions
4 - Execute tests on this project