This is an automated email from the ASF dual-hosted git repository.
curth pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-dotnet.git
The following commit(s) were added to refs/heads/main by this push:
new 0f3eb5b Use a license expression for the NuGet package (#185)
0f3eb5b is described below
commit 0f3eb5b782a2d1788ff62e8f79c1fec29f9a81fc
Author: Curt Hagenlocher <[email protected]>
AuthorDate: Tue Nov 18 11:49:09 2025 -0800
Use a license expression for the NuGet package (#185)
## What's Changed
Use a standard `PackageLicenseExpression` instead of a license file when
publishing the NuGet package.
---
Directory.Build.props | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/Directory.Build.props b/Directory.Build.props
index 77623c9..d817765 100644
--- a/Directory.Build.props
+++ b/Directory.Build.props
@@ -43,8 +43,7 @@
<PropertyGroup>
<Authors>The Apache Software Foundation</Authors>
<PackageIcon>logo_asf.png</PackageIcon>
- <!-- We can't use PackageLicenseExpression; the license file also contains
3rd-party notices. -->
- <PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
+ <PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://arrow.apache.org/</PackageProjectUrl>
<PackageTags>apache arrow</PackageTags>
<RepositoryType>git</RepositoryType>