Skip to content

Commit

Permalink
Merge pull request #783 from Azure/santhoshb-8-install-instructions
Browse files Browse the repository at this point in the history
Update Installation-Instructions.md to release version 8
  • Loading branch information
santhoshb-msft authored Nov 22, 2024
2 parents cdcd486 + 0125669 commit 020e6d4
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions docs/Installation-Instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ Copy the following section to an editor and update it to match your company pref
``` powershell
wget https://dotnet.microsoft.com/download/dotnet/scripts/v1/dotnet-install.sh; `
chmod +x dotnet-install.sh; `
./dotnet-install.sh -version 6.0.417; `
./dotnet-install.sh -version 8.0.303; `
$ENV:PATH="$HOME/.dotnet:$ENV:PATH"; `
dotnet tool install --global dotnet-ef --version 6.0.1; `
git clone https://github.com/Azure/Commercial-Marketplace-SaaS-Accelerator.git -b 7.6.2 --depth 1; `
dotnet tool install --global dotnet-ef --version 8.0.0; `
git clone https://github.com/Azure/Commercial-Marketplace-SaaS-Accelerator.git -b 8.0.0 --depth 1; `
cd ./Commercial-Marketplace-SaaS-Accelerator/deployment; `
.\Deploy.ps1 `
-WebAppNamePrefix "SOME-UNIQUE-STRING" `
Expand Down Expand Up @@ -78,13 +78,14 @@ The script above will perform the following actions.
If you already have deployed the SaaS Accelerator, but you want to update it so that you take advantage of new features developed, you can run the following command:

*you need to ensure that you use the same parameters you used in the initial deployment
*if upgrading to release version < 8.0.0, please replace the below dotnet and dotnet-ef versions to 6 release.

``` powershell
wget https://dotnet.microsoft.com/download/dotnet/scripts/v1/dotnet-install.sh; `
chmod +x dotnet-install.sh; `
./dotnet-install.sh -version 6.0.417; `
./dotnet-install.sh -version 8.0.303; `
$ENV:PATH="$HOME/.dotnet:$ENV:PATH"; `
dotnet tool install --global dotnet-ef --version 6.0.1; `
dotnet tool install --global dotnet-ef --version 8.0.0; `
git clone https://github.com/Azure/Commercial-Marketplace-SaaS-Accelerator.git -b <release-version-branch-to-deploy> --depth 1; `
cd ./Commercial-Marketplace-SaaS-Accelerator/deployment; `
.\Upgrade.ps1 `
Expand Down

0 comments on commit 020e6d4

Please sign in to comment.