repo.or.cz
/
CSharpLibraryStarterKit.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Moved the place where loggers are named.
[CSharpLibraryStarterKit.git]
/
Set-ProjectName.ps1
blob
6a49d7f22ea92efa009791eca523e8145f3ff1f1
1
param
(
$libraryName
= {
throw
"-libraryName required"
} )
2
3
dir
-
rec
. *
YOURLIBNAME
* |% {
ren
$_
.
FullName
$_
.
Name
.
Replace
(
"YOURLIBNAME"
,
$libraryName
) -
whatif
}
4