[
https://issues.apache.org/jira/browse/AVRO-3388?focusedWorklogId=729644&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-729644
]
ASF GitHub Bot logged work on AVRO-3388:
----------------------------------------
Author: ASF GitHub Bot
Created on: 18/Feb/22 13:04
Start Date: 18/Feb/22 13:04
Worklog Time Spent: 10m
Work Description: zcsizmadia commented on pull request #1536:
URL: https://github.com/apache/avro/pull/1536#issuecomment-1044498494
Here is the script to update point 9) at
https://cwiki.apache.org/confluence/display/AVRO/How+To+Release#HowToRelease-Publishing.
I assumed that the directory structure built by `build.sh dist` is used.
Is there another place this can be automated, or the release prorcess is
done manually step by step?
```
mkdir -p tmp/csharp
cd tmp/csharp
tar xvfz ../../dist/csharp/avro-csharp-X.Y.Z.tar.gz
dotnet nuget push main/Apache.Avro.X.Y.Z.nupkg -k YOUR_KEY -s
https://api.nuget.org/v3/index.json
dotnet nuget push codegen/Apache.Avro.Tools.X.Y.Z.nupkg -k YOUR_KEY -s
https://api.nuget.org/v3/index.json
dotnet nuget push codec/Avro.File.Snappy/Apache.File.Snappy.X.Y.Z.nupkg -k
YOUR_KEY -s https://api.nuget.org/v3/index.json
dotnet nuget push codec/Avro.File.BZip2/Apache.File.BZip2.X.Y.Z.nupkg -k
YOUR_KEY -s https://api.nuget.org/v3/index.json
dotnet nuget push codec/Avro.File.XZ/Apache.File.XZ.X.Y.Z.nupkg -k YOUR_KEY
-s https://api.nuget.org/v3/index.json
dotnet nuget push
codec/Avro.File.Zstandard/Apache.File.Zstandard.X.Y.Z.nupkg -k YOUR_KEY -s
https://api.nuget.org/v3/index.json
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
Issue Time Tracking
-------------------
Worklog Id: (was: 729644)
Time Spent: 6h 40m (was: 6.5h)
> Implement extra codecs for C# as seperate nuget packages
> --------------------------------------------------------
>
> Key: AVRO-3388
> URL: https://issues.apache.org/jira/browse/AVRO-3388
> Project: Apache Avro
> Issue Type: New Feature
> Components: csharp
> Reporter: Zoltan Csizmadia
> Priority: Minor
> Labels: pull-request-available
> Time Spent: 6h 40m
> Remaining Estimate: 0h
>
> C# main library supports only Deflate and Null codecs. There are other
> supported codecs using Java: XZ, bzip2, zstandard, snappy.
>
> C# has support for all these codecs, however they require many dependencies.
> It makes sense to create nuget packages for each codec, and the end user
> references the codecs, which are needed.
--
This message was sent by Atlassian Jira
(v8.20.1#820001)