Lucas Trzesniewski
Lucas Trzesniewski
Looks like you're looking for [Roslyn](https://github.com/dotnet/roslyn).
Hmm, this reminds me of something: https://github.com/ltrzesniewski/InlineIL.Fody/blob/b257467995801ee2f3a4db44aef86acfcceccbc9/src/InlineIL.Fody/Model/TypeRefBuilder.cs#L174-L181 I wrote the following comment: > TypeRefs from different assemblies get imported as MetadataType.Class > since this information is not stored in the...
See #803 (Fody uses this to sign its output)
I'm not the Cecil author but I believe I can help here. I see people asking about this here quite often, so I suppose this should be added to the...
> I don't see a Cecil equivalent to `Type.MakeGenericType(Type[])`, e.g. `TypeReference.MakeGenericType(TypeReference[])` doesn't exist, so how does that _work_? You instantiate `new GenericInstanceType(TypeReference)`, then add the type arguments to its `GenericArguments`...
I sent this PR a while ago, but I *believe* this is by design. The [code in the demo](https://github.com/punker76/gong-wpf-dragdrop/pull/453/files#diff-2328291f3d3520919f990b380cd1270bd0140f313d3806f9ed5df0a9c1e04b19R10-R11) uses `TargetItem` to identify whether the target item accepts children: ```C#...
> I would still suggest that it would be very useful to add a reference to where it was **_actually_** dropped if this PR or something similar is ever merged....
Though, it seems the current library design may make it necessary to keep the `TargetItem` as-is because of the `InsertPosition` property. I'm not sure how to solve this properly... 😕
Alternatively, if klogg could read from stdin, that would be awesome, but I suppose it would be complicated to handle...
Actually, the real use case is to feed the output of [`kubectl logs --follow`](https://kubernetes.io/docs/reference/generated/kubectl/kubectl-commands#logs) to klogg easily. This command tails the logs of a service deployed in Kubernetes, and it...