diff --git a/.ci/ci_auto.yml b/.ci/ci_auto.yml index 78090b56d..603e9e525 100644 --- a/.ci/ci_auto.yml +++ b/.ci/ci_auto.yml @@ -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" diff --git a/.ci/ci_release.yml b/.ci/ci_release.yml index b5a3f326c..94b00eb42 100644 --- a/.ci/ci_release.yml +++ b/.ci/ci_release.yml @@ -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"