Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to GCM v2.1.1 #50

Merged
merged 1 commit into from
May 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CredentialManager.sln
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
.editorconfig = .editorconfig
.netconfig = .netconfig
.github\workflows\build.yml = .github\workflows\build.yml
src\Directory.Build.props = src\Directory.Build.props
src\Directory.Build.targets = src\Directory.Build.targets
src\NuGetize.targets = src\NuGetize.targets
.github\workflows\publish.yml = .github\workflows\publish.yml
readme.md = readme.md
Expand Down
2 changes: 1 addition & 1 deletion external/gcm
Submodule gcm updated from 8b4735 to 61cd8e
2 changes: 1 addition & 1 deletion src/CredentialManager/CredentialManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public static ICredentialStore Create(string? @namespace = default)
else if (PlatformUtils.IsMacOS())
return new MacOSKeychain(@namespace);
else if (PlatformUtils.IsLinux())
return new CommandContext(Array.Empty<string>()).CredentialStore;
return new CommandContext().CredentialStore;
else
throw new PlatformNotSupportedException();
}
Expand Down
7 changes: 6 additions & 1 deletion src/CredentialManager/CredentialManager.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,12 @@ Usage:

var store = CredentialStore.Create();
</Description>
</PropertyGroup>
</PropertyGroup>

<ItemGroup>
<!-- Only here just to satisfy a bogus package reference check on ~\.nuget\packages\microsoft.identity.client.nativeinterop\0.13.7\buildtransitive\net461\Microsoft.Identity.Client.NativeInterop.targets -->
<PackageReference Include="PolySharp" Version="1.13.1" PrivateAssets="all" Pack="false" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\external\gcm\src\shared\Core\Core.csproj" PrivateAssets="all" />
Expand Down