diff --git a/maui-toolkit/Installation.md b/maui-toolkit/Installation.md index 1c6e3c06..7c4cef1e 100644 --- a/maui-toolkit/Installation.md +++ b/maui-toolkit/Installation.md @@ -15,18 +15,24 @@ NuGet is a package management system used in Visual Studio, simplifying the proc ## Installation using Package Manager UI -The **NuGet Package Manager UI** llows you to search for, install, uninstall, and update Syncfusion Maui Toolkit packages easily. Follow these steps to install the Syncfusion.Maui.Toolkit package in your MAUI application: +The **NuGet Package Manager UI** allows you to search for, install, uninstall, and update Syncfusion Maui Toolkit packages easily. Follow these steps to install the Syncfusion.Maui.Toolkit package in your MAUI application: 1. Right-click on your MAUI application or solution in the Solution Explorer and select **Manage NuGet Packages...** + ![Manage NuGet Packages add-in](images/ManageNuGet.png) + Alternatively, open the **Tools** menu, hover over **NuGet Package Manager**, and choose **Manage NuGet Packages for Solution...** 2. In the **Manage NuGet Packages** window, navigate to the Browse tab and search for **Syncfusion.Maui.Toolkit**. N> Ensure that [nuget.org](https://api.nuget.org/v3/index.json) is selected as the package source. If not, follow the [instructions](https://learn.microsoft.com/en-us/nuget/consume-packages/install-use-packages-visual-studio#package-sources) to configure it. + ![Maui NuGet Packages Search](images/NuGetsearch.png) + 3. Select the **Syncfusion.Maui.Toolkit** package, choose the appropriate version, and click **Install**. Accept the license terms to complete the installation. + ![Maui NuGet Packages Install](images/InstallNuGet.png) + 4. Once the installation is complete, your application will have all the necessary **Syncfusion assemblies** required to begin developing using the **Syncfusion .NET MAUI Toolkit components**. ## Installation using Dotnet (.NET) CLI @@ -48,6 +54,8 @@ Follow the below instructions to use the dotnet CLI command to install the Syncf 3. After installation, inspect the `.csproj` file of your project to confirm the package has been added. + ![Maui Package Entry ](images/packageentry.png) + 4. Run [dotnet restore](https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-restore?tabs=netcore2x) to install all dependencies and ensure that your project is ready. ## Installation using Package Manager Console @@ -56,13 +64,19 @@ The **Package Manager Console** provides an efficient way to install the **Sync 1. In Visual Studio, navigate to **Tools -> NuGet Package Manager -> Package Manager Console**. + ![Package Manager Console ](images/console.png) + 2. In the console, install the **Syncfusion.Maui.Toolkit** package with the following command: ```Install-Package Syncfusion.Maui.Toolkit``` + ![Package Manager Console Output ](images/ConsoleInstallationOutput.png) + N> To specify the version or target a specific project, use: ```Install-Package Syncfusion.Maui.Toolkit -Version 1.0.0 - ProjectName ``` + + ![Package Manager Console Output ](images/ConsoleInstallationProjectOutput.png) 3. Once the installation completes, the console will display confirmation, and your application will now have access to the **Syncfusion .NET MAUI Toolkit components**. diff --git a/maui-toolkit/images/ConsoleInstallationOutput.png b/maui-toolkit/images/ConsoleInstallationOutput.png new file mode 100644 index 00000000..90c232d4 Binary files /dev/null and b/maui-toolkit/images/ConsoleInstallationOutput.png differ diff --git a/maui-toolkit/images/ConsoleInstallationProjectOutput.png b/maui-toolkit/images/ConsoleInstallationProjectOutput.png new file mode 100644 index 00000000..994c90b2 Binary files /dev/null and b/maui-toolkit/images/ConsoleInstallationProjectOutput.png differ diff --git a/maui-toolkit/images/InstallNuGet.png b/maui-toolkit/images/InstallNuGet.png new file mode 100644 index 00000000..84443daf Binary files /dev/null and b/maui-toolkit/images/InstallNuGet.png differ diff --git a/maui-toolkit/images/ManageNuGet.png b/maui-toolkit/images/ManageNuGet.png new file mode 100644 index 00000000..9605cb50 Binary files /dev/null and b/maui-toolkit/images/ManageNuGet.png differ diff --git a/maui-toolkit/images/NuGetsearch.png b/maui-toolkit/images/NuGetsearch.png new file mode 100644 index 00000000..267453de Binary files /dev/null and b/maui-toolkit/images/NuGetsearch.png differ diff --git a/maui-toolkit/images/console.png b/maui-toolkit/images/console.png new file mode 100644 index 00000000..a6b03672 Binary files /dev/null and b/maui-toolkit/images/console.png differ diff --git a/maui-toolkit/images/packageentry.png b/maui-toolkit/images/packageentry.png new file mode 100644 index 00000000..7410652b Binary files /dev/null and b/maui-toolkit/images/packageentry.png differ