I followed the setup instructions :
- created a solution and a scraper inside
- cloned MBEventS and MBEvents.UI just next to it (code from today 2026年03月31日)
- updated the csproj file with content from setup instructions
- copied provided minimal class methods to be implemented
When I launch mbEvents.Ui from within rider in debug mode it crashes at startup when parsing this url : avares://MbEvents.Ui/App.axaml
with error :
System.UriFormatException: Invalid URI: The Authority/Host could not be parsed.
at System.Uri.CreateThis(String uri, Boolean dontEscape, UriKind uriKind, UriCreationOptions& creationOptions)
at System.Uri..ctor(String uriString)
at CompiledAvaloniaXaml.XamlIlContext.Context`1..ctor(IServiceProvider, Object[], String)
at MbEventS.Ui.App.!XamlIlPopulate(IServiceProvider, App) in /home/me/perso/AlcatrazScraper/MbEventS.Ui/App.axaml:line 1
at MbEventS.Ui.App.!XamlIlPopulateTrampoline(App)
at MbEventS.Ui.App.Initialize() in /home/me/perso/AlcatrazScraper/MbEventS.Ui/App.axaml.cs:line 15
at Avalonia.AppBuilder.SetupUnsafe()
at Avalonia.AppBuilder.Setup()
at Avalonia.AppBuilder.SetupWithLifetime(IApplicationLifetime lifetime)
at Avalonia.ClassicDesktopStyleApplicationLifetimeExtensions.StartWithClassicDesktopLifetime(AppBuilder builder, String[] args, Action`1 lifetimeBuilder)
at MbEventS.Ui.Program.Main(String[] args) in /home/me/perso/AlcatrazScraper/MbEventS.Ui/Program.cs:line 12
folders hierarchy is in screenshot
error from Rider IDE is in a screenshot as well
when I launch in normal mode (not debug) I can see the UI appear with my scraper listed in the scrapers section.
But when I click scrape nothing happens (I added some logging instructions to follow execution flow since I can't follow in debug mode with breakpoints, but none of my logging instructions is printed in the console)
my OS : fedora
dotnet install provided by Rider IDE v 10.0.201
I pushed the code here : https://codeberg.org/bayang/AlcatrazScraper