@@ -41,7 +41,7 @@ Developer documentation, build guides, and API references are available at:
4141
4242### Prerequisites
4343
44- - .NET 8 SDK or later
44+ - .NET 9 SDK or later
4545- Visual Studio 2022 or later (with .NET MAUI workload installed)
4646- Git
4747
@@ -88,20 +88,20 @@ cd Spixi
88882. **Build and Run the Application:**
8989 - To build and run the application on a specific platform, use the following command:
9090 ```bash
91- dotnet build -t:Run -f net8 .0-android # For Android
92- dotnet build -t:Run -f net8 .0-ios # For iOS
93- dotnet build -t:Run -f net8 .0-windows10.0.19041.0 -p:Platform=x64 # For Windows
94- dotnet build -t:Run -f net8 .0-maccatalyst # For macOS
91+ dotnet build -t:Run -f net9 .0-android # For Android
92+ dotnet build -t:Run -f net9 .0-ios # For iOS
93+ dotnet build -t:Run -f net9 .0-windows10.0.19041.0 -p:Platform=x64 # For Windows
94+ dotnet build -t:Run -f net9 .0-maccatalyst # For macOS
9595 ```
9696 - Ensure you have the appropriate SDKs and emulators/simulators installed for the target platform.
9797
98983. **Build the Application in Release mode:**
9999 - To build and run the application on a specific platform, use the following command:
100100 ```bash
101- dotnet build --configuration Release -f net8 .0-android # For Android
102- dotnet build --configuration Release -f net8 .0-ios # For iOS
103- dotnet build --configuration Release -f net8 .0-windows10.0.19041.0 -p:Platform=x64 # For Windows
104- dotnet build --configuration Release -f net8 .0-maccatalyst # For macOS
101+ dotnet build --configuration Release -f net9 .0-android # For Android
102+ dotnet build --configuration Release -f net9 .0-ios # For iOS
103+ dotnet build --configuration Release -f net9 .0-windows10.0.19041.0 -p:Platform=x64 # For Windows
104+ dotnet build --configuration Release -f net9 .0-maccatalyst # For macOS
105105 ```
106106
107107### Additional Notes
0 commit comments