Skip to content

Commit

Permalink
Merge pull request #615 from santhoshb-msft/main
Browse files Browse the repository at this point in the history
added global json file and updated installation instructions.
  • Loading branch information
santhoshb-msft authored Dec 27, 2023
2 parents 837a5e5 + 20b21c2 commit 3edef33
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/Installation-Instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ 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 --channel 6.0; `
./dotnet-install.sh -version 6.0.417; `
$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.4.0 --depth 1; `
Expand Down Expand Up @@ -75,7 +75,7 @@ If you already have deployed the SaaS Accelerator, but you want to update it so
``` powershell
wget https://dotnet.microsoft.com/download/dotnet/scripts/v1/dotnet-install.sh; `
chmod +x dotnet-install.sh; `
./dotnet-install.sh --channel 6.0; `
./dotnet-install.sh -version 6.0.417; `
$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 <release-version-branch-to-deploy> --depth 1; `
Expand Down
5 changes: 5 additions & 0 deletions global.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"sdk": {
"version": "6.0.417"
}
}

0 comments on commit 3edef33

Please sign in to comment.