git-credential-manager icon indicating copy to clipboard operation
git-credential-manager copied to clipboard

Release 2.5.0 is still not on nuget.org

Open kzu opened this issue 1 year ago • 8 comments

See https://www.nuget.org/packages/git-credential-manager#versions-body-tab

kzu avatar May 01 '24 07:05 kzu

Is there a reason why this is still not on nuget?

XVincentX avatar May 31 '24 13:05 XVincentX

If you need to use it exclusively as a library from NS2.0, you can use Devlooped.CredentialManager which provides the portable v2.5.0 implementation.

kzu avatar Jun 04 '24 05:06 kzu

What I ended up doing was to modify the json file internally and and a rollForward option so it would run on .net 8:

{
  "runtimeOptions": {
    "tfm": "net7.0",
+   "rollForward":"Major",
    "framework": {
      "name": "Microsoft.NETCore.App",
      "version": "7.0.13"
    },
    "configProperties": {
      "System.Reflection.Metadata.MetadataUpdater.IsSupported": false
    }
  }
}

XVincentX avatar Jun 04 '24 11:06 XVincentX

We are currently facing some issues publishing a correctly signed package to Nuget.org. Due to recent sponsorship/corporate funding priority changes, work on GCM has unfortunately slowed significantly.

Please watch this space!

mjcheetham avatar Jun 05 '24 18:06 mjcheetham

We are currently facing some issues publishing a correctly signed package to Nuget.org. Due to recent sponsorship/corporate funding priority changes, work on GCM has unfortunately slowed significantly.

Please watch this space!

In the meantime, can you at least add a note to the installation instructions not to use the dotnet tool method of installation until further notice?

This is kind of a big deal, seems to me.

Thanks!

stephengtuggy avatar Jun 20 '24 23:06 stephengtuggy

Hi is there any progress on releasing new GCM version 2.5.1 to dotnet tool? Currently 2.4.1 is the latest one. Thanks!

ThePlenkov avatar Sep 11 '24 11:09 ThePlenkov

Workaround using dotnet tool:

  1. Download latest version (.nupkg file) from https://github.com/git-ecosystem/git-credential-manager/releases
  2. Put downloaded .nuget file in directory of your choice
  3. Run dotnet tool update --global git-credential-manager --version 2.5.1 --add-source /path/to/dir/with/nupkg (substitute version with newest)

m3nowak avatar Sep 18 '24 10:09 m3nowak

GCM 2.6 which targets .NET 8 has just been released on nuget.org

https://www.nuget.org/packages/git-credential-manager/2.6.0

Originally posted by @mjcheetham in https://github.com/git-ecosystem/git-credential-manager/issues/1702#issuecomment-2383279743

xtqqczze avatar Sep 30 '24 16:09 xtqqczze