yegorandrosov
yegorandrosov
Any news on this topic? I would like to have something like this as well
Found workaround ``` var catalog = new DependencyContextAssemblyCatalog(); var types = catalog.GetAssemblies().SelectMany(x => x.GetTypes()); var modules = types .Where(t => !t.IsAbstract && typeof(ICarterModule).IsAssignableFrom(t) && (t.IsPublic || t.IsNestedPublic) ).ToList(); builder.Services.AddCarter(configurator: c...
I have the same issue with the same stacktrace. My project was converted from Website project to Web application project type I can't reproduce it on freshly created project though....
Guess it has something to do with dynamic compilation process Website project type has. Web application might do the same thing since when I removed most of the folders from...
grouping would also be useful for our use case especially some complex cases like {% assign osVersions = model.Variants | group_by: 'CustomFields["97f9af79-a4ea-4766-8eac-b61da5d89de7"].Value' %}
@sebastienros thanks a lot i think indexer does not work with map filter? but i figured out that dot works {% assign osVersions = model.Variants | map: 'CustomFields.97f9af79-a4ea-4766-8eac-b61da5d89de7.Value' | uniq...
or this issue is related to Æsthetic?
I am not sure if i switched over to some other formatter or changing from `` to `` helped