Programmatic usage? #1296
-
Is there a way to use GCM as a library in a .NET app? We're using libgit2sharp and it'd be good to take advantage for existing support for authentication as well. |
Beta Was this translation helpful? Give feedback.
Answered by
ldennington
Jun 20, 2023
Replies: 1 comment
-
While we do not have a library version of GCM available, libgit2sharp should allow you to set a |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
ldennington
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
While we do not have a library version of GCM available, libgit2sharp should allow you to set a
CredentialsHandler
when you're doing a fetch or other operation. In that callback, you can always shell out to GCM callingget
to acquire a credential and eitherstore
orerase
after the operation either succeeds or fails.