Skip to content

Commit c3c4226

Browse files
committed
refactoring
1 parent 3555219 commit c3c4226

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

README.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
[Follow progress on twitter](https://twitter.com/PowerCommands) <img src="https://github.com/PowerCommands/PowerCommands2022/blob/main/Docs/images/Twitter.png?raw=true" alt="drawing" width="20"/>
2+
13
# PowerCommands-Tutorials
24

35
## Preparations
@@ -12,6 +14,10 @@ Setup the VS Template to create new Solution for your PowerCommands project.
1214

1315
This tutorial will guide you trough the process of the creation of and the design of a PowerCommands solution. We will creating a small and simple project that has only one Command that are compressing file from a given directory to a zip file. After this you will understand the core principles and the power of PowerCommands.
1416

15-
[File handling](/Tutorials/file-handling.md)
17+
[File handling part I](/Tutorials/file-handling.md)
18+
19+
In this tutorial we go trough how to handle files and directories and how we can run the async method instead of the default run method. This tutorial will also show you how to add your custom configuration and use it in your Command class.
20+
21+
[File handling part II](/Tutorials/file-handling2.md)
1622

17-
In this tutorial we go trough how to handle files and directories and how we can run the async method instead of the default run method. Later on I will also add how to customize the configuration with your own added properties.
23+
We extend the tutorial from part I and add a path option to the command and show how we could make it use code completion and show the current sub directories of the current working directory, without writing any implementation code, just by using a different base class and implementing a interface.

Tutorials/file-handling2.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# PowerCommands - File handling part 2
2+
3+
Coming soon...

icon.ico

1.78 KB
Binary file not shown.

src/Tutorials.BasicTutorial/BasicTutorial/PainKiller.PowerCommands.BasicTutorialCommands/PowerCommandsConfiguration.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ configuration:
55
codeEditor: C:\Users\%USERNAME%\AppData\Local\Programs\Microsoft VS Code\Code.exe
66
repository: https://github.com/PowerCommands/PowerCommands2022
77
backupPath: ..\..\..\..\Core\PainKiller.PowerCommands.Core\
8-
defaultGitRepositoryPath: ..\..\..\..\..\..\
8+
defaultGitRepositoryPath: ..\..\..\..\..\..\..\
99
metadata:
1010
name: BasicTutorial
1111
description: Description of my project

0 commit comments

Comments
 (0)