Startup Issue on macOS with multiple build targets

When there are multiple build targets in e.g. a Blazor MAUI project, Blazor Studio immediately starts building the first target when it is launched.

So when I want to build a MacCatalyst app, I have to wait several minutes until it has finished building the Android app.The build process cannot be stopped and MacCatalyst cannot be chosen from the dropdown menu until the build has finished.

The correct behavior should be no build action until the user has chosen a build target.

Hi @Harald_Schneider,

I am afraid a build is always required by Radzen Blazor Studio. You can try changing the order of your target frameworks by editing the csproj file.

I see. macCatalyst is ordered before Android in my project file. So I assume, that Blazor Studio rearranges them itself in alphabetical order. Or it just takes the 1st entry of the dropdown.

Got it :slight_smile:

Changing the order here fixed it:

    <PropertyGroup>
        <TargetFrameworks>net9.0-maccatalyst;net9.0-android;net9.0-ios</TargetFrameworks>

Thanks for the solution!