Powershell GUI fronted (WPF) to run categorized console scripts

⌈⌋ ⎇ branch:  ClickyColoury


Check-in [8d563f935e]

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:comment on PMD extractor
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 8d563f935e0542e355d5e54b3b8cd65d2417a917
User & Date: mario 2017-09-23 08:57:59
Context
2017-09-23
08:59
Comment on UserTools/ dir working without CSV description check-in: 07264a5f9d user: mario tags: trunk
08:57
comment on PMD extractor check-in: 8d563f935e user: mario tags: trunk
08:55
Add comment about debugging mode check-in: 55c3f84d35 user: mario tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to dev/create-psd1.ps1.

1
2
3
4
5
6
7

8
9
10
11
12
13
14
# api: ps
# type: cli
# title: create .psd1
# description: module manifest from script meta header
# version: 0.1
#
# Creates a .psd1 file for a .psm1/.ps1


[CmdletBinding()]
Param($fn=(ReadHost ".psm1 filename:"));

$target = $fn -replace "\.\w+$",".psd1"
$base = $fn -replace "^.+[\\\\/]",""








>







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# api: ps
# type: cli
# title: create .psd1
# description: module manifest from script meta header
# version: 0.1
#
# Creates a .psd1 file for a .psm1/.ps1
# Contains an even cruder PMD extraction scheme.

[CmdletBinding()]
Param($fn=(ReadHost ".psm1 filename:"));

$target = $fn -replace "\.\w+$",".psd1"
$base = $fn -replace "^.+[\\\\/]",""