Skip to content

Commit

Permalink
Update installer dependency versions (#243)
Browse files Browse the repository at this point in the history
Update Azure CLI and .NET dependencies to the latest versions.
  • Loading branch information
pankopon authored Mar 14, 2024
1 parent 933810f commit 28ddd27
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion scripts/Azure-AI-CLI-Setup.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,17 @@
supported here. Thus need to check for each possible 8.x SDK folder and
if none is found then install the configured (highest) 8.x version.
-->
<util:DirectorySearch Id="DotNet80202" Path="[ProgramFiles64Folder]dotnet\sdk\8.0.202" Result="exists" Variable="NET_80202"/>
<util:DirectorySearch Id="DotNet80201" Path="[ProgramFiles64Folder]dotnet\sdk\8.0.201" Result="exists" Variable="NET_80201"/>
<util:DirectorySearch Id="DotNet80200" Path="[ProgramFiles64Folder]dotnet\sdk\8.0.200" Result="exists" Variable="NET_80200"/>
<util:DirectorySearch Id="DotNet80103" Path="[ProgramFiles64Folder]dotnet\sdk\8.0.103" Result="exists" Variable="NET_80103"/>
<util:DirectorySearch Id="DotNet80102" Path="[ProgramFiles64Folder]dotnet\sdk\8.0.102" Result="exists" Variable="NET_80102"/>
<util:DirectorySearch Id="DotNet80101" Path="[ProgramFiles64Folder]dotnet\sdk\8.0.101" Result="exists" Variable="NET_80101"/>
<util:DirectorySearch Id="DotNet80100" Path="[ProgramFiles64Folder]dotnet\sdk\8.0.100" Result="exists" Variable="NET_80100"/>

<PackageGroup Id="DotNetSdk">
<ExePackage Compressed="no"
DetectCondition="NET_80201 OR NET_80200 OR NET_80102 OR NET_80101 OR NET_80100"
DetectCondition="NET_80202 OR NET_80201 OR NET_80200 OR NET_80103 OR NET_80102 OR NET_80101 OR NET_80100"
DownloadUrl="$(var.dotNetUrl)"
InstallCommand="/quiet /norestart"
PerMachine="yes"
Expand Down
4 changes: 2 additions & 2 deletions scripts/WixBuildInstaller.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ set INSTALLER_FILE=Setup-%TARGET_PLATFORM%.exe
set PACKAGE_URL=https://csspeechstorage.blob.core.windows.net/drop/private/ai/Azure.AI.CLI.%PACKAGE_VERSION%.nupkg

REM Dependencies (note: do NOT use redirecting URLs like aka.ms)
set AZURE_CLI_VERSION=2.57.0
set AZURE_CLI_VERSION=2.58.0
set AZURE_CLI_INSTALLER=azure-cli-%AZURE_CLI_VERSION%-%TARGET_PLATFORM%.msi
set AZURE_CLI_URL=https://azcliprod.blob.core.windows.net/msi/%AZURE_CLI_INSTALLER%
set DOTNET_VERSION=8.0.201
set DOTNET_VERSION=8.0.202
set DOTNET_INSTALLER=dotnet-sdk-%DOTNET_VERSION%-win-%TARGET_PLATFORM%.exe
set DOTNET_URL=https://dotnetcli.azureedge.net/dotnet/Sdk/%DOTNET_VERSION%/%DOTNET_INSTALLER%
set VCRT_VERSION=14.38.33135
Expand Down

0 comments on commit 28ddd27

Please sign in to comment.