-
Notifications
You must be signed in to change notification settings - Fork 291
Add HotChocolate 12.18.0 MIT license and BCP ChilliCream License 1.0 to NOTICE.txt #1277
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
2d74122
update HC to 12.18
seantleonard 689d668
upgrade hotchocolae version and add notice
seantleonard c3dc48b
Manual notice file.
seantleonard e3d45c3
Add BCP license
seantleonard 4026694
Update src/Directory.Packages.props
seantleonard acfcd3a
Add Powershell script for build pipeline to concatenate license to NO…
seantleonard d7fa91f
Merge branch 'dev/seleonar/bcp_newlicense' of https://github.com/Azur…
seantleonard 11f1d3e
Merge branch 'main' into dev/seleonar/bcp_newlicense
seantleonard 3a2e351
explicit file not just path.
seantleonard 803f5bf
Merge branch 'dev/seleonar/bcp_newlicense' of https://github.com/Azur…
seantleonard 9bdf9c0
add explicit parameter publishLocation pipeline to publish pipline ar…
seantleonard f6f82d9
Merge branch 'main' into dev/seleonar/bcp_newlicense
seantleonard 8858c45
updated script name to be kebob case and moved script to scripts fold…
seantleonard 1eebeeb
Merge branch 'dev/seleonar/bcp_newlicense' of https://github.com/Azur…
seantleonard 5f5f183
add Component Name to the concatenated license.
seantleonard 9e46b64
add copyright per BCP webpage.
seantleonard 3f1cb36
Merge branch 'main' into dev/seleonar/bcp_newlicense
seantleonard 79c3365
using text "copyright" instead of symbol as it is converted away in p…
seantleonard 8f7345e
Merge branch 'dev/seleonar/bcp_newlicense' of https://github.com/Azur…
seantleonard 10af8ee
Newline and copyright text
seantleonard 118db42
Merge branch 'main' into dev/seleonar/bcp_newlicense
seantleonard 16f2b3a
Merge branch 'main' into dev/seleonar/bcp_newlicense
seantleonard ac73050
Merge branch 'main' into dev/seleonar/bcp_newlicense
seantleonard File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| # Copyright (c) Microsoft Corporation. | ||
| # Licensed under the MIT License. | ||
|
|
||
| param ( | ||
| [Parameter (Mandatory=$true)][string] $BuildArtifactStagingDir, | ||
| [Parameter (Mandatory=$true)][string] $BuildSourcesDir | ||
| ) | ||
|
|
||
| # Download and save the ChilliCream License 1.0 from ChilliCream/graphql-platform GitHub repo | ||
| $chiliCreamLicenseSavePath = "$BuildArtifactStagingDir/chillicreamlicense.txt" | ||
| $chiliCreamLicenseMetadataURL = "https://raw.githubusercontent.com/ChilliCream/graphql-platform/main/website/src/basic/licensing/chillicream-license.md" | ||
| Invoke-WebRequest $chiliCreamLicenseMetadataURL ` | ||
| | Select-Object -ExpandProperty Content ` | ||
| | Out-File $chiliCreamLicenseSavePath | ||
|
|
||
| # Concatenate existing NOTICE.txt file with Chilicream license. | ||
| $noticeFilePath = "$BuildSourcesDir/NOTICE.txt" | ||
| # Add newline before and after to meet formatting requirements | ||
| Add-Content $noticeFilePath -Value "`r`nBanana Cake Pop`r`n" | ||
Aniruddh25 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| Add-Content $noticeFilePath -Value "Copyright 2023 ChilliCream, Inc.`r`n" | ||
| Add-Content $noticeFilePath -Value (Get-Content $chiliCreamLicenseSavePath) | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.