You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -1829,30 +1822,13 @@ A few items to consider doing next:
1829
1822
7. If you enabled sensitive terminology scanning then review and update your terms defined in your buildenvironment.json file (using get-buildenvironment & set-buildenvironment).
1830
1823
8. Change your project logo at src\other\powershell-project.png
1831
1824
9. Build your project with .\Build.ps1
1832
-
10. Enter a PowerShell Gallery (aka Nuget) API key using Set-BuildEnvironment -NugetAPIKey. Without this you will not be able to upload your module to the Gallery
1825
+
10. Enter a PowerShell Gallery (aka Nuget) API key. Without this you will not be able to upload your module to the Gallery using Set-BuildEnvironment -NugetAPIKey
1833
1826
1834
1827
Run Update-Module ModuleBuild every so often to get more recent releases of this project.
1835
1828
1836
1829
Enjoy!
1837
1830
'@
1838
1831
1839
-
if (-not [string]::IsNullOrEmpty($SourceModule)) {
1840
-
if (-not (test-path$SourceModule) -or ($SourceModule-notmatch'*.psd1')) {
1841
-
throw'SourceModule was not found or is not a psd1 module manifest file!'
Pulls some information from myoldmodule.psd1 and then prompt for any remaining required information to create a modulebuild based project from it in C:\Work\NewModule
38
-
39
-
Prompt for all the settings required to get a new modulebuild project setup in c:\work\NewModule.
If specified, will import a source module manifest file for module information.
60
-
61
-
```yaml
62
-
Type: String
63
-
Parameter Sets: (All)
64
-
Aliases:
65
-
66
-
Required: False
67
-
Position: 2
68
-
Default value: None
69
-
Accept pipeline input: False
70
-
Accept wildcard characters: False
71
-
```
72
-
73
46
### CommonParameters
74
47
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
75
48
For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
Copy file name to clipboardExpand all lines: release/0.2.3/en-US/ModuleBuild-help.xml
+2-34Lines changed: 2 additions & 34 deletions
Original file line number
Diff line number
Diff line change
@@ -603,7 +603,7 @@
603
603
</maml:description>
604
604
</command:details>
605
605
<maml:description>
606
-
<maml:para>Set up the framework for a ModuleBuild project. Optionally supply an existing module manifest path to pull in information from it to begin a migration to ModuleBuild.</maml:para>
606
+
<maml:para>Set up the framework for a ModuleBuild project.</maml:para>
<maml:para>Pulls some information from myoldmodule.psd1 and then prompt for any remaining required information to create a modulebuild based project from it in C:\Work\NewModule</maml:para>
683
-
<maml:para>Prompt for all the settings required to get a new modulebuild project setup in c:\work\NewModule.</maml:para>
Copy file name to clipboardExpand all lines: release/0.2.3/plaster/ModuleBuild/scaffold/build/docs/README.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,4 +2,4 @@
2
2
Any *.md file within the Additional folder will be automatically copied to the final doc folder at the root of the project directory.
3
3
4
4
## ReadTheDocs Manifest Creation
5
-
See the README.md file within the ReadTheDocs folder for more information.
5
+
Each folder in this path becomes its own subsection within the ReadTheDocs YML manifest file. This only covers the base folder and all the *.md files within it (so no subfolders will be recognized). Each public function you have in this module will automatically be included in this manifest file under a 'Function' section and do not need to be specified (as they will be automatically generated by PlatyPS).
0 commit comments