ero
ero
CC#
Created by nathanAjacobs on 2/10/2025 in #help
How can I reference multiple generics in summary?
Very specific to this example and not a solution to the overall problem, but might do you some good in this case
14 replies
CC#
Created by nathanAjacobs on 2/10/2025 in #help
How can I reference multiple generics in summary?
Though if I may say, you have little reason to just return a Task without marking the method as async and awaiting it on the other end. Documentation for methods like that very rarely include that they return a Task<T> and moreso focus on the T
14 replies
CC#
Created by nathanAjacobs on 2/10/2025 in #help
How can I reference multiple generics in summary?
worth mentioning that this is ide-specific. these do not even work in vscode, for example.
14 replies
CC#
Created by nathanAjacobs on 2/10/2025 in #help
How can I reference multiple generics in summary?
there are simply more important things :p
14 replies
CC#
Created by nathanAjacobs on 2/10/2025 in #help
How can I reference multiple generics in summary?
14 replies
CC#
Created by Jacko on 2/10/2025 in #help
Securing a plugin system:
unless you wanna go with project templates or source generation
27 replies
CC#
Created by Jacko on 2/10/2025 in #help
Securing a plugin system:
but yeah this part of it isn't so nice to work with, it's not super easy to provide users with an actual ready to go solution
27 replies
CC#
Created by Jacko on 2/10/2025 in #help
Securing a plugin system:
extism might just have a way to query exports
27 replies
CC#
Created by Jacko on 2/10/2025 in #help
Securing a plugin system:
that's an exceptional case i wouldn't handle
27 replies
CC#
Created by Jacko on 2/10/2025 in #help
Securing a plugin system:
but you can also simply throw if an export doesn't exist :p
27 replies
CC#
Created by Jacko on 2/10/2025 in #help
Securing a plugin system:
i'm not sure
27 replies
CC#
Created by Jacko on 2/10/2025 in #help
Securing a plugin system:
via c#?
27 replies
CC#
Created by Jacko on 2/10/2025 in #help
Securing a plugin system:
from one project to another
27 replies
CC#
Created by Jacko on 2/10/2025 in #help
Securing a plugin system:
you cannot forward exports
27 replies
CC#
Created by Jacko on 2/10/2025 in #help
Securing a plugin system:
if you would like the plugin to send data to the host, it might be more complicated, if not impossible
27 replies
CC#
Created by Jacko on 2/10/2025 in #help
Securing a plugin system:
it's possible to write a compatibility layer for this direction, yes
27 replies
CC#
Created by Jacko on 2/10/2025 in #help
Securing a plugin system:
your own plugin sdk
27 replies
CC#
Created by Jacko on 2/10/2025 in #help
Securing a plugin system:
you would provide a compatibility layer, of course
27 replies
CC#
Created by Jacko on 2/10/2025 in #help
Securing a plugin system:
wasm gives you the extra advantage of being able to write the plugins in any language that can compile to wasm (which is basically every language)
27 replies
CC#
Created by Jacko on 2/10/2025 in #help
Securing a plugin system:
and for even more complicated data transfer (wasm will only allow you to pass basic integers), you can allocate some shared memory, i believe, that both sides can read? i'm not sure on that one, but check out Extism if you wanna go that route. it's a library for wasm plugin creation
27 replies