diff --git a/Directory.Build.props b/Directory.Build.props
index 5fb86b1539..3408d8c274 100644
--- a/Directory.Build.props
+++ b/Directory.Build.props
@@ -100,7 +100,7 @@
- 2.58.2
+ 3.2.0
$(MSBuildThisFileDirectory)tools\sentry-cli\$(SentryCLIVersion)\
diff --git a/integration-test/cli.Tests.ps1 b/integration-test/cli.Tests.ps1
index 927d771293..d44e2ed8f8 100644
--- a/integration-test/cli.Tests.ps1
+++ b/integration-test/cli.Tests.ps1
@@ -149,13 +149,13 @@ Describe 'MAUI ()' -ForEach @(
$result = RunDotnetWithSentryCLI 'build' 'maui-app' $True $True "$framework-android$androidTpv"
Write-Host "UploadedDebugFiles: $($result.UploadedDebugFiles() | Out-String)"
$result.UploadedDebugFiles() | Sort-Object -Unique | Should -Be @(
+ '/proguard/a5fb4278-bcb5-4464-8585-d811dc3c3959.txt',
'libsentry-android.so',
'libsentry.so',
'libsentrysupplemental.so',
'libxamarin-app.so',
'maui-app.pdb'
)
- $result.ScriptOutput | Should -AnyElementMatch 'Uploaded a total of 1 new mapping files'
$result.ScriptOutput | Should -AnyElementMatch "Found 23 debug information files \(1 with embedded sources\)"
}
diff --git a/integration-test/common.ps1 b/integration-test/common.ps1
index 36e1b9981c..d09721ce15 100644
--- a/integration-test/common.ps1
+++ b/integration-test/common.ps1
@@ -134,6 +134,7 @@ BeforeAll {
/p:SentryProject=project `
/p:SentryUrl=$url `
/p:SentryAuthToken=dummy `
+ /p:SentryProGuardUUID=a5fb4278-bcb5-4464-8585-d811dc3c3959 `
| ForEach-Object {
if ($_ -match "^Time Elapsed ")
{
diff --git a/src/Sentry/Sentry.csproj b/src/Sentry/Sentry.csproj
index a2b75db0ae..45af316844 100644
--- a/src/Sentry/Sentry.csproj
+++ b/src/Sentry/Sentry.csproj
@@ -107,13 +107,13 @@
<_OSArchitecture>$([System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture)
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/src/Sentry/buildTransitive/Sentry.targets b/src/Sentry/buildTransitive/Sentry.targets
index 86910e9cc7..168036eec3 100644
--- a/src/Sentry/buildTransitive/Sentry.targets
+++ b/src/Sentry/buildTransitive/Sentry.targets
@@ -110,7 +110,6 @@
The defaults can be set either via config file, or environment variables, per: https://docs.sentry.io/product/cli/configuration/
-->
- $(SentryCLIBaseOptions) --api-key $(SentryApiKey)
$(SentryCLIBaseOptions) --auth-token $(SentryAuthToken)
$(SentryCLIBaseOptions) --url $(SentryUrl)
"$(SentryCLI)"