forked from Valkirie/HandheldCompanion
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Sentry.io Integration (Valkirie#309)
* add sentry integration * Update App.xaml.cs * update sentry integration remove bat file, put the command inside csproj add SentryConfig.cs to git enable Sentry debug only on debug build * update prebuild and postbuild command * code style * Use default %localappdata%\HandheldCompanion folder * Push all crash Exception(s) to Sentry --------- Co-authored-by: Lesueur Benjamin <[email protected]>
- Loading branch information
Showing
4 changed files
with
98 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,4 @@ install/ | |
*.user | ||
*Backup.csproj | ||
*tmp.csproj | ||
.idea/ | ||
.idea/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
namespace HandheldCompanion; | ||
|
||
public static class SentryConfig | ||
{ | ||
// Register at Sentry.io and paste the DSN url here | ||
public static string DSN_URL = ""; | ||
} |