Created
March 13, 2020 11:51
-
-
Save radutta/af25d87470e0ef52dd5068530c429aa4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Azure Links for Download | |
#### Azure SDK for Visual Studio (.Net) | |
- https://azure.microsoft.com/en-us/downloads/ | |
#### Azure CLI powershell and AzureCli | |
- For Powershell Core (This will support Both AZ and AZRM) | |
- https://github.com/PowerShell/PowerShell | |
- Getting Started with Powershell | |
- https://github.com/PowerShell/PowerShell/tree/master/docs/learning-powershell | |
- For Azure CLI | |
- https://docs.microsoft.com/en-us/cli/azure/install-azure-cli?view=azure-cli-latest | |
#### Azure Storage Explorer | |
- https://azure.microsoft.com/en-us/features/storage-explorer/ | |
#### Cosmos Db Local Emulator | |
- https://docs.microsoft.com/en-us/azure/cosmos-db/local-emulator | |
#### Postman | |
- https://www.getpostman.com | |
- if postman is not possiable then | |
- https://apirequest.io | |
#### SQL Management Studio | |
- https://docs.microsoft.com/en-us/sql/ssms/download-sql-server-management-studio-ssms | |
## Font | |
- https://www.jetbrains.com/lp/mono/ | |
## Visual Studio Code | |
```powershell | |
# Extensions for Visual Studio | |
# C# | |
code --install-extension ms-dotnettools.csharp | |
# SQL Server (mssql) | |
code --install-extension ms-mssql.mssql | |
# Azure Tool Extension | |
code --install-extension ms-vscode.vscode-node-azure-pack | |
# Powershell Extension | |
code --install-extension ms-vscode.PowerShell | |
#GitLens — Git supercharged | |
code --install-extension eamodio.gitlens | |
# gitignore | |
code --install-extensioncodezombiech.gitignore | |
# Material Theme | |
code --install-extension equinusocio.vsc-material-theme | |
# Material Icon Theme | |
code --install-extension pkief.material-icon-theme | |
# Bracket Pair Colorizer 2 | |
code --install-extension coenraads.bracket-pair-colorizer-2 | |
# indent-rainbow | |
code --install-extension oderwat.indent-rainbow | |
# YAML | |
code --install-extension redhat.vscode-yaml | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment