Jack Kerr

Results 6 comments of Jack Kerr

I don't fully understand the inner workings on it but the [documentation on the wiki](https://github.com/pythonnet/pythonnet/wiki/Threading#what-to-do-when-calling-python-from-c) is fairly clear that if you are using Python in a multi threaded environment then...

To add my 2 cents to this discussion I do really like the suggestions that were proposed in #23067. More often then not I find myself not wanting global filters...

I would love some more docs on this too. I was trying to integrate a Node application with Aspire with a reference to an ASP.NET Core server. When doing this...

Instead of using trying to detect the apphost, you should use the apphost to set the configuration instead. So your code would look something like this ```cs public Task GetServiceUriAsync(string...

As a workaround that works right now, you can get the start and stop command from the resources annotations. For example ```cs var startCommand = resourceBuilder .Resource .Annotations .OfType() .First(c...

I made a custom command for myself to stop a project, run `dotnet build` on the command line and then start it again after it was done. So I had...