Veikko Eeva
Veikko Eeva
I think this has relevance to https://github.com/Anidetrix/rollup-plugin-styles/issues/200 too, so cross-linking.
@dfreeman Yeah, a familiar problem. I maintain some pieces here and there too and try to help fixing here and there. But for this web tooling I'm just too noob...
Noted also at https://github.com/Anidetrix/rollup-plugin-styles/issues/200 where processing CSS in template liters (CSS-in-JSS) became a thought.
To add some information to people coming to this thread, I suppose the official support matrix is at https://codeql.github.com/docs/codeql-overview/supported-languages-and-frameworks/ and it does not include .NET 6 yet. I checked at...
> This might not work if you don't use autobuild. Ah, thanks! This could be a useful piece of information. I have not thought about using autobuild, not even adding...
@RehanSaeed That would be a very welcomed addition. My use case is actually one you see in the code snippet, a web service that ingests JSON-LD data of various sorts,...
@RehanSaeed To add from the Twitter conversation, one use case about using the data in and out from the API has been something similar to http://adaptivecards.io/ and thinking this is...
One article that might give useful idea to deserialization: http://skrift.io/articles/archive/bulletproof-interface-deserialization-in-jsonnet/ or alternatively without attributes as in https://stackoverflow.com/questions/36969500/json-net-custom-jsonconverter-with-data-types.
Prototyping some code that might give a direction... ``` public void ConfigureServices(IServiceCollection services) { services.AddMvc().AddJsonOptions(jsonOptions => { Func isConvertible = type => typeof(Thing).IsAssignableFrom(type); Func reader = (jsonReader, objectType, existingValue, serializer)...
@RehanSaeed Yep. It would be useful to have a system wherein I could receive JSON-LD data and then, say, by looking at @type I could construct the actual class. To...