AnnaSasDev
Extending a razor component so I can make developer experience a bit easier
Hey there, this might be a qustion that has no answer but Im making a small library so I can easily use Lucide icons in my blazor web app.
Ive made a small component that is basically a wrapper around the
svg
data:
LucideIcon.razor:
which can then be used like
But I wanted to make something so I could immediatly have
4 replies
Issue with Github Actions when using Node & Dotnet together
So this is quite a bit of a weird issue Ive been stuck on for a few hours now, no AI can help and reading docs isnt working either.
Ive made a small library so I can use Lucide Icons as Components within Blazor, and it works> The issue isnt with the code, but with the github action.
I rely on downloading the lucide-static npm package, which is then used by my source generator in
InfiniLore.Lucide.Generators.Raw
to extract all the data that I need.
Somewhere somehow I dont understand how github actions is installing the node module correctly, but then dotnet cant find it ...
Ill link the repo directly, because I think just giving some snippets will fill everything up with random files too much
https://github.com/InfiniLore/lucide.blazor
Thanks for any help in advance
(The repo is not in its final state but is functional, as I want to try and see if I can implement some kind of system close to tree-shaking so I have the option to only send over icons used by the library in Wasm mode, so we arent sending over tons of unused data )2 replies
Issue with configuring Auth0 and the "Allowed Callback url"
Hey I've been trying to setup auth0 for a project of mine now for the past few days and I don't have a clue what I'm doing wrong anymore.
The login and logout code are working perfectly, but on
auth/callback
it doesn't ever trigger.
in Auth0's application dashboard, I have set my allowed Callback Urls to https://localhost:7059/callback
, so all should in theory work as far as I understand. (the server is defined to run on port 7059 and is running well thanks to me knowing the login and logout system work.
I've tried to look up for the same issue, and although I have founds lots forum posts on their own website, I still can't figure out what I'm doing wrong.
Any help would be greatly appreciated.13 replies
Roslyn not finding a referenced package
Hey there
Over the past months I've really fallen in love with writing my own Roslyn code generators. My Discriminated Unions library heavily relies on this, and because I have noticed that some of my generators share the same basic code, I wanted to write a simple library I could use in my various projects : https://github.com/code-of-chaos/cs-code_of_chaos-generator_tools
The issue now is that I try and use the uploaded nuget package in the consumer Roslyn generator found here: https://github.com/AterraEngine/unions-cs/blob/core/src/AterraEngine.Unions.Generators/AterraEngine.Unions.Generators.csproj
Within the IDE (rider) everything seems to be fine in the generator's code as it discovers all the types within the package and I'm able to use them when I'm writing code, but whenever I try and use the generator no code appears and I get the error :
I've been stuck at this for a few hours now, and I'm lost at where I've created some issue
8 replies