NAT stack for Mono and .NET applications. Also available on Android and IOS is pending.
- MSBuild: Ensure you have MSBuild installed. If you have Visual Studio installed, you should already have MSBuild. To install without Visual Studio, refer to the MSBuild documentation.
- Make: Install Make for Windows from GnuWin32.
-
Add MSBuild to PATH:
- Locate the MSBuild.exe binary executable, typically found at
{INSTALL_LOCATION_DIR}\Microsoft Visual Studio\2022\Community\MSBuild\Current\Bin
. - Add this path to the
PATH
environment variable. - Confirm the setup by running
msbuild --version
.
- Locate the MSBuild.exe binary executable, typically found at
-
Add Make to PATH:
- Locate
make.exe
, typically found at{INSTALL_LOCATION_DIR}\GnuWin32\bin\
. - Add this path to the
PATH
environment variable. - Confirm the setup by running
make --version
.
- Locate
- Release Build: Run
make pack
. - Debug Build: Run
make
.