Matt Johnson-Pint
Matt Johnson-Pint
See https://github.com/getsentry/sentry-dotnet/blob/3e77b2d9d0c2c246f7fb309de2571eccb6c82e0d/src/Sentry.AspNetCore/SamplingExtensions.cs
I see. Yeah - no need to split the docs up. Just put them both in the same example with a comment such as `// assuming ASP.NET Core` on one...
FYI, I have a slightly different issue with the same symptom, and was able to work around it. See https://github.com/dotnet/maui/issues/7272#issuecomment-1136517167
Note: Also occurs for Mac Catalyst, but not for Android.
FWIW, I agree with this request, and the name should probably be `CURRENT_TZOFFSET`. Its value should derive from [`Date.getTimezoneOffset`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/getTimezoneOffset) and then be formatted accordingly, as seen as part of the...
I'm on an M1 MacBook Pro, and I too get this issue, but only when using the x64 version of the SDK. The arm64 version works fine. Funny thing is,...
In case it helps, I checked on my mac (under `Applications` - `Utilities` - `System Information` - `Software` - `Installations`) and the only updates I see installed in the time...
Looks like a slightly more palatable workaround is to disable code signing of the app host without disabling creation of it. This is controlled by `_EnableMacOSCodeSign` here: https://github.com/dotnet/sdk/blob/8d1e1e4f39afc2e8338933b9eb014d6a30bc7282/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.Sdk.targets#L549-L550 So either...
I'm not exactly sure how, but it would appear that even with `_EnableMacOSCodeSign` disabled, the app host *is* being signed when build with the x64 SDK. Thus the error message...
Captured a binlog, but it doesn't show anything other than `CreateAppHost` being called, with the code signing flag passed through correctly. With `_EnableMacOSCodeSign` set false: Without `_EnableMacOSCodeSign` set false: Nothing...