From 04a965968c299b30412d7f18f97494ce1bf5b288 Mon Sep 17 00:00:00 2001 From: Christoph Perger Date: Wed, 13 May 2020 15:26:27 +0200 Subject: [PATCH] Update README.md --- README.md | 54 +++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 53 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3e4d23d..84b2db5 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,58 @@ -# FocusInit +# Spatial Focus initialize project wizard +## Install the dotnet tool + +``` +dotnet tool install --global SpatialFocus.FocusInit --version 0.1.1 +``` + +Install the tool globally. You can invoke the tool using the following command: `focus-init` + +## Using the tool + +Starts the tool and guides you through the setup wizard + +``` +focus-init +``` + +## Example usage + +``` +PS C:\temp> mkdir NewConsoleProject + + Directory: C:\temp + +Mode LastWriteTime Length Name +---- ------------- ------ ---- +d----- 13.05.2020 15:19 NewConsoleProject + +PS C:\temp> cd .\NewConsoleProject\ + +PS C:\temp\NewConsoleProject> focus-init +Enter solution name [NewConsoleProject] +Enter company name [Spatial Focus GmbH] +Template repository cloned successfully. +Solution files have been copied and modified. +Create additional projects? [Y/n] n +Finished. + +PS C:\temp\NewConsoleProject> dir + + Directory: C:\temp\NewConsoleProject + +Mode LastWriteTime Length Name +---- ------------- ------ ---- +-a---- 13.05.2020 15:20 10765 .editorconfig +-a---- 13.05.2020 15:20 6909 .gitignore +-a---- 13.05.2020 15:20 216 Directory.Build.props +-a---- 13.05.2020 15:20 668 Directory.Build.targets +-a---- 13.05.2020 15:20 912 NewConsoleProject.sln +-a---- 13.05.2020 15:20 22430 NewConsoleProject.sln.DotSettings +-a---- 13.05.2020 15:20 99 README.md +-a---- 13.05.2020 15:20 452 stylecop.json +``` ----