You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I went through the manual steps in the Quick Steps guide. I get an error on App.axaml. "Unable to resolve type ApplicationLoader from namespace https://github.com/mrphil2105/MvvmElegance" Have I missed a step somewhere? Any help is appreciated. I've pasted the App.axaml below - BSI is the program name. Thanks!
I think I had a similar issue when testing with Avalonia version 11. Are you using version 11? I have yet to update the library to support version 11. I will look into it when I have more time (I am currently busy with my exams at university).
What is your project structure? And what packages did you install and in what projects? Your ViewModels project should have MvvmElegance installed from NuGet. The Views project should have MvvmElegance.Avalonia installed, and optionally MvvmElegance.Avalonia.Autofac if you use Autofac. If you don't have a split projects you just install all these packages in the same project.
I went through the manual steps in the Quick Steps guide. I get an error on App.axaml. "Unable to resolve type ApplicationLoader from namespace https://github.com/mrphil2105/MvvmElegance" Have I missed a step somewhere? Any help is appreciated. I've pasted the App.axaml below - BSI is the program name. Thanks!
<Application x:Class="BSI.App" xmlns="https://github.com/avaloniaui" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:e="https://github.com/mrphil2105/MvvmElegance" xmlns:local="using:BSI">
`<Application.Resources>
<e:ApplicationLoader>
<e:ApplicationLoader.Bootstrapper>
<local:Bootstrapper />
</e:ApplicationLoader.Bootstrapper>
</e:ApplicationLoader>
</Application.Resources>
<Application.Styles>
</Application.Styles>
`
The text was updated successfully, but these errors were encountered: