James Newton-King

Results 646 comments of James Newton-King

Here is my scenario: .NET Aspire configures apps to export telemetry every second. It does this because it knows the apps are running in a development environment and it makes...

> My expectation is it should be up to end-users to turn it off, but I haven't thought fully through the implications.. I don't want to require more code in...

The intent of the migration app is it starts, runs any data migration, then shuts down to release resources. This is how it works in local development. That seems like...

Neat! This samples repo is for folks who are building real-world Aspire apps to look at. What you've done here is cool, but I don't think it falls into that...

Add a test that a HTTP/3 stream isn't reused when aborted?

That mainly focuses on launch profiles for project resources. There should be a doc that details the config options that can be added to the host launchSettings.json

@mitchdenny is this something you could do when working on docs post 9.0 lockdown?

They do: JToken.LoadAsync I'm not going to think about async serialization this release.

@benaadams What is the recommendation on exposing a valuetype Task on a public API? The serializer will call many `Task` methods on JsonReader/JsonWriter which won't be cached. Async serialization will...

Ok. This is what I added to make my test pass: ```cs navigationManager.LocationChanged += (sender, e) => { cut.SetParametersAndRender(builder => { builder.Add(m => m.ApplicationName, "TestApp2"); }); }; ``` It's surprising...