@@ -69,20 +69,20 @@ task RestoreNugetPackages @restoreNugetParameters CheckNugetInstalled,{
6969
7070$buildMamlParams = @ {
7171 Inputs = { Get-ChildItem docs/* .md }
72- Outputs = " $targetDir /en-US/Microsoft.PowerShell.PSReadLine .dll-help.xml"
72+ Outputs = " $targetDir /en-US/Microsoft.PowerShell.PSReadLine2 .dll-help.xml"
7373}
7474
7575<#
7676Synopsis: Generate maml help from markdown
7777#>
7878task BuildMamlHelp @buildMamlParams {
79- platyPS\New-ExternalHelp docs - Force - OutputPath $targetDir / en- US/ Microsoft.PowerShell.PSReadLine .dll- help.xml
79+ platyPS\New-ExternalHelp docs - Force - OutputPath $targetDir / en- US/ Microsoft.PowerShell.PSReadLine2 .dll- help.xml
8080}
8181
8282$buildAboutTopicParams = @ {
8383 Inputs = {
8484 Get-ChildItem docs/ about_PSReadLine.help.txt
85- " PSReadLine/bin/$Configuration /Microsoft.PowerShell.PSReadLine .dll"
85+ " PSReadLine/bin/$Configuration /Microsoft.PowerShell.PSReadLine2 .dll"
8686 " $PSScriptRoot /GenerateFunctionHelp.ps1"
8787 " $PSScriptRoot /CheckHelp.ps1"
8888 }
@@ -112,7 +112,7 @@ task BuildAboutTopic @buildAboutTopicParams {
112112
113113$binaryModuleParams = @ {
114114 Inputs = { Get-ChildItem PSReadLine/* .cs, PSReadLine/ PSReadLine.csproj, PSReadLine/ PSReadLineResources.resx }
115- Outputs = " PSReadLine/bin/$Configuration /Microsoft.PowerShell.PSReadLine .dll"
115+ Outputs = " PSReadLine/bin/$Configuration /Microsoft.PowerShell.PSReadLine2 .dll"
116116}
117117
118118<#
@@ -185,11 +185,11 @@ task LayoutModule BuildMainModule, BuildMamlHelp, {
185185 }
186186
187187
188- Copy-Item PSReadLine/ bin/ $Configuration / Microsoft.PowerShell.PSReadLine .dll $targetDir
188+ Copy-Item PSReadLine/ bin/ $Configuration / Microsoft.PowerShell.PSReadLine2 .dll $targetDir
189189 Copy-Item PSReadLine/ bin/ $Configuration / System.Runtime.InteropServices.RuntimeInformation.dll $targetDir
190190
191191 # Copy module manifest, but fix the version to match what we've specified in the binary module.
192- $version = (Get-ChildItem - Path $targetDir / Microsoft.PowerShell.PSReadLine .dll).VersionInfo.FileVersion
192+ $version = (Get-ChildItem - Path $targetDir / Microsoft.PowerShell.PSReadLine2 .dll).VersionInfo.FileVersion
193193 $moduleManifestContent = Get-Content - Path ' PSReadLine/PSReadLine.psd1' - Raw
194194 [regex ]::Replace($moduleManifestContent , " ModuleVersion = '.*'" , " ModuleVersion = '$version '" ) | Set-Content - Path $targetDir / PSReadLine.psd1
195195
0 commit comments