Skip to content

Commit

Permalink
(#242) Update CCM .Net Depedency Versions and Pins >> - Update dotnet…
Browse files Browse the repository at this point in the history
…-aspnetcoremdoule-v2 to V16.0.24052

>> - Update dotnet-6.0-runtime to V6.0.28
>> - Update dotnet-6.0-aspnetruntime to V6.0.28
>> - Update pin mesage for dotnet-aspnetcoremdoule-v2 to reflect current CCM version
>> - Add pin and pin-reason for dotnet-6.0-runtime package
>> - Add pin and pin-reason for dotnet-6.0-aspnetruntime package

Signed-off-by: Ryan Richter <[email protected]>
  • Loading branch information
ryanrichter94 committed Mar 21, 2024
1 parent 4cf5046 commit 7a55580
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Start-C4bCcmSetup.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -104,13 +104,13 @@ process {
$chocoArgs = @('install', 'IIS-ApplicationInit', "--source='windowsfeatures'" ,'--no-progress', '-y')
& choco @chocoArgs

$chocoArgs = @('install', 'dotnet-aspnetcoremodule-v2', "--version='16.0.23237'", "--source='$Ccr'", '--no-progress', '--pin', '--pin-reason="Latest version compatible with chocolatey-management-web V 0.11.0"', '-y')
$chocoArgs = @('install', 'dotnet-aspnetcoremodule-v2', "--version='16.0.24052'", "--source='$Ccr'", '--no-progress', '--pin', '--pin-reason="Latest version compatible with chocolatey-management-web V 0.12.0"', '-y')
& choco @chocoArgs

$chocoArgs = @('install', 'dotnet-6.0-runtime', '--version=6.0.22', "--source='$Ccr'", '--no-progress', '-y')
$chocoArgs = @('install', 'dotnet-6.0-runtime', '--version=6.0.28', "--source='$Ccr'", '--no-progress', '--pin', '--pin-reason="Latest version compatible with chocolatey-management-database V 0.12.0"', '-y')
& choco @chocoArgs

$chocoArgs = @('install', 'dotnet-6.0-aspnetruntime', '--version=6.0.22', "--source='$Ccr'", '--no-progress', '-y')
$chocoArgs = @('install', 'dotnet-6.0-aspnetruntime', '--version=6.0.28', "--source='$Ccr'", '--no-progress', '--pin', '--pin-reason="Latest version compatible with chocolatey-management-database V 0.12.0"', '-y')
& choco @chocoArgs

# Install CCM DB package using Local SQL Express
Expand Down

0 comments on commit 7a55580

Please sign in to comment.