Created
April 8, 2020 16:56
-
-
Save pramilgawande/7c00ad41fae66e68a78fd2d31587a2eb 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
#### Setup | |
- Dotnet 3.1 | |
- https://dotnet.microsoft.com/download (SDK required for development) | |
- SQL Server Download links (minium sql express required) | |
- https://www.microsoft.com/en-gb/sql-server/sql-server-downloads | |
- https://www.sqlshack.com/how-to-install-sql-server-express-edition/ (How to install SQL Express) | |
- SQL Server 2019 Express Edition (English): (Short Direct Links) | |
- Basic (~249 MB): https://download.microsoft.com/download/7/c/1/7c14e92e-bdcb-4f89-b7cf-93543e7112d1/SQLEXPR_x64_ENU.exe | |
- Advanced (~790 MB): https://download.microsoft.com/download/7/c/1/7c14e92e-bdcb-4f89-b7cf-93543e7112d1/SQLEXPRADV_x64_ENU.exe | |
- LocalDB (~53 MB): https://download.microsoft.com/download/7/c/1/7c14e92e-bdcb-4f89-b7cf-93543e7112d1/SqlLocalDB.msi | |
- Northwind Database | |
- https://github.com/MaheshkumarN/forprojects/blob/master/ForDatabases/instnwnd.sql | |
- Visual Studio Code | |
- https://code.visualstudio.com/download | |
```powershell | |
# Extensions for Visual Studio, run them from powershell | |
# Microsoft | |
code --install-extension "ms-dotnettools.csharp" # This is CSharp | |
code --install-extension "ms-mssql.mssql" # For SQL Server, Local, Azure and other features | |
code --install-extension "visualstudioexptteam.vscodeintellicode" # Visual Studio IntelliCode | |
# Tools (Optional) | |
code --install-extension "dkundel.vscode-new-file" # Advance New File | |
code --install-extension "christian-kohler.path-intellisense" # Path Intellisense | |
code --install-extension "kamikillerto.vscode-colorize" # Colorize | |
code --install-extension "ibm.output-colorizer" # Output Colorizer | |
code --install-extension "coenraads.bracket-pair-colorizer-2" # Bracket Pair Colorizer 2 | |
code --install-extension "oderwat.indent-rainbow" # indent-rainbow | |
# Themes and Icon (Optional) | |
code --install-extension "equinusocio.vsc-material-theme" # Material Theme | |
code --install-extension "pkief.material-icon-theme" # Material Icon Theme | |
# Git Tools (Optional) | |
code --install-extension "eamodio.gitlens" #GitLens — Git supercharged | |
code --install-extension "codezombiech.gitignore" # gitignore | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment