Skip to content

Commit

Permalink
Fix detection of .NET Framework 4.8.1 (#1885)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattjohnsonpint authored Aug 31, 2022
1 parent 8c54be0 commit d8b2cbb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
- Allow some mobile options to be modified from defaults ([#1857](https://github.com/getsentry/sentry-dotnet/pull/1857))
- Fix environment name casing issue ([#1861](https://github.com/getsentry/sentry-dotnet/pull/1861))
- Null check HttpContext in SystemWebVersionLocator ([#1881](https://github.com/getsentry/sentry-dotnet/pull/1881))
- Fix detection of .NET Framework 4.8.1 ([#1885](https://github.com/getsentry/sentry-dotnet/pull/1885))

## 3.20.1

Expand Down
4 changes: 3 additions & 1 deletion src/Sentry/PlatformAbstractions/FrameworkInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ public static partial class FrameworkInfo
{528049, "4.8"},
{528209, "4.8"},
{528372, "4.8"},
{528449, "4.8"}
{528449, "4.8"},
{533320, "4.8.1"},
{533325, "4.8.1"}
};
}
}

0 comments on commit d8b2cbb

Please sign in to comment.