From 7a5558014ad87053ce11265352047377b9395ecb Mon Sep 17 00:00:00 2001 From: Ryan Richter Date: Thu, 21 Mar 2024 17:14:36 -0400 Subject: [PATCH] (#242) Update CCM .Net Depedency Versions and Pins >> - Update dotnet-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 --- Start-C4bCcmSetup.ps1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Start-C4bCcmSetup.ps1 b/Start-C4bCcmSetup.ps1 index 730d76a..1a64dc8 100644 --- a/Start-C4bCcmSetup.ps1 +++ b/Start-C4bCcmSetup.ps1 @@ -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