[
https://issues.apache.org/jira/browse/AVRO-3388?focusedWorklogId=732497&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-732497
]
ASF GitHub Bot logged work on AVRO-3388:
----------------------------------------
Author: ASF GitHub Bot
Created on: 24/Feb/22 17:02
Start Date: 24/Feb/22 17:02
Worklog Time Spent: 10m
Work Description: zcsizmadia edited a comment on pull request #1536:
URL: https://github.com/apache/avro/pull/1536#issuecomment-1050063877
Option 2. SImilar to the previous one. This can be added to a common.targets
file or Directory.build.props:
```
<!-- Push NuGet package to nuget.org -->
<Target Name="PushToNuGet" Condition="'$(Configuration)' == 'Release' AND
'$(PublishPackage)' == 'true'" AfterTargets="Pack">
<Exec Command="dotnet nuget push
$(MSBuildProjectDirectory)\bin\$(Configuration)\$(AssemblyName).$(Version).nupkg
-s https://api.nuget.org/v3/index.json -k $(NuGetKey)"/>
</Target>
```
```
dotnet pack -c Release -p:Version=1.2.3 -p:PublishPackage=true
-p:NuGetKey=YOUR_KEY Avro.sln
```
This will create the nupkgs and publish them with the same command (for all
the projects where IsPackable=true)
--
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: 732497)
Time Spent: 7h 40m (was: 7.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: 7h 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)