We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93b3429 commit ebadeb2Copy full SHA for ebadeb2
Source/Private/SetModuleContent.ps1
@@ -46,8 +46,8 @@ function SetModuleContent {
46
foreach($file in $SourceFile) {
47
if($SourceName = Resolve-Path $file -Relative -ErrorAction SilentlyContinue) {
48
Write-Verbose "Adding $SourceName"
49
- # Setting offset to -1 because of the new line we're adding
50
- # because this is needed for the code coverage.
+ # Setting offset to -1 because of the new line we're adding,
+ # this is needed for the code coverage calculation.
51
$SetContent.Process("#Region '$SourceName' -1`n")
52
Get-Content $SourceName -OutVariable source | ForEach-Object { $SetContent.Process($_) }
53
$SetContent.Process("#EndRegion '$SourceName' $($Source.Count+1)")
0 commit comments