File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -151,16 +151,20 @@ Additional references:
151
151
(See [ Contributing to documentation related to PowerShell] ( #contributing-to-documentation-related-to-powershell ) for more info.)
152
152
* If your change adds a new source file, ensure the appropriate copyright and license headers is on top.
153
153
It is standard practice to have both a copyright and license notice for each source file.
154
- * For ` .h ` , ` .cpp ` , and ` .cs ` files use:
154
+ * For ` .h ` , ` .cpp ` , and ` .cs ` files use the copyright header with empty line after it :
155
155
156
+ ``` c#
156
157
// Copyright (c) Microsoft Corporation. All rights reserved.
157
158
// Licensed under the MIT License.
159
+ < Add empty line here >
160
+ ```
158
161
159
- * For ` .ps1 ` and ` .psm1 ` files use:
162
+ * For `.ps1 ` and `.psm1 ` files use the copyright header with empty line after it :
160
163
161
164
```powershell
162
165
# Copyright (c) Microsoft Corporation. All rights reserved.
163
166
# Licensed under the MIT License.
167
+ < Add empty line here >
164
168
```
165
169
166
170
* If your change adds a new module manifest (.psd1 file ), ensure that :
You can’t perform that action at this time.
0 commit comments