Andy Gocke

Results 208 comments of Andy Gocke

According to https://man7.org/linux/man-pages/man5/elf.5.html, the spec for build-id is > This section is used to hold an ID that uniquely identifies the contents of the ELF image. Different files with the...

> I suppose the question really is, "what debug symbols should be loaded for a dotnet binary"? If the answer is the generic debug symbols for the launcher then this...

SDK. The proposal as stands is some sort of property to affect all publish scenarios, which is core SDK logic.

@sebastienros I think there might be two separate scenarios here, actually. 1) Produce no symbols at all, anywhere. 2) Don't produce symbols during publish, but do produce them for build....

Seems like a cool idea — do you have a particular implementation in mind?

In theory a custom proxy should be able to do this, and you probably wouldn’t need custom syntax. Interesting that rust does it by a trait, haven’t seen that before.

My original expectation was that you could use a proxy like in https://github.com/serdedotnet/serde/blob/main/samples/ProxySerialize.cs The problem is that you can't specify the parameters inside the attribute, because attributes are only allowed...

I'll think about this, but my bias is against it. Basically, my design goal for the serde project is very high control and customizability and very low maintenance (because this...

Thanks I’ll take a look this weekend

Ah, I completely misunderstood the initial intent of this feature! I thought it was about fixed-width fields, not fixed-width file format. This makes so much more sense now. The general...