[ 
https://issues.apache.org/jira/browse/AVRO-3388?focusedWorklogId=732480&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-732480
 ]

ASF GitHub Bot logged work on AVRO-3388:
----------------------------------------

                Author: ASF GitHub Bot
            Created on: 24/Feb/22 16:48
            Start Date: 24/Feb/22 16:48
    Worklog Time Spent: 10m 
      Work Description: zcsizmadia commented on pull request #1536:
URL: https://github.com/apache/avro/pull/1536#issuecomment-1050051899


   @RyanSkraba Here is a possible solution to simplify the automation if many 
packages has to be published is:
   
   1. Set the `IsPackable` prop in the csproj files to true only for the 
packages which should be pushed.
   2. `dotnet pack ...` will create nupkg files only for projects where 
IsPackable=true
   3. Create a simple target  named e.g. PushToNuget, which is executing 
`dotnet nuget push if IsPackable=true
   
   In this case the deployment is pretty much:
   ```
   dotnet pack -c Release -p:Version=1.2.3 Avro.sln
   dotnet build -t:PushToNuget Avro.sln
   ```
   
   Maybe add these steps to ./build.sh asa `publish` command?
   
   So the  the pushed packages are determined by the the csproj files, 
whichever is marked to  be packable, and have a nupkg output.
    Of course this makes sense if there are many packages, otherwise the effott 
is the same.


-- 
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: 732480)
    Time Spent: 7h 20m  (was: 7h 10m)

> 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 20m
>  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)

Reply via email to