Skip to content
4 changes: 4 additions & 0 deletions .ci/ci_auto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,10 @@ stages:

# en-US
Copy-Item -Path (Join-Path -Path $srcPath -ChildPath "en-US") -Dest $signOutPath -Recurse
# Copy Notice.txt
Copy-Item -Path (Join-Path -Path $srcPath -ChildPath "Notice.txt") -Dest $signOutPath
# Copy LICENSE
Copy-Item -Path (Join-Path -Path $srcPath -ChildPath "LICENSE") -Dest $signOutPath

# NetStandard directory
$netStandardSignedOutPath = Join-Path -Path $signOutPath -ChildPath "netstandard2.0"
Expand Down
4 changes: 4 additions & 0 deletions .ci/ci_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,10 @@ stages:

# en-US
Copy-Item -Path (Join-Path -Path $srcPath -ChildPath "en-US") -Dest $signOutPath -Recurse
# Copy Notice.txt
Copy-Item -Path (Join-Path -Path $srcPath -ChildPath "Notice.txt") -Dest $signOutPath
# Copy LICENSE
Copy-Item -Path (Join-Path -Path $srcPath -ChildPath "LICENSE") -Dest $signOutPath

# NetStandard directory
$netStandardSignedOutPath = Join-Path -Path $signOutPath -ChildPath "netstandard2.0"
Expand Down