Christopher Leigh

Results 25 comments of Christopher Leigh

This implementation doesn't have heartbeat implementation. Are you maybe using [this project](https://github.com/Yaffle/EventSource/blob/d6a56711436bc6c48f845c303a8f49e217064413/src/eventsource.js#L855)?

A keep-alive or heartbeat would be required to detect this. If you control both sides you can implement it yourself outside this library. Server (send heartbeat every x seconds) ->...

@qlands - I didn't catch you were reporting against the example server. My bad. Writing to an abnormally interrupted socket should always trigger an exception. Very odd what you're seeing....

I can confirm `dotnet add {PROJECT.CSPROJ} package {NUGET_PACKAGE}` will auto-detect CPM - modifying `Directory.Packages.props` and the csproj automatically.

Not that I've found, but [the steps are pretty concise](https://marketplace.visualstudio.com/items?itemName=patcx.vscode-nuget-gallery): 1) Add Directory.Packages.props - I think it could start life as simply `` 2) Add `true` to Directory.Build.Props I assume...

Boo, just found that `dotnet new` is not resulting in a CPM compatible csproj - it adds the version attributes which result in build errors. I'll research this a bit...

Confirmed, `dotnet new` is blind to CPM. I think it's a minor inconvenience to manually remove `Version` attributes from the generated csproj files. * **I believe this is outside the...

@AgentEnder what do you think is the scope here? 1) enable CPM - always ok? 2) migration to convert existing nuget tracking to CPM 3) remove sync and add nuget...

The presence of the packages file will force folks into CPM. Meaning they will see the restore errors similar to what’s above. They could of course disable CPM it from...