Saturday, January 02, 2021

DotNet - Create new console application

Create a dotnet project in C:\testprj folder, the name will be derived from the containing folder, testprj in this case.
c:\testprj> dotnet new console

Create a dotnet project called myprj
c:\testprj> dotnet new console --name myprj


Tags: DotNet Create New Console

No comments:

QNX: Running a function at specific interval using timer interrupt

#include <iostream> #include <csignal> #include <ctime> #include <cerrno> #include <cstring> #include <unis...