Files
chocolatey/install.ps1
T
Felipe Augusto 3cfcaf768d add azure-functions-core-tools
add azure-functions-core-tools
2021-10-08 10:12:50 -03:00

52 lines
1.2 KiB
PowerShell
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#https://github.com/JanDeDobbeleer/oh-my-posh
dotnet tool install --global dotnet-reportgenerator-globaltool
dotnet tool install --global dotnet-trace
dotnet tool install --global dotnet-sonarscanner
<# chocolatey setup #>
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'));
<# allowing globally confirmation #>
choco feature enable -n=allowGlobalConfirmation;
<# programs to install #>
@(
"git"
,"dotnet-5.0-sdk"
,"azure-functions-core-tools"
,"dotnetcore-sdk"
,"microsoft-edge"
,"visualstudio2019professional"
,"azure-functions-core-tools-3 --params "'/x64'""
,"microsoft-windows-terminal"
,"azure-cli"
,"gh"
,"azurepowershell"
,"azcopy"
,"wireshark"
,"westwindwebsurge"
,"sql-server-management-studio"
,"robo3t"
,"azure-data-studio"
,"mobaxterm"
,"docker-desktop"
,"nodejs-lts"
,"nvm"
,"postman"
,"vim"
,"microsoft-teams"
,"terraform") + ($pins = @("vscode")) | % { choco install $_ };
<# avoiding future upgrades of these following programs. #> $pins | % { choco pin add -n="$_" };
<# excluded
,"archi"
,"cmder"
,"hyper"
,"netfx-4.8-devpack"
,"notepadplusplus"
,"sublimetext3"
,"typora"
#>