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:

Zig basic Windows application using win32 API

Zig basic Windows application using win32 API Info : OS: Windows 10 IoT LTSC 2021 Zig: 0.15.2 Sample application using zigwin32, Window...