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
<!-- Sends symbols to Sentry, enabling symbolication of stack traces. -->
104
113
<SentryUploadSymbols>true</SentryUploadSymbols>
105
114
@@ -155,6 +164,30 @@ The URL to your Sentry server. Required only if self-hosting Sentry. (Do not use
155
164
156
165
There are a few additional properties available to control the Sentry CLI:
157
166
167
+
<ConfigKey name="SentryCreateRelease">
168
+
169
+
Enable to automatically create release when building your application. Defaults to `false` (disabled).
170
+
171
+
Sentry will try to determine the release version automatically by checking the following sources in order:
172
+
1. The `SENTRY_RELEASE` environment variable, if set
173
+
2. The `AssemblyInformationalVersionAttribute`, if defined
174
+
3. The version of the entry assembly for the project
175
+
4. The version suggested by running `sentry-cli releases propose-version`
176
+
177
+
</ConfigKey>
178
+
179
+
<ConfigKey name="SentrySetCommits">
180
+
181
+
Enable `SentrySetCommits` to automatically [associate commits with the release](https://docs.sentry.io/cli/releases/#commit-integration).
182
+
183
+
</ConfigKey>
184
+
185
+
<ConfigKey name="SentrySetCommitOptions">
186
+
187
+
By default, when `SentrySetCommits` is enabled, the SDK will set commits with the `--auto` flag. The optional `SentrySetCommitOptions` property allows you to override this to provide whatever flags you want to the `set-commits` CLI command.
188
+
189
+
</ConfigKey>
190
+
158
191
<ConfigKey name="SentryUploadSymbols">
159
192
160
193
Controls uploading symbols to Sentry during the build. Defaults to `false` (disabled).
0 commit comments