Skip to content

Commit 443b402

Browse files
authored
Remove help files and references to help files (#1113)
1 parent fe0edb4 commit 443b402

22 files changed

+0
-12699
lines changed

build.ps1

-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ $script:TestPath = $config.TestPath
4040

4141
$script:ModuleRoot = $PSScriptRoot
4242
$script:Culture = $config.Culture
43-
$script:HelpPath = $config.HelpPath
4443

4544
$script:BuildConfiguration = $BuildConfiguration
4645
$script:BuildFramework = $BuildFramework

buildtools.psm1

-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ function Get-BuildConfiguration {
3434
$projectRoot = Split-Path $fileNamePath
3535
$configObj.SourcePath = Join-Path $projectRoot -ChildPath $configObj.SourcePath
3636
$configObj.TestPath = Join-Path $projectRoot -ChildPath $configObj.TestPath
37-
$configObj.HelpPath = Join-Path $projectRoot -ChildPath $configObj.HelpPath
3837
$configObj.BuildOutputPath = Join-Path $projectRoot -ChildPath $configObj.BuildOutputPath
3938
if ($configObj.SignedOutputPath) {
4039
$configObj.SignedOutputPath = Join-Path $projectRoot -ChildPath $configObj.SignedOutputPath

doBuild.ps1

-4
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,6 @@ function DoBuild
3232
$null = New-Item -ItemType Directory -Path $BuildOutputBin
3333
}
3434

35-
# Copy help
36-
Write-Verbose -Verbose -Message "Copying help files to '$BuildOutPath'"
37-
Copy-Item -Path "${HelpPath}/${Culture}" -Dest "$BuildOutPath" -Recurse -Force
38-
3935
# Copy license
4036
Write-Verbose -Verbose -Message "Copying LICENSE file to '$BuildOutPath'"
4137
Copy-Item -Path "./LICENSE" -Dest "$BuildOutPath"

0 commit comments

Comments
 (0)