Skip to content

Commit e85e6f6

Browse files
chore: update scripts/update-cli.ps1 to 2.36.4 (#3642)
1 parent 5812a4c commit e85e6f6

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
- Bump Native SDK from v0.7.9 to v0.7.10 ([#3623](https://github.com/getsentry/sentry-dotnet/pull/3623))
2222
- [changelog](https://github.com/getsentry/sentry-native/blob/master/CHANGELOG.md#0710)
2323
- [diff](https://github.com/getsentry/sentry-native/compare/0.7.9...0.7.10)
24-
- Bump CLI from v2.36.1 to v2.36.3 ([#3624](https://github.com/getsentry/sentry-dotnet/pull/3624), [#3634](https://github.com/getsentry/sentry-dotnet/pull/3634))
25-
- [changelog](https://github.com/getsentry/sentry-cli/blob/master/CHANGELOG.md#2362)
26-
- [diff](https://github.com/getsentry/sentry-cli/compare/2.36.1...2.36.3)
24+
- Bump CLI from v2.36.1 to v2.36.4 ([#3624](https://github.com/getsentry/sentry-dotnet/pull/3624), [#3634](https://github.com/getsentry/sentry-dotnet/pull/3634), [#3642](https://github.com/getsentry/sentry-dotnet/pull/3642))
25+
- [changelog](https://github.com/getsentry/sentry-cli/blob/master/CHANGELOG.md#2364)
26+
- [diff](https://github.com/getsentry/sentry-cli/compare/2.36.1...2.36.4)
2727

2828
## 4.11.0
2929

Directory.Build.props

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

7171
<!-- Set the version and local path for Sentry CLI (downloaded in the restore phase of Sentry.csproj) -->
7272
<PropertyGroup Condition="'$(SolutionName)' != 'Sentry.Unity'">
73-
<SentryCLIVersion>2.36.3</SentryCLIVersion>
73+
<SentryCLIVersion>2.36.4</SentryCLIVersion>
7474
<SentryCLIDirectory>$(MSBuildThisFileDirectory)tools\sentry-cli\$(SentryCLIVersion)\</SentryCLIDirectory>
7575
</PropertyGroup>
7676

src/Sentry/Sentry.csproj

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -116,13 +116,13 @@
116116
<_OSArchitecture>$([System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture)</_OSArchitecture>
117117
</PropertyGroup>
118118
<ItemGroup>
119-
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('OSX')) And $(_OSArchitecture) == 'Arm64')" Include="sentry-cli-Darwin-arm64" FileHash="82a1478f623e7f5c54300d2f13c560841048a020591279bdf7469ee3647545af" />
120-
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('OSX')) And $(_OSArchitecture) == 'X64')" Include="sentry-cli-Darwin-x86_64" FileHash="48a999bd17d4888a6b41cf5062c9381907c6a8226d0f6c4b0b3dcd79247e1094" />
121-
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Linux')) And $(_OSArchitecture) == 'Arm64')" Include="sentry-cli-Linux-aarch64" FileHash="fbafab83e3f1b5dc9ef733524957a4c9fb3d5c607f2be0b11e9f031e36909cce" />
122-
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Linux')) And $(_OSArchitecture) == 'X86')" Include="sentry-cli-Linux-i686" FileHash="11cbd514da50e9e030361c3a032ae2ea50aa1b8279be6b4d53d0afbf82d84ea5" />
123-
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Linux')) And $(_OSArchitecture) == 'X64')" Include="sentry-cli-Linux-x86_64" FileHash="f1cb3f3936230c20ae4ab20802614fa208063d6239f7d29e06abb0917a934118" />
124-
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Windows')) And $(_OSArchitecture) == 'X86')" Include="sentry-cli-Windows-i686.exe" FileHash="fc0543c9e3251314f8ccd816e9fe834b8cd1c999877dce5db8acf722366dd8c7" />
125-
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Windows')) And $(_OSArchitecture) != 'X86')" Include="sentry-cli-Windows-x86_64.exe" FileHash="49bd3c20b693a4871e3340ec526cb826e716ee003aa2edea2fc11dc7aa4f58f2" />
119+
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('OSX')) And $(_OSArchitecture) == 'Arm64')" Include="sentry-cli-Darwin-arm64" FileHash="6fa8b1d0e09f359566f5a5a3fe04ebd2cbb0d5da851be12b326594152d7d62af" />
120+
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('OSX')) And $(_OSArchitecture) == 'X64')" Include="sentry-cli-Darwin-x86_64" FileHash="80ca3600fe02601f0f8e366dffab1bace9afa933f61e65763a1b92666ca7b522" />
121+
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Linux')) And $(_OSArchitecture) == 'Arm64')" Include="sentry-cli-Linux-aarch64" FileHash="a638db3d6d7356c4ad5556d288d8a13d57530a05bc73bc5f1b3e0edc46284967" />
122+
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Linux')) And $(_OSArchitecture) == 'X86')" Include="sentry-cli-Linux-i686" FileHash="2c8cc53405c8019c22222524f2c44ec13cf3bc194ed38db288a91c3084a6c130" />
123+
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Linux')) And $(_OSArchitecture) == 'X64')" Include="sentry-cli-Linux-x86_64" FileHash="22ba24c7019fc7f2ffc72307fa6a0ff5981f4254184f1e99777abc81aa4f8dde" />
124+
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Windows')) And $(_OSArchitecture) == 'X86')" Include="sentry-cli-Windows-i686.exe" FileHash="ac20d7cbeae76fd60f07158d9ccd257abb88bb411282e844ed16c839f08eec12" />
125+
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Windows')) And $(_OSArchitecture) != 'X86')" Include="sentry-cli-Windows-x86_64.exe" FileHash="bd5119de5f4f8e77772767f0ab85a9650aa26006d8175f6700be3c9ad9b815b3" />
126126
</ItemGroup>
127127

128128
<!-- Download the files -->

0 commit comments

Comments
 (0)