Martin Andreas Ullrich

Results 54 comments of Martin Andreas Ullrich

@mudit-01 this is about egress, i'm looking for TCP ingress

What would be needed for TCP ingress? As in: does it interfere with mTLS config in other listeners / filter chains etc, parts of work that would need to be...

The library used for interaction with the service management APIs has this feature in the current public version, surfaced as `WithFailureAcitons` on `ServiceDefinitionBuilder` (see a [unit test config](https://github.com/dasMulli/dotnet-win32-service/blob/26df62f9e923ef8fc2016823824c2387fdb17b00/test/DasMulli.Win32.ServiceUtils.Tests/Win32ServiceManager/ServiceUpdateTests.cs#L24-L42) for an...

Wouldn't this be a perfect fit for a global tool now? `dotnet tool install -g dotnet-csi` / `dotnet tool install -g csi`

`dotnet-script` is fine just as well. I like to mess around with interactive mode from time to time. a few minutes ago I wanted to check some decimal numbers for...

The "csproj + Program.cs = Build Script" is basically what nuke (https://github.com/nuke-build/nuke) promotes and makes easy. Note that in theory `dotnet run` should support passing all sorts of args after...

In this case `?? default` on the Nullable type results in a call to `.GetValueOrDefault()` - https://sharplab.io/#v2:EYLgZgpghgLgrgJwgZwLRII5wJZICaoC2EhwECyANHiANQA+AAgEwCMAsAFCMDMABCz4BhPgG8ufSQP6MALHwCyACgCUYiVM3YAdjAD8fKHwC8fPBDBQ4AGxgBuDZsk79fYCcN89B85Zv3HPgBfLiCgA In this case any `nullableInt ?? default` expression is of type `int` (and...

+1 for a native MSBuild format. It would be awesome to have it as "simple" as ```xml ```

@JeffCyr there's a ms-built version at https://github.com/Microsoft/MSBuildSdks/tree/master/src/Traversal that does that same you are doing but also covers some more edge cases (but is certainly less user-friendly / documented and lacks...

Yes, this feature is only supported when building with windows as this uses APIs available in windows to modify the .exe file - https://github.com/dotnet/runtime/blob/0fa26b3b1452d11f131ebdb1f389bbf1a1c75faa/src/installer/managed/Microsoft.NET.HostModel/ResourceUpdater.cs#L177 /cc