├── .editorconfig ├── .gitattributes ├── .github ├── actions │ └── dotnet │ │ └── action.yml ├── dependabot.yml ├── dotnet.json ├── release.yml └── workflows │ ├── build.yml │ ├── changelog.config │ ├── changelog.yml │ ├── dotnet-env.yml │ ├── dotnet-file.yml │ ├── includes.yml │ ├── os-matrix.json │ ├── pages.yml │ └── triage.yml ├── .gitignore ├── .netconfig ├── CredentialManager.sln ├── Directory.Build.rsp ├── Directory.Solution.targets ├── Gemfile ├── _config.yml ├── assets ├── css │ └── style.scss └── images │ ├── gcm.png │ └── gcm.svg ├── changelog.md ├── license.txt ├── readme.md └── src ├── Analyzers ├── Analyzers.csproj └── Devlooped.CredentialManager.targets ├── Core ├── .editorconfig ├── AssemblyUtils.cs ├── Authentication │ └── OAuth │ │ ├── HttpListenerExtensions.cs │ │ ├── IOAuth2WebBrowser.cs │ │ ├── Json │ │ ├── DeviceAuthorizationEndpointResponseJson.cs │ │ ├── ErrorResponseJson.cs │ │ └── TokenEndpointResponseJson.cs │ │ ├── OAuth2AuthorizationCodeResult.cs │ │ ├── OAuth2Client.cs │ │ ├── OAuth2Constants.cs │ │ ├── OAuth2CryptographicGenerator.cs │ │ ├── OAuth2DeviceCodeResult.cs │ │ ├── OAuth2Exception.cs │ │ ├── OAuth2ServerEndpoints.cs │ │ ├── OAuth2SystemWebBrowser.cs │ │ └── OAuth2TokenResult.cs ├── Base64UrlConvert.cs ├── BrowserUtils.cs ├── ChildProcess.cs ├── CommandContext.cs ├── Constants.cs ├── ConvertUtils.cs ├── Core.csproj ├── Credential.cs ├── CredentialCacheStore.cs ├── CredentialStore.cs ├── CurlCookie.cs ├── DictionaryExtensions.cs ├── DisposableObject.cs ├── EncodingEx.cs ├── EnsureArgument.cs ├── EnvironmentBase.cs ├── FileCredential.cs ├── FileSystem.cs ├── Git.cs ├── GitConfiguration.cs ├── GitConfigurationEntry.cs ├── GitConfigurationKeyComparer.cs ├── GitStreamReader.cs ├── GitVersion.cs ├── Gpg.cs ├── HttpClientFactory.cs ├── HttpRequestExtensions.cs ├── ICredentialStore.cs ├── ISessionManager.cs ├── ISystemPrompts.cs ├── ITerminal.cs ├── ITrace2Writer.cs ├── IniFile.cs ├── Interop │ ├── InteropException.cs │ ├── InteropUtils.cs │ ├── Linux │ │ ├── LinuxFileSystem.cs │ │ ├── LinuxSessionManager.cs │ │ ├── LinuxTerminal.cs │ │ ├── Native │ │ │ ├── Glib.cs │ │ │ ├── Gobject.cs │ │ │ ├── Libsecret.cs │ │ │ └── termios_Linux.cs │ │ ├── SecretServiceCollection.cs │ │ └── SecretServiceCredential.cs │ ├── MacOS │ │ ├── MacOSEnvironment.cs │ │ ├── MacOSFileSystem.cs │ │ ├── MacOSKeychain.cs │ │ ├── MacOSKeychainCredential.cs │ │ ├── MacOSSessionManager.cs │ │ ├── MacOSTerminal.cs │ │ └── Native │ │ │ ├── CoreFoundation.cs │ │ │ ├── LibC.cs │ │ │ ├── LibSystem.cs │ │ │ ├── SecurityFramework.cs │ │ │ └── termios_MacOS.cs │ ├── Posix │ │ ├── GpgPassCredentialStore.cs │ │ ├── Native │ │ │ ├── Fcntl.cs │ │ │ ├── Signal.cs │ │ │ ├── Stat.cs │ │ │ ├── Stdio.cs │ │ │ ├── Stdlib.cs │ │ │ ├── Termios.cs │ │ │ └── Unistd.cs │ │ ├── PosixEnvironment.cs │ │ ├── PosixFileDescriptor.cs │ │ ├── PosixFileSystem.Custom.cs │ │ ├── PosixFileSystem.cs │ │ ├── PosixSessionManager.cs │ │ └── PosixTerminal.cs │ ├── U8StringConverter.cs │ ├── U8StringMarshaler.cs │ └── Windows │ │ ├── DpapiCredentialStore.cs │ │ ├── Native │ │ ├── Advapi32.cs │ │ ├── CredUi.cs │ │ ├── Kernel32.cs │ │ ├── Ole32.cs │ │ ├── Shell32.cs │ │ ├── User32.cs │ │ └── Win32Error.cs │ │ ├── WindowsCredential.cs │ │ ├── WindowsCredentialManager.cs │ │ ├── WindowsEnvironment.cs │ │ ├── WindowsFileSystem.cs │ │ ├── WindowsProcessManager.cs │ │ ├── WindowsSessionManager.cs │ │ ├── WindowsSettings.cs │ │ ├── WindowsSystemPrompts.cs │ │ └── WindowsTerminal.cs ├── NameValueCollectionExtensions.cs ├── NullCredentialStore.cs ├── PlaintextCredentialStore.cs ├── PlatformUtils.cs ├── ProcessManager.cs ├── Settings.cs ├── StandardStreams.cs ├── StreamExtensions.cs ├── StringExtensions.cs ├── Trace.cs ├── Trace2.cs ├── Trace2CollectorWriter.cs ├── Trace2Exception.cs ├── Trace2FileWriter.cs ├── Trace2Message.cs ├── Trace2StreamWriter.cs ├── TraceUtils.cs ├── UriExtensions.cs └── WslUtils.cs ├── CredentialManager ├── CommandContext.cs ├── CredentialManager.cs ├── CredentialManager.csproj ├── exclude.txt └── readme.md ├── Directory.Build.props ├── Directory.Build.targets ├── Directory.props ├── Directory.targets ├── SponsorLink ├── Analyzer │ ├── Analyzer.csproj │ ├── GraceApiAnalyzer.cs │ ├── Properties │ │ └── launchSettings.json │ ├── StatusReportingAnalyzer.cs │ ├── StatusReportingGenerator.cs │ └── buildTransitive │ │ └── SponsorableLib.targets ├── Directory.Build.props ├── Directory.Build.targets ├── Library │ ├── Library.csproj │ ├── MyClass.cs │ ├── Resources.resx │ └── readme.md ├── SponsorLink.Analyzer.Tests.targets ├── SponsorLink.Analyzer.targets ├── SponsorLink │ ├── AnalyzerOptionsExtensions.cs │ ├── AppDomainDictionary.cs │ ├── DiagnosticsManager.cs │ ├── Resources.es-AR.resx │ ├── Resources.es.resx │ ├── Resources.resx │ ├── SponsorLink.cs │ ├── SponsorLink.csproj │ ├── SponsorLinkAnalyzer.cs │ ├── SponsorManifest.cs │ ├── SponsorStatus.cs │ ├── SponsorableLib.targets │ ├── Tracing.cs │ ├── buildTransitive │ │ └── Devlooped.Sponsors.targets │ └── sponsorable.md ├── SponsorLinkAnalyzer.sln ├── Tests │ ├── .netconfig │ ├── AnalyzerTests.cs │ ├── Attributes.cs │ ├── Extensions.cs │ ├── JsonOptions.cs │ ├── Resources.resx │ ├── Sample.cs │ ├── SponsorManifestTests.cs │ ├── SponsorableManifest.cs │ ├── Tests.csproj │ └── keys │ │ ├── kzu.key │ │ ├── kzu.key.jwk │ │ ├── kzu.key.txt │ │ ├── kzu.pub │ │ ├── kzu.pub.jwk │ │ ├── kzu.pub.txt │ │ └── sponsorlink.jwt ├── jwk.ps1 └── readme.md ├── Tests ├── Attributes.cs ├── EndToEnd.cs └── Tests.csproj └── icon.png /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/actions/dotnet/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/.github/actions/dotnet/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/dotnet.json: -------------------------------------------------------------------------------- 1 | [ 2 | "8.x" 3 | ] 4 | -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/changelog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/.github/workflows/changelog.config -------------------------------------------------------------------------------- /.github/workflows/changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/.github/workflows/changelog.yml -------------------------------------------------------------------------------- /.github/workflows/dotnet-env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/.github/workflows/dotnet-env.yml -------------------------------------------------------------------------------- /.github/workflows/dotnet-file.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/.github/workflows/dotnet-file.yml -------------------------------------------------------------------------------- /.github/workflows/includes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/.github/workflows/includes.yml -------------------------------------------------------------------------------- /.github/workflows/os-matrix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/.github/workflows/os-matrix.json -------------------------------------------------------------------------------- /.github/workflows/pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/.github/workflows/pages.yml -------------------------------------------------------------------------------- /.github/workflows/triage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/.github/workflows/triage.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/.gitignore -------------------------------------------------------------------------------- /.netconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/.netconfig -------------------------------------------------------------------------------- /CredentialManager.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/CredentialManager.sln -------------------------------------------------------------------------------- /Directory.Build.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/Directory.Build.rsp -------------------------------------------------------------------------------- /Directory.Solution.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/Directory.Solution.targets -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/Gemfile -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/_config.yml -------------------------------------------------------------------------------- /assets/css/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/assets/css/style.scss -------------------------------------------------------------------------------- /assets/images/gcm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/assets/images/gcm.png -------------------------------------------------------------------------------- /assets/images/gcm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/assets/images/gcm.svg -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/changelog.md -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/license.txt -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/readme.md -------------------------------------------------------------------------------- /src/Analyzers/Analyzers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Analyzers/Analyzers.csproj -------------------------------------------------------------------------------- /src/Analyzers/Devlooped.CredentialManager.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Analyzers/Devlooped.CredentialManager.targets -------------------------------------------------------------------------------- /src/Core/.editorconfig: -------------------------------------------------------------------------------- 1 | [**] 2 | generated_code = true -------------------------------------------------------------------------------- /src/Core/AssemblyUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/AssemblyUtils.cs -------------------------------------------------------------------------------- /src/Core/Authentication/OAuth/HttpListenerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Authentication/OAuth/HttpListenerExtensions.cs -------------------------------------------------------------------------------- /src/Core/Authentication/OAuth/IOAuth2WebBrowser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Authentication/OAuth/IOAuth2WebBrowser.cs -------------------------------------------------------------------------------- /src/Core/Authentication/OAuth/Json/DeviceAuthorizationEndpointResponseJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Authentication/OAuth/Json/DeviceAuthorizationEndpointResponseJson.cs -------------------------------------------------------------------------------- /src/Core/Authentication/OAuth/Json/ErrorResponseJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Authentication/OAuth/Json/ErrorResponseJson.cs -------------------------------------------------------------------------------- /src/Core/Authentication/OAuth/Json/TokenEndpointResponseJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Authentication/OAuth/Json/TokenEndpointResponseJson.cs -------------------------------------------------------------------------------- /src/Core/Authentication/OAuth/OAuth2AuthorizationCodeResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Authentication/OAuth/OAuth2AuthorizationCodeResult.cs -------------------------------------------------------------------------------- /src/Core/Authentication/OAuth/OAuth2Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Authentication/OAuth/OAuth2Client.cs -------------------------------------------------------------------------------- /src/Core/Authentication/OAuth/OAuth2Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Authentication/OAuth/OAuth2Constants.cs -------------------------------------------------------------------------------- /src/Core/Authentication/OAuth/OAuth2CryptographicGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Authentication/OAuth/OAuth2CryptographicGenerator.cs -------------------------------------------------------------------------------- /src/Core/Authentication/OAuth/OAuth2DeviceCodeResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Authentication/OAuth/OAuth2DeviceCodeResult.cs -------------------------------------------------------------------------------- /src/Core/Authentication/OAuth/OAuth2Exception.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Authentication/OAuth/OAuth2Exception.cs -------------------------------------------------------------------------------- /src/Core/Authentication/OAuth/OAuth2ServerEndpoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Authentication/OAuth/OAuth2ServerEndpoints.cs -------------------------------------------------------------------------------- /src/Core/Authentication/OAuth/OAuth2SystemWebBrowser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Authentication/OAuth/OAuth2SystemWebBrowser.cs -------------------------------------------------------------------------------- /src/Core/Authentication/OAuth/OAuth2TokenResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Authentication/OAuth/OAuth2TokenResult.cs -------------------------------------------------------------------------------- /src/Core/Base64UrlConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Base64UrlConvert.cs -------------------------------------------------------------------------------- /src/Core/BrowserUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/BrowserUtils.cs -------------------------------------------------------------------------------- /src/Core/ChildProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/ChildProcess.cs -------------------------------------------------------------------------------- /src/Core/CommandContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/CommandContext.cs -------------------------------------------------------------------------------- /src/Core/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Constants.cs -------------------------------------------------------------------------------- /src/Core/ConvertUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/ConvertUtils.cs -------------------------------------------------------------------------------- /src/Core/Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Core.csproj -------------------------------------------------------------------------------- /src/Core/Credential.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Credential.cs -------------------------------------------------------------------------------- /src/Core/CredentialCacheStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/CredentialCacheStore.cs -------------------------------------------------------------------------------- /src/Core/CredentialStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/CredentialStore.cs -------------------------------------------------------------------------------- /src/Core/CurlCookie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/CurlCookie.cs -------------------------------------------------------------------------------- /src/Core/DictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/DictionaryExtensions.cs -------------------------------------------------------------------------------- /src/Core/DisposableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/DisposableObject.cs -------------------------------------------------------------------------------- /src/Core/EncodingEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/EncodingEx.cs -------------------------------------------------------------------------------- /src/Core/EnsureArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/EnsureArgument.cs -------------------------------------------------------------------------------- /src/Core/EnvironmentBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/EnvironmentBase.cs -------------------------------------------------------------------------------- /src/Core/FileCredential.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/FileCredential.cs -------------------------------------------------------------------------------- /src/Core/FileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/FileSystem.cs -------------------------------------------------------------------------------- /src/Core/Git.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Git.cs -------------------------------------------------------------------------------- /src/Core/GitConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/GitConfiguration.cs -------------------------------------------------------------------------------- /src/Core/GitConfigurationEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/GitConfigurationEntry.cs -------------------------------------------------------------------------------- /src/Core/GitConfigurationKeyComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/GitConfigurationKeyComparer.cs -------------------------------------------------------------------------------- /src/Core/GitStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/GitStreamReader.cs -------------------------------------------------------------------------------- /src/Core/GitVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/GitVersion.cs -------------------------------------------------------------------------------- /src/Core/Gpg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Gpg.cs -------------------------------------------------------------------------------- /src/Core/HttpClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/HttpClientFactory.cs -------------------------------------------------------------------------------- /src/Core/HttpRequestExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/HttpRequestExtensions.cs -------------------------------------------------------------------------------- /src/Core/ICredentialStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/ICredentialStore.cs -------------------------------------------------------------------------------- /src/Core/ISessionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/ISessionManager.cs -------------------------------------------------------------------------------- /src/Core/ISystemPrompts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/ISystemPrompts.cs -------------------------------------------------------------------------------- /src/Core/ITerminal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/ITerminal.cs -------------------------------------------------------------------------------- /src/Core/ITrace2Writer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/ITrace2Writer.cs -------------------------------------------------------------------------------- /src/Core/IniFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/IniFile.cs -------------------------------------------------------------------------------- /src/Core/Interop/InteropException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/InteropException.cs -------------------------------------------------------------------------------- /src/Core/Interop/InteropUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/InteropUtils.cs -------------------------------------------------------------------------------- /src/Core/Interop/Linux/LinuxFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/Linux/LinuxFileSystem.cs -------------------------------------------------------------------------------- /src/Core/Interop/Linux/LinuxSessionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/Linux/LinuxSessionManager.cs -------------------------------------------------------------------------------- /src/Core/Interop/Linux/LinuxTerminal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/Linux/LinuxTerminal.cs -------------------------------------------------------------------------------- /src/Core/Interop/Linux/Native/Glib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/Linux/Native/Glib.cs -------------------------------------------------------------------------------- /src/Core/Interop/Linux/Native/Gobject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/Linux/Native/Gobject.cs -------------------------------------------------------------------------------- /src/Core/Interop/Linux/Native/Libsecret.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/Linux/Native/Libsecret.cs -------------------------------------------------------------------------------- /src/Core/Interop/Linux/Native/termios_Linux.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/Linux/Native/termios_Linux.cs -------------------------------------------------------------------------------- /src/Core/Interop/Linux/SecretServiceCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/Linux/SecretServiceCollection.cs -------------------------------------------------------------------------------- /src/Core/Interop/Linux/SecretServiceCredential.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/Linux/SecretServiceCredential.cs -------------------------------------------------------------------------------- /src/Core/Interop/MacOS/MacOSEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/MacOS/MacOSEnvironment.cs -------------------------------------------------------------------------------- /src/Core/Interop/MacOS/MacOSFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/MacOS/MacOSFileSystem.cs -------------------------------------------------------------------------------- /src/Core/Interop/MacOS/MacOSKeychain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/MacOS/MacOSKeychain.cs -------------------------------------------------------------------------------- /src/Core/Interop/MacOS/MacOSKeychainCredential.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/MacOS/MacOSKeychainCredential.cs -------------------------------------------------------------------------------- /src/Core/Interop/MacOS/MacOSSessionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/MacOS/MacOSSessionManager.cs -------------------------------------------------------------------------------- /src/Core/Interop/MacOS/MacOSTerminal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/MacOS/MacOSTerminal.cs -------------------------------------------------------------------------------- /src/Core/Interop/MacOS/Native/CoreFoundation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/MacOS/Native/CoreFoundation.cs -------------------------------------------------------------------------------- /src/Core/Interop/MacOS/Native/LibC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/MacOS/Native/LibC.cs -------------------------------------------------------------------------------- /src/Core/Interop/MacOS/Native/LibSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/MacOS/Native/LibSystem.cs -------------------------------------------------------------------------------- /src/Core/Interop/MacOS/Native/SecurityFramework.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/MacOS/Native/SecurityFramework.cs -------------------------------------------------------------------------------- /src/Core/Interop/MacOS/Native/termios_MacOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/MacOS/Native/termios_MacOS.cs -------------------------------------------------------------------------------- /src/Core/Interop/Posix/GpgPassCredentialStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/Posix/GpgPassCredentialStore.cs -------------------------------------------------------------------------------- /src/Core/Interop/Posix/Native/Fcntl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/Posix/Native/Fcntl.cs -------------------------------------------------------------------------------- /src/Core/Interop/Posix/Native/Signal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/Posix/Native/Signal.cs -------------------------------------------------------------------------------- /src/Core/Interop/Posix/Native/Stat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/Posix/Native/Stat.cs -------------------------------------------------------------------------------- /src/Core/Interop/Posix/Native/Stdio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/Posix/Native/Stdio.cs -------------------------------------------------------------------------------- /src/Core/Interop/Posix/Native/Stdlib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/Posix/Native/Stdlib.cs -------------------------------------------------------------------------------- /src/Core/Interop/Posix/Native/Termios.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/Posix/Native/Termios.cs -------------------------------------------------------------------------------- /src/Core/Interop/Posix/Native/Unistd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/Posix/Native/Unistd.cs -------------------------------------------------------------------------------- /src/Core/Interop/Posix/PosixEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/Posix/PosixEnvironment.cs -------------------------------------------------------------------------------- /src/Core/Interop/Posix/PosixFileDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/Posix/PosixFileDescriptor.cs -------------------------------------------------------------------------------- /src/Core/Interop/Posix/PosixFileSystem.Custom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/Posix/PosixFileSystem.Custom.cs -------------------------------------------------------------------------------- /src/Core/Interop/Posix/PosixFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/Posix/PosixFileSystem.cs -------------------------------------------------------------------------------- /src/Core/Interop/Posix/PosixSessionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/Posix/PosixSessionManager.cs -------------------------------------------------------------------------------- /src/Core/Interop/Posix/PosixTerminal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/Posix/PosixTerminal.cs -------------------------------------------------------------------------------- /src/Core/Interop/U8StringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/U8StringConverter.cs -------------------------------------------------------------------------------- /src/Core/Interop/U8StringMarshaler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/U8StringMarshaler.cs -------------------------------------------------------------------------------- /src/Core/Interop/Windows/DpapiCredentialStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/Windows/DpapiCredentialStore.cs -------------------------------------------------------------------------------- /src/Core/Interop/Windows/Native/Advapi32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/Windows/Native/Advapi32.cs -------------------------------------------------------------------------------- /src/Core/Interop/Windows/Native/CredUi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/Windows/Native/CredUi.cs -------------------------------------------------------------------------------- /src/Core/Interop/Windows/Native/Kernel32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/Windows/Native/Kernel32.cs -------------------------------------------------------------------------------- /src/Core/Interop/Windows/Native/Ole32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/Windows/Native/Ole32.cs -------------------------------------------------------------------------------- /src/Core/Interop/Windows/Native/Shell32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/Windows/Native/Shell32.cs -------------------------------------------------------------------------------- /src/Core/Interop/Windows/Native/User32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/Windows/Native/User32.cs -------------------------------------------------------------------------------- /src/Core/Interop/Windows/Native/Win32Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/Windows/Native/Win32Error.cs -------------------------------------------------------------------------------- /src/Core/Interop/Windows/WindowsCredential.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/Windows/WindowsCredential.cs -------------------------------------------------------------------------------- /src/Core/Interop/Windows/WindowsCredentialManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/Windows/WindowsCredentialManager.cs -------------------------------------------------------------------------------- /src/Core/Interop/Windows/WindowsEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/Windows/WindowsEnvironment.cs -------------------------------------------------------------------------------- /src/Core/Interop/Windows/WindowsFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/Windows/WindowsFileSystem.cs -------------------------------------------------------------------------------- /src/Core/Interop/Windows/WindowsProcessManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/Windows/WindowsProcessManager.cs -------------------------------------------------------------------------------- /src/Core/Interop/Windows/WindowsSessionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/Windows/WindowsSessionManager.cs -------------------------------------------------------------------------------- /src/Core/Interop/Windows/WindowsSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/Windows/WindowsSettings.cs -------------------------------------------------------------------------------- /src/Core/Interop/Windows/WindowsSystemPrompts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/Windows/WindowsSystemPrompts.cs -------------------------------------------------------------------------------- /src/Core/Interop/Windows/WindowsTerminal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Interop/Windows/WindowsTerminal.cs -------------------------------------------------------------------------------- /src/Core/NameValueCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/NameValueCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Core/NullCredentialStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/NullCredentialStore.cs -------------------------------------------------------------------------------- /src/Core/PlaintextCredentialStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/PlaintextCredentialStore.cs -------------------------------------------------------------------------------- /src/Core/PlatformUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/PlatformUtils.cs -------------------------------------------------------------------------------- /src/Core/ProcessManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/ProcessManager.cs -------------------------------------------------------------------------------- /src/Core/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Settings.cs -------------------------------------------------------------------------------- /src/Core/StandardStreams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/StandardStreams.cs -------------------------------------------------------------------------------- /src/Core/StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/StreamExtensions.cs -------------------------------------------------------------------------------- /src/Core/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/StringExtensions.cs -------------------------------------------------------------------------------- /src/Core/Trace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Trace.cs -------------------------------------------------------------------------------- /src/Core/Trace2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Trace2.cs -------------------------------------------------------------------------------- /src/Core/Trace2CollectorWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Trace2CollectorWriter.cs -------------------------------------------------------------------------------- /src/Core/Trace2Exception.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Trace2Exception.cs -------------------------------------------------------------------------------- /src/Core/Trace2FileWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Trace2FileWriter.cs -------------------------------------------------------------------------------- /src/Core/Trace2Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Trace2Message.cs -------------------------------------------------------------------------------- /src/Core/Trace2StreamWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/Trace2StreamWriter.cs -------------------------------------------------------------------------------- /src/Core/TraceUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/TraceUtils.cs -------------------------------------------------------------------------------- /src/Core/UriExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/UriExtensions.cs -------------------------------------------------------------------------------- /src/Core/WslUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Core/WslUtils.cs -------------------------------------------------------------------------------- /src/CredentialManager/CommandContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/CredentialManager/CommandContext.cs -------------------------------------------------------------------------------- /src/CredentialManager/CredentialManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/CredentialManager/CredentialManager.cs -------------------------------------------------------------------------------- /src/CredentialManager/CredentialManager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/CredentialManager/CredentialManager.csproj -------------------------------------------------------------------------------- /src/CredentialManager/exclude.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/CredentialManager/exclude.txt -------------------------------------------------------------------------------- /src/CredentialManager/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/CredentialManager/readme.md -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Directory.Build.targets -------------------------------------------------------------------------------- /src/Directory.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Directory.props -------------------------------------------------------------------------------- /src/Directory.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Directory.targets -------------------------------------------------------------------------------- /src/SponsorLink/Analyzer/Analyzer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/Analyzer/Analyzer.csproj -------------------------------------------------------------------------------- /src/SponsorLink/Analyzer/GraceApiAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/Analyzer/GraceApiAnalyzer.cs -------------------------------------------------------------------------------- /src/SponsorLink/Analyzer/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/Analyzer/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/SponsorLink/Analyzer/StatusReportingAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/Analyzer/StatusReportingAnalyzer.cs -------------------------------------------------------------------------------- /src/SponsorLink/Analyzer/StatusReportingGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/Analyzer/StatusReportingGenerator.cs -------------------------------------------------------------------------------- /src/SponsorLink/Analyzer/buildTransitive/SponsorableLib.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/Analyzer/buildTransitive/SponsorableLib.targets -------------------------------------------------------------------------------- /src/SponsorLink/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/Directory.Build.props -------------------------------------------------------------------------------- /src/SponsorLink/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/Directory.Build.targets -------------------------------------------------------------------------------- /src/SponsorLink/Library/Library.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/Library/Library.csproj -------------------------------------------------------------------------------- /src/SponsorLink/Library/MyClass.cs: -------------------------------------------------------------------------------- 1 | namespace SponsorableLib; 2 | 3 | public class MyClass 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /src/SponsorLink/Library/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/Library/Resources.resx -------------------------------------------------------------------------------- /src/SponsorLink/Library/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/Library/readme.md -------------------------------------------------------------------------------- /src/SponsorLink/SponsorLink.Analyzer.Tests.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/SponsorLink.Analyzer.Tests.targets -------------------------------------------------------------------------------- /src/SponsorLink/SponsorLink.Analyzer.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/SponsorLink.Analyzer.targets -------------------------------------------------------------------------------- /src/SponsorLink/SponsorLink/AnalyzerOptionsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/SponsorLink/AnalyzerOptionsExtensions.cs -------------------------------------------------------------------------------- /src/SponsorLink/SponsorLink/AppDomainDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/SponsorLink/AppDomainDictionary.cs -------------------------------------------------------------------------------- /src/SponsorLink/SponsorLink/DiagnosticsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/SponsorLink/DiagnosticsManager.cs -------------------------------------------------------------------------------- /src/SponsorLink/SponsorLink/Resources.es-AR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/SponsorLink/Resources.es-AR.resx -------------------------------------------------------------------------------- /src/SponsorLink/SponsorLink/Resources.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/SponsorLink/Resources.es.resx -------------------------------------------------------------------------------- /src/SponsorLink/SponsorLink/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/SponsorLink/Resources.resx -------------------------------------------------------------------------------- /src/SponsorLink/SponsorLink/SponsorLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/SponsorLink/SponsorLink.cs -------------------------------------------------------------------------------- /src/SponsorLink/SponsorLink/SponsorLink.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/SponsorLink/SponsorLink.csproj -------------------------------------------------------------------------------- /src/SponsorLink/SponsorLink/SponsorLinkAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/SponsorLink/SponsorLinkAnalyzer.cs -------------------------------------------------------------------------------- /src/SponsorLink/SponsorLink/SponsorManifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/SponsorLink/SponsorManifest.cs -------------------------------------------------------------------------------- /src/SponsorLink/SponsorLink/SponsorStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/SponsorLink/SponsorStatus.cs -------------------------------------------------------------------------------- /src/SponsorLink/SponsorLink/SponsorableLib.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/SponsorLink/SponsorableLib.targets -------------------------------------------------------------------------------- /src/SponsorLink/SponsorLink/Tracing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/SponsorLink/Tracing.cs -------------------------------------------------------------------------------- /src/SponsorLink/SponsorLink/buildTransitive/Devlooped.Sponsors.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/SponsorLink/buildTransitive/Devlooped.Sponsors.targets -------------------------------------------------------------------------------- /src/SponsorLink/SponsorLink/sponsorable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/SponsorLink/sponsorable.md -------------------------------------------------------------------------------- /src/SponsorLink/SponsorLinkAnalyzer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/SponsorLinkAnalyzer.sln -------------------------------------------------------------------------------- /src/SponsorLink/Tests/.netconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/Tests/.netconfig -------------------------------------------------------------------------------- /src/SponsorLink/Tests/AnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/Tests/AnalyzerTests.cs -------------------------------------------------------------------------------- /src/SponsorLink/Tests/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/Tests/Attributes.cs -------------------------------------------------------------------------------- /src/SponsorLink/Tests/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/Tests/Extensions.cs -------------------------------------------------------------------------------- /src/SponsorLink/Tests/JsonOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/Tests/JsonOptions.cs -------------------------------------------------------------------------------- /src/SponsorLink/Tests/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/Tests/Resources.resx -------------------------------------------------------------------------------- /src/SponsorLink/Tests/Sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/Tests/Sample.cs -------------------------------------------------------------------------------- /src/SponsorLink/Tests/SponsorManifestTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/Tests/SponsorManifestTests.cs -------------------------------------------------------------------------------- /src/SponsorLink/Tests/SponsorableManifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/Tests/SponsorableManifest.cs -------------------------------------------------------------------------------- /src/SponsorLink/Tests/Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/Tests/Tests.csproj -------------------------------------------------------------------------------- /src/SponsorLink/Tests/keys/kzu.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/Tests/keys/kzu.key -------------------------------------------------------------------------------- /src/SponsorLink/Tests/keys/kzu.key.jwk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/Tests/keys/kzu.key.jwk -------------------------------------------------------------------------------- /src/SponsorLink/Tests/keys/kzu.key.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/Tests/keys/kzu.key.txt -------------------------------------------------------------------------------- /src/SponsorLink/Tests/keys/kzu.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/Tests/keys/kzu.pub -------------------------------------------------------------------------------- /src/SponsorLink/Tests/keys/kzu.pub.jwk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/Tests/keys/kzu.pub.jwk -------------------------------------------------------------------------------- /src/SponsorLink/Tests/keys/kzu.pub.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/Tests/keys/kzu.pub.txt -------------------------------------------------------------------------------- /src/SponsorLink/Tests/keys/sponsorlink.jwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/Tests/keys/sponsorlink.jwt -------------------------------------------------------------------------------- /src/SponsorLink/jwk.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/jwk.ps1 -------------------------------------------------------------------------------- /src/SponsorLink/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/SponsorLink/readme.md -------------------------------------------------------------------------------- /src/Tests/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Tests/Attributes.cs -------------------------------------------------------------------------------- /src/Tests/EndToEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Tests/EndToEnd.cs -------------------------------------------------------------------------------- /src/Tests/Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/Tests/Tests.csproj -------------------------------------------------------------------------------- /src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlooped/CredentialManager/HEAD/src/icon.png --------------------------------------------------------------------------------