Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NuGet Installation process Images included #95

Open
wants to merge 2 commits into
base: development
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion maui-toolkit/Installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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 <Project Name>```

![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**.

Expand Down
Binary file added maui-toolkit/images/ConsoleInstallationOutput.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added maui-toolkit/images/InstallNuGet.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added maui-toolkit/images/ManageNuGet.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added maui-toolkit/images/NuGetsearch.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added maui-toolkit/images/console.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added maui-toolkit/images/packageentry.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.