8000 Update markdown test dependencies by RDIL · Pull Request #9075 · PowerShell/PowerShell · GitHub
[go: up one dir, main page]

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/cmdlet-example/visual-studio-simple-example.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ Add another package source with name `powershell-core` and source `https://power
![Step4](./Images/Step4.png)

1. Add the code of cmdlet:

```csharp
using System.Management.Automation; // PowerShell namespace.

Expand All @@ -55,6 +56,7 @@ Add another package source with name `powershell-core` and source `https://power
}
}
```

At this point everything should look like this:
![Step5](./Images/Step5.png)

Expand Down Expand Up @@ -90,6 +92,7 @@ It should find `PowerShellStandard.Library` package, select it and it will show
![StdImage3](./Images/Std3.png)

1. Add the code of cmdlet:

```csharp
using System.Management.Automation; // PowerShell namespace.

Expand All @@ -115,6 +118,7 @@ It should find `PowerShellStandard.Library` package, select it and it will show
}
}
```

At this point everything should look like this:
![StdImage4](./Images/Std4.png)

Expand Down
Loading
0