Moved the place where loggers are named.
[CSharpLibraryStarterKit.git] / Set-ProjectName.ps1
blob6a49d7f22ea92efa009791eca523e8145f3ff1f1
1 param ($libraryName = { throw "-libraryName required" } )
3 dir -rec . *YOURLIBNAME* |% { ren $_.FullName $_.Name.Replace("YOURLIBNAME", $libraryName) -whatif }