-
Install Visual Studio 2019
-
Install VSCode
-
Update to latest .net core versions
# the following will list installed versions dotnet --info
# Get array of rel links from github api head
# Arguments:
# $1: Github user
# $2: Github repos
# Returns:
# Globals:
# PAGE_RELS: [ rel_name, rel_url ]
# Notes:
# Rel urls are stored in global PAGE_RELS associative array
# Get meta for latest version of specified package
# Arguments:
# $1: Github user
# $2: Github repos
# Returns:
# - latest package version
# - tag name for latest version
# - package download url for latest version
function get_latest_release_meta()
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
# Create a new directory and navigate into it | |
mkdir <new_directory> && cd $_ |