Examples/01_ProjectCreation.ps1

import-module PsKrane -Force
$ModuleRootPath = "C:\Basement\"
$ModuleName = "MyProject"

#Create a new KraneProject
$KraneProject = New-KraneProject -Type Module -Name $ModuleName -Path $ModuleRootPath  -Verbose

#Output the project structure to the console
$KraneProject