Meir Blachman

Results 154 comments of Meir Blachman

@ReubenBond I updated the description of this issue with a suggested plan for getting this done safely

@ReubenBond are we okay upgrading the sdk version?

the Command-line configuration provider https://learn.microsoft.com/en-us/dotnet/core/extensions/configuration-providers#command-line-configuration-provider almost matches the command-line arguments that exist today. I think the command-line arguments can wait (still use the Options class) but adding support for environment-variables...

@mmiscool try here https://github.com/node-projects/esprima-next

for sql-server I found the following way: ```cs var sqlServer = builder.AddSqlServer("sql-server") .WithDataVolume("data"); sqlServer.WithCommand("open-in-vscode", "Open in VS Code", async context => { var rawConnectionString = await sqlServer.Resource.GetConnectionStringAsync(); if (string.IsNullOrEmpty(rawConnectionString)) {...

@bart-vmware is this still an issue?

@JeppeSN I think this is already supported by the Microsoft rolsyn analyzers (ex: https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/compiler-messages/cs4014?f1url=%3FappId%3Droslyn%26k%3Dk(CS4014) for example: ![image](https://github.com/fluentassertions/fluentassertions.analyzers/assets/9786571/dedb6af5-3275-4d72-b300-56040b02f64e) you can enforce this using `.editorconfig`

you can use https://github.com/Microsoft/vs-threading/blob/main/doc/analyzers/VSTHRD110.md Basically add https://www.nuget.org/packages/Microsoft.VisualStudio.Threading and then you will get diagnostics ![image](https://github.com/user-attachments/assets/aa414260-1d30-4e9c-8f49-f23aceb743c6)