You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// @property (assign, nonatomic) BOOL enableProfiling __attribute__((deprecated("Use profilesSampleRate or profilesSampler instead. This property will be removed in a future version of the SDK")));
Copy file name to clipboardExpand all lines: src/Sentry/Platforms/iOS/Bindings/README.md
+8-1Lines changed: 8 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,11 @@
1
-
The files in this folder aren't "normal" C# files, but rather they are [Xamarin Objective-C bindings][1]. They were originally generated with [Objective Sharpie][2]. However, they are not purely auto-generated. Several modifications have been made:
1
+
The files in this folder aren't "normal" C# files, but rather they are [Xamarin Objective-C bindings][1].
2
+
They were originally generated with [Objective Sharpie][2], using the following command:
3
+
4
+
```
5
+
sharpie bind <path to sentry-cocoa sdk root>/Sentry.xcodeproj -sdk iphoneos
6
+
```
7
+
8
+
However, the files are not purely auto-generated. Several modifications have been made:
2
9
3
10
- Everything has been made internal, either via the `internal` keyword, or the `[Internal]` binding attribute.
4
11
- Named delegates have been replaced with `Func<T>` or `Action<T>` to work around https://github.com/xamarin/xamarin-macios/issues/15299
0 commit comments