Skip to content

Commit a747bcb

Browse files
chore: update scripts/update-cli.ps1 to 3.3.0 (#4973)
Co-authored-by: GitHub <noreply@github.com>
1 parent b1d065e commit a747bcb

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100

101101
<!-- Set the version and local path for Sentry CLI (downloaded in the restore phase of Sentry.csproj) -->
102102
<PropertyGroup Condition="'$(SolutionName)' != 'Sentry.Unity'">
103-
<SentryCLIVersion>3.2.2</SentryCLIVersion>
103+
<SentryCLIVersion>3.3.0</SentryCLIVersion>
104104
<SentryCLIDirectory>$(MSBuildThisFileDirectory)tools\sentry-cli\$(SentryCLIVersion)\</SentryCLIDirectory>
105105
</PropertyGroup>
106106

src/Sentry/Sentry.csproj

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -107,13 +107,13 @@
107107
<_OSArchitecture>$([System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture)</_OSArchitecture>
108108
</PropertyGroup>
109109
<ItemGroup>
110-
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('OSX')) And $(_OSArchitecture) == 'Arm64')" Include="sentry-cli-Darwin-arm64" FileHash="5c9fc7f3157d08bc36c9e44d199602e11da5c3135f217068da2d7c3390f0af22" />
111-
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('OSX')) And $(_OSArchitecture) == 'X64')" Include="sentry-cli-Darwin-x86_64" FileHash="fed5ac43d7daa7db665ea74aee1c4ba35da63d745243cf32e6c33762230aab7c" />
112-
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Linux')) And $(_OSArchitecture) == 'Arm64')" Include="sentry-cli-Linux-aarch64" FileHash="06d6498e48eb7c39dbf848a341689eb16ef646eace29d39fd0e4136c637b36a1" />
113-
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Linux')) And $(_OSArchitecture) == 'X86')" Include="sentry-cli-Linux-i686" FileHash="895c8b5c4e15f25070fcd2fc0ab88b8a90c575a41e45bbbd1613d97604b2360f" />
114-
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Linux')) And $(_OSArchitecture) == 'X64')" Include="sentry-cli-Linux-x86_64" FileHash="ec5987dc83ce601fb99bbc43abbc5623832ea507c13ee13f9eab62bf77d3e55e" />
115-
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Windows')) And $(_OSArchitecture) == 'X86')" Include="sentry-cli-Windows-i686.exe" FileHash="d3495f65a3705109402a9eebd5a6d84e2f2bc1184f1b4d76be06d67f428ca711" />
116-
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Windows')) And $(_OSArchitecture) != 'X86')" Include="sentry-cli-Windows-x86_64.exe" FileHash="698554dad22de7fc4f9e777f59d99ec8430d2545e57708536d722e9ba2c975d9" />
110+
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('OSX')) And $(_OSArchitecture) == 'Arm64')" Include="sentry-cli-Darwin-arm64" FileHash="f8611ffd31192a53c33dde0345009bab418184856bc0cfa76abfcfd902521653" />
111+
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('OSX')) And $(_OSArchitecture) == 'X64')" Include="sentry-cli-Darwin-x86_64" FileHash="f45745c055ecb6c6cbbeba935f49e29120bd2a5ace19ad8e6d6d4ffd041c314f" />
112+
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Linux')) And $(_OSArchitecture) == 'Arm64')" Include="sentry-cli-Linux-aarch64" FileHash="66ac0b802e82fcef7610dc29559f18efc1eef67bf9610a19705a844ed0697dd4" />
113+
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Linux')) And $(_OSArchitecture) == 'X86')" Include="sentry-cli-Linux-i686" FileHash="37dd336b6545e557d1e7bcba46f53c37f96108036420578042434d396d67417a" />
114+
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Linux')) And $(_OSArchitecture) == 'X64')" Include="sentry-cli-Linux-x86_64" FileHash="5563b71cc28cd8b1e2cd1037f8e377083992ec112c9bf1ff0efd26dfe3b1e67e" />
115+
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Windows')) And $(_OSArchitecture) == 'X86')" Include="sentry-cli-Windows-i686.exe" FileHash="94bb198bf4cae41fc77d0535652869b5259b54a1608075e76bc032de15e222e1" />
116+
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Windows')) And $(_OSArchitecture) != 'X86')" Include="sentry-cli-Windows-x86_64.exe" FileHash="25b938d377ef946ccec89d9b03c4f49ef6970c717404839d44c683313ec71c88" />
117117
</ItemGroup>
118118

119119
<!-- Download the files -->

0 commit comments

Comments
 (0)