Skip to content

Commit 7dd14d8

Browse files
added config changes
1 parent 61f111a commit 7dd14d8

3 files changed

Lines changed: 12 additions & 1 deletion

File tree

.claude/settings.local.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,16 @@
1313
"Bash(dotnet build:*)",
1414
"Bash(ls c:/Users/bhill/source/repos/sslstore-cagateway/*.json)",
1515
"Bash(node -e \":*)",
16-
"Bash(xargs grep:*)"
16+
"Bash(xargs grep:*)",
17+
"Bash(dotnet tool:*)",
18+
"Bash(powershell -Command \"[System.Reflection.Assembly]::LoadFrom\\(''C:\\\\Users\\\\bhill\\\\.nuget\\\\packages\\\\keyfactor.anygateway.ianycaplugin\\\\3.0.0\\\\lib\\\\net6.0\\\\Keyfactor.AnyGateway.IAnyCAPlugin.dll''\\).GetTypes\\(\\) | ForEach-Object { Write-Host $_.FullName; $_.GetMethods\\(\\) | ForEach-Object { Write-Host '' '' $_.Name ''\\('' \\($_.GetParameters\\(\\) | ForEach-Object { $_.ParameterType.Name + '' '' + $_.Name }\\) ''\\)'' } }\")",
19+
"Bash(powershell -Command \"try { $asm = [System.Reflection.Assembly]::LoadFrom\\(''C:\\\\Users\\\\bhill\\\\.nuget\\\\packages\\\\keyfactor.anygateway.ianycaplugin\\\\3.0.0\\\\lib\\\\net6.0\\\\Keyfactor.AnyGateway.IAnyCAPlugin.dll''\\); $asm.GetTypes\\(\\) } catch [System.Reflection.ReflectionTypeLoadException] { $_.Exception.Types | Where-Object { $_ -ne $null } | ForEach-Object { Write-Host $_.FullName; $_.GetMethods\\(\\) | ForEach-Object { Write-Host '' '' $_.Name ''\\('' \\($_.GetParameters\\(\\) | ForEach-Object { $_.ParameterType.ToString\\(\\) + '' '' + $_.Name }\\) ''\\)'' } } }\")",
20+
"Bash(powershell -Command \"try { $asm = [System.Reflection.Assembly]::LoadFrom\\(''C:\\\\Users\\\\bhill\\\\.nuget\\\\packages\\\\keyfactor.anygateway.ianycaplugin\\\\3.0.0\\\\lib\\\\net6.0\\\\Keyfactor.AnyGateway.IAnyCAPlugin.dll''\\); $asm.GetTypes\\(\\) } catch [System.Reflection.ReflectionTypeLoadException] { $_.Exception.Types | Where-Object { $_ -ne $null } | ForEach-Object { Write-Host $_.FullName; try { $_.GetMethods\\(\\) | ForEach-Object { Write-Host \\('' '' + $_.Name\\) } } catch { Write-Host '' \\(methods not loadable\\)'' } } }\")",
21+
"Bash(xxd /c/Users/bhill/.nuget/packages/keyfactor.anygateway.ianycaplugin/3.0.0/lib/net6.0/Keyfactor.AnyGateway.IAnyCAPlugin.dll)",
22+
"Bash(dotnet ildasm:*)",
23+
"Bash(dotnet-ildasm /c/Users/bhill/.nuget/packages/keyfactor.anygateway.ianycaplugin/3.0.0/lib/net6.0/Keyfactor.AnyGateway.IAnyCAPlugin.dll)",
24+
"Bash(python -c \":*)",
25+
"Bash(powershell -Command \"$bytes = [System.IO.File]::ReadAllBytes\\(''C:\\\\Users\\\\bhill\\\\.nuget\\\\packages\\\\keyfactor.anygateway.ianycaplugin\\\\3.0.0\\\\lib\\\\net6.0\\\\Keyfactor.AnyGateway.IAnyCAPlugin.dll''\\); $text = [System.Text.Encoding]::ASCII.GetString\\($bytes\\); $matches = [regex]::Matches\\($text, ''[A-Za-z_][A-Za-z0-9_]{5,}''\\); $matches.Value | Sort-Object -Unique | Where-Object { $_ -match ''emplate|nroll|roduct|nnot|onfig|lugin|arameter|ingle|ync|evoke|ing$|alidat|nitializ|GetCA|IAny'' }\")"
1726
]
1827
}
1928
}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -416,3 +416,4 @@ FodyWeavers.xsd
416416
*.msix
417417
*.msm
418418
*.msp
419+
.claude/settings.local.json

SslStoreCaProxy/SslStoreCaProxy.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ public Task ValidateCAConnectionInfo(Dictionary<string, object> connectionInfo)
9191
throw new ArgumentException($"The following required fields are missing or empty: {string.Join(", ", missingFields)}");
9292
}
9393

94+
_config = config;
9495
_logger.MethodExit();
9596
return Ping();
9697
}

0 commit comments

Comments
 (0)