We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a6be4f commit 24bd201Copy full SHA for 24bd201
powershell.md renamed to Powershell.md
@@ -1,8 +1,17 @@
1
# Powershell name convention
2
3
4
+## Powershell object name
5
| Object | Verb-Noun | Notation | Length | Plural| Prefix | Suffix | Example |
6
|-----------|-----------|-----------------------|--------|-------|--------|--------|---------------------|
7
| Cmdlet | Yes | PascalCase (for Noun) | 50 | No | Yes | No | Import-PREFIXModule |
8
| Function | Yes | PascalCase (for Noun) | 50 | No | Yes | No | Get-PREFIXDbRecord |
9
| Parameter | No | PascalCase | 30 | No | No | No | MyParameter |
10
+
11
12
+## Useful Links
13
+ - [MSDN Development Guidelines]
14
+ - [MSDN Approved Verbs]
15
16
+[MSDN Development Guidelines]:https://msdn.microsoft.com/en-us/library/dd878270%28v=vs.85%29.aspx
17
+[MSDN Approved Verbs]:https://msdn.microsoft.com/en-us/library/ms714428%28v=vs.85%29.aspx
0 commit comments