8000 Add proxy options by bording · Pull Request #2065 · libgit2/libgit2sharp · GitHub
[go: up one dir, main page]

Skip to content

Add proxy options #2065

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

Merged
merged 9 commits into from
Dec 3, 2023
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Make ProxyOptions sealed to satisfy test
  • Loading branch information
bording committed Nov 27, 2023
commit 7bf2e3b803b3a3b477e4c4afa978e589ef7e2bce
2 changes: 1 addition & 1 deletion LibGit2Sharp/ProxyOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace LibGit2Sharp
{
public class ProxyOptions
public sealed class ProxyOptions
{
public ProxyType ProxyType { get; set; } = ProxyType.Auto;

Expand Down
0