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-adbc.git


The following commit(s) were added to refs/heads/main by this push:
     new e184bce52 fix(csharp): Fix packing process (#1862)
e184bce52 is described below

commit e184bce526b33dc54980a728a46a45883ef86c2e
Author: Curt Hagenlocher <[email protected]>
AuthorDate: Tue May 14 13:45:50 2024 -0700

    fix(csharp): Fix packing process (#1862)
    
    Closes #1861
---
 csharp/Directory.Build.props |   5 +++--
 csharp/feather.png           | Bin 0 -> 40042 bytes
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/csharp/Directory.Build.props b/csharp/Directory.Build.props
index 187d6eb13..d84622da6 100644
--- a/csharp/Directory.Build.props
+++ b/csharp/Directory.Build.props
@@ -27,7 +27,7 @@
   <!-- AssemblyInfo properties -->
   <PropertyGroup>
     <Product>Apache Arrow ADBC library</Product>
-    <Copyright>Copyright 2022-2023 The Apache Software Foundation</Copyright>
+    <Copyright>Copyright 2022-2024 The Apache Software Foundation</Copyright>
     <Company>The Apache Software Foundation</Company>
     <Version>1.0.0</Version>
   </PropertyGroup>
@@ -46,7 +46,7 @@
   <!-- NuGet properties -->
   <PropertyGroup>
     <Authors>The Apache Software Foundation</Authors>
-    <PackageIconUrl>https://www.apache.org/images/feather.png</PackageIconUrl>
+    <PackageIcon>feather.png</PackageIcon>
     <!-- We can't use PackageLicenseExpression; the license file also contains 
3rd-party notices. -->
     <PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
     <PackageProjectUrl>https://arrow.apache.org/</PackageProjectUrl>
@@ -59,6 +59,7 @@
 
   <ItemGroup Condition="'$(IsPackable)' == 'true'">
     <Content Include="$(RepoRoot)LICENSE.txt" Pack="true" PackagePath="" />
+    <Content Include="$(CSharpDir)/feather.png" Link="feather.png" Pack="true" 
PackagePath="\" />
   </ItemGroup>
 
 </Project>
diff --git a/csharp/feather.png b/csharp/feather.png
new file mode 100644
index 000000000..7b596e668
Binary files /dev/null and b/csharp/feather.png differ

Reply via email to