Skip to content

Commit 8f52df0

Browse files
Update maui-blazor-web-app.md
1 parent a9d09ac commit 8f52df0

File tree

1 file changed

+3
-37
lines changed

1 file changed

+3
-37
lines changed

blazor/getting-started/maui-blazor-web-app.md

Lines changed: 3 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ Visual Studio provides **.NET MAUI Blazor Hybrid and Web App** template to creat
2222

2323
## Prerequisites
2424

25-
* .NET SDK 7.0 (Latest .NET SDK 7.0.101 or above)
25+
* .NET SDK 8.0 (Latest .NET SDK 8.0.101 or above)
2626

27-
* The latest preview of Visual Studio 2022 17.1 or above, with required workloads:
27+
* The latest preview of Visual Studio 2022 17.3 or above, with required workloads:
2828
* [Mobile development with .NET](https://learn.microsoft.com/en-us/dotnet/maui/get-started/installation?tabs=vswin)
2929
* ASP.NET and web development
3030

@@ -117,46 +117,12 @@ Before running the sample, make sure the mode is `Windows Machine`. Also to buil
117117

118118
![Build and run MAUI Blazor App](images/maui/windows-machine-mode.png)
119119

120-
N> If you want to run the application in Android or iOS refer [MAUI Getting Started](https://learn.microsoft.com/en-us/aspnet/core/blazor/hybrid/tutorials/maui?view=aspnetcore-8.0#run-the-app-in-the-android-emulator) for the setup.
120+
N> If you want to run the application in Android or iOS refer [MAUI Getting Started](https://learn.microsoft.com/en-us/aspnet/core/blazor/hybrid/tutorials/maui?view=aspnetcore-9.0#run-the-app-in-the-android-emulator) for the setup.
121121

122122
![MAUI Blazor App with Syncfusion Blazor Components](images/maui/maui-blazor-calendar.png)
123123

124124
N> Download demo from [GitHub](https://github.com/SyncfusionExamples/MAUI-Blazor-Hybrid-with-Blazor-Web-App-using-Syncfuion-Blazor-Components)
125125

126-
### How to solve deployment errors in Windows?
127-
128-
If you get error dialog like "There were deployment errors", Enable developer mode. For more details refer [Enable your device for development](https://learn.microsoft.com/en-us/windows/apps/get-started/enable-your-device-for-development).
129-
130-
![Enable developer mode in system settings](images/maui/enable-developer-mode.png)
131-
132-
<hr/>
133-
134-
### How to solve deployment errors in iOS?
135-
136-
In iOS code is statically compiled ahead of time, so, configure Syncfusion<sup style="font-size:70%">&reg;</sup> Blazor assemblies in `MtouchExtraArgs` tag for the iOS Release configuration in the project when deploy on a real device.
137-
138-
Below are possible errors if `MtouchExtraArgs` tag is not configured,
139-
1. App won't load on real device with error "An unhandled error has occurred" after you compile in Release mode with Visual Studio and deploy to real device.
140-
2. AOT related failures like [`Attempting to JIT compile method while running in aot-only mode`](https://github.com/xamarin/xamarin-macios/issues/12416)
141-
142-
```
143-
<PropertyGroup Condition="$(TargetFramework.Contains('-ios')) And $(Configuration.Contains('Release')) ">
144-
<UseInterpreter>true</UseInterpreter>
145-
<MtouchExtraArgs>--linkskip=Syncfusion.Blazor.Themes --linkskip=Syncfusion.Blazor.Inputs</MtouchExtraArgs>
146-
</PropertyGroup>
147-
```
148-
149-
Reference:
150-
* [Could not AOT the assembly of my App](https://learn.microsoft.com/en-us/answers/questions/396055/could-not-aot-the-assembly-of-my-app)
151-
152-
<hr/>
153-
154-
### How to solve "The project doesn't know how to run the profile Windows Machine" while running MAUI Blazor App?
155-
156-
* This issue has been fixed in most recent release of Visual Studio. For more details refer [here](https://developercommunity.visualstudio.com/t/the-project-doesnt-know-how-to-run-the-profile-win/1530395).
157-
158-
* You can also fix this error by installing [Single-project MSIX Packaging Tools](https://marketplace.visualstudio.com/items?itemName=ProjectReunion.MicrosoftSingleProjectMSIXPackagingToolsDev17).
159-
160126
## See also
161127

162128
### MAUI Blazor App

0 commit comments

Comments
 (0)