Skip to content

Commit f81abc2

Browse files
Copy LICENSE and Notice.txt to build output path (#735)
* Remove ShouldProcess in FindPSResource * Copy LICENSE and notice.txt to output path in yamls * Update .ci/ci_auto.yml Co-authored-by: Paul Higinbotham <paulhi@microsoft.com> * Update .ci/ci_auto.yml Co-authored-by: Paul Higinbotham <paulhi@microsoft.com> * Update .ci/ci_release.yml Co-authored-by: Paul Higinbotham <paulhi@microsoft.com> * Update .ci/ci_release.yml Co-authored-by: Paul Higinbotham <paulhi@microsoft.com> Co-authored-by: Paul Higinbotham <paulhi@microsoft.com>
1 parent 9b4eaff commit f81abc2

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.ci/ci_auto.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,10 @@ stages:
233233
234234
# en-US
235235
Copy-Item -Path (Join-Path -Path $srcPath -ChildPath "en-US") -Dest $signOutPath -Recurse
236+
# Copy Notice.txt
237+
Copy-Item -Path (Join-Path -Path $srcPath -ChildPath "Notice.txt") -Dest $signOutPath
238+
# Copy LICENSE
239+
Copy-Item -Path (Join-Path -Path $srcPath -ChildPath "LICENSE") -Dest $signOutPath
236240
237241
# NetStandard directory
238242
$netStandardSignedOutPath = Join-Path -Path $signOutPath -ChildPath "netstandard2.0"

.ci/ci_release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,10 @@ stages:
220220
221221
# en-US
222222
Copy-Item -Path (Join-Path -Path $srcPath -ChildPath "en-US") -Dest $signOutPath -Recurse
223+
# Copy Notice.txt
224+
Copy-Item -Path (Join-Path -Path $srcPath -ChildPath "Notice.txt") -Dest $signOutPath
225+
# Copy LICENSE
226+
Copy-Item -Path (Join-Path -Path $srcPath -ChildPath "LICENSE") -Dest $signOutPath
223227
224228
# NetStandard directory
225229
$netStandardSignedOutPath = Join-Path -Path $signOutPath -ChildPath "netstandard2.0"

0 commit comments

Comments
 (0)