Install Core Applications

Application Data
Name Dotnet Core Apps
Version 3.0.0
Arch 64 or 32 bit
Description Net Core Apps used in JTSDK v3

Supported Operating Systems

At present, this repository only supports Windows. Later releases will include generic Linux support, and additional Ubuntu / Debian specific artifacts.

Windows

Linux

Installation

Installation of this package should follow the tool-chain installation and setup. If you've not already done so, review the following guides before checking out and compiling the source code.

# Open a Windows Console, then change directories to the JTSDK-Tools installation
cd /d (C|D):\JTSDK-Tools

# Set Temporary JTSDK_HOME variable
set JTSDK_HOME=%CD%

# Make a Source Directory
mkdir src

# Change Directories and Clone
cd src
git clone https://github.com/KI7MT/jtsdk-tools.git

# Change Directories and Make Install
cd jtsdk-tools\src
make install

Upgrade

If the source clone is still present on the system, upgrading is the same as installation, with an additional pull command. If not, use the installation steps from above.

# Change directories to the JTSDK-Tools installation
cd /d (C|D):\JTSDK-Tools

# Set Temporary JTSDK_HOME variable
set JTSDK_HOME=%CD%

# Change Directories To The Cloned Repository
# Note: If you cloned the repository to a different location than indicated,
# adjust accordingly.
cd /d %JTSDK_HOME%\src\jtsdk-tools\src

# Clean the build tree
make clean

# Update Source
git pull origin master

# Install New Update
make install

This concludes the installation and / or upgrade for JTSDK Core Applications.

Next Step

Proceed to => MSYS2 Configuration