Greg Bachraty

Results 21 comments of Greg Bachraty

I am able to run the quickstart app with the same launch.json as above and it runs to completion. The only difference is a patch version increment in VS Code...

I'm running against an older Oracle JDK: ``` java version "1.8.0_201" Java(TM) SE Runtime Environment (build 1.8.0_201-b09) Java HotSpot(TM) 64-Bit Server VM (build 25.201-b09, mixed mode) ``` Bud does not...

@CZEMacLeod > Unfortunately I couldn't find any more information on how launchSettings commands were resolved - obviously there is Program, IIS Express and Docker but it is not obvious how...

This lights up the `Add > Docker Support...` in the project context menu. Doesn't seem to work properly though. ``` xml {349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc} ```

I hope not. Writing an IDebugLaunchProvider is no easy task. Most of these errors indicate that some MSBuild property is not set but is expected by the docker package. This...

Tried this with a simple console app, the only difference was the target framework. Works for net5, same error message for net48. Unfortunately it looks like the `ContainerBuildAndLaunch` task in...

AFAIK the package is not OSS. Where did you get the source?

> The console logging thread won't hang the app because it's [a background thread](https://github.com/dotnet/runtime/blob/55fb7ef977e7d120dc12f0960edcff0739d7ee0e/src/libraries/Microsoft.Extensions.Logging.Console/src/ConsoleLoggerProcessor.cs#L27) but your repro will because it isn't. Like I said > in order to enforce graceful...

+1 for owned entity types. Today if I try to remove an inline owned entity: ```c# ctx.Customers.ExecuteUpdate(setters => setters.SetProperty(b => b.ShippingAddress, (Address?)null)); // The following lambda argument to 'SetProperty' does...

I've been experiencing this and it's usually the metadata document (.well-known/openid-configuration) that fails to fetch. It's not a failure status code, it just gets aborted. The workaround for now is...