Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## Unreleased

### Fixes

- Fail when building Blazor WASM with Profiling. We don't support profiling in Blazor WebAssembly projects. ([#4512](https://github.com/getsentry/sentry-dotnet/pull/4512))

## 5.15.0

### Features
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,7 @@
Condition="'$(TargetPlatformIdentifier)' == 'android'" />
<Error Text="Package Sentry.Profiling is not supported on platform '$(TargetPlatformIdentifier)'. The profiler is already part of the main Sentry package."
Condition="'$(TargetPlatformIdentifier)' == 'ios' or '$(TargetPlatformIdentifier)' == 'maccatalyst'" />
<Error Text="Package Sentry.Profiling is not supported with Blazor WebAssembly. Please remove Sentry.Profiling from your project."
Condition="'$(UsingMicrosoftNETSdkBlazorWebAssembly)' == 'true'" />
</Target>
</Project>
Loading