Jon Sequeira

Results 700 comments of Jon Sequeira

After talking this through with a few people I think that it's best not to serialize the original principal. This has a risk of leaking secrets, such as claims. And...

Rather than use exceptions for control flow, I like to extract the validation logic into something that returns an answer directly, e.g.: ```csharp public class MyType { public MyType(string foo,...

I believe there's a package missing from the preview feed. You can potentially bypass this by using a release version of the SDK, by setting an environment variable `DisableArcade` to...

I don't know that the number of kernels in and of itself would be an issue but we've never done any perf tests on this kind of scenario. The first...

It's been on the back burner for a minute and is a very complex change. I'll be updating the details above as more of the design details are worked out....

@IntegerMan It's available now in VS Code Insiders.

If you use the `Kernel.AddDirective` overload and use a command type that you define, then the command instance passed to the handler will be deserialized using System.Text.Json. The JSON is...

I don't know. That's possible. Another possibility is that the TFM isn't supported by the System.Management.Automation (aka PowerShell) package. If you create a simple console app referencing this package, instantiate...

TFM is the [target framework moniker](https://learn.microsoft.com/en-us/dotnet/standard/frameworks). Assemblies are often found inside TFM-specific subfolders in a NuGet package and I'm guessing from the outcome of your experiment that on Pop_OS it's...

This is not currently supported.