-
Notifications
You must be signed in to change notification settings - Fork 359
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Portal] MAUI Template & Link Updates (#4929)
<!-- start pr-codex --> ## PR-Codex overview This PR focuses on enhancing the `.NET SDK Portal` and its documentation, updating package versions, and adding new features related to MAUI integration, while also improving the sidebar navigation. ### Detailed summary - Added `.NET SDK Portal` link to the sidebar in `sidebar.tsx`. - Updated `Thirdweb` package version from `1.0.0` to `2.4.0` in `page.mdx`. - Added `MAUI Integration` link to the sidebar in `sidebar.tsx`. - Updated reference link for `Full Reference` in `sidebar.tsx`. - Introduced new content for MAUI integration in `page.mdx`. - Enhanced documentation with new constants and functions in `utils/page.mdx`. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex -->
- Loading branch information
1 parent
5c6f288
commit 11de1f3
Showing
5 changed files
with
146 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import { OpenSourceCard, DocImage, createMetadata } from "@doc"; | ||
|
||
export const metadata = createMetadata({ | ||
title: "Thirdweb .NET SDK in MAUI", | ||
description: | ||
"A guide on how to integrate the Thirdweb .NET SDK into your MAUI projects to add blockchain functionality.", | ||
}); | ||
|
||
# Integrating into MAUI Projects | ||
|
||
Thirdweb's .NET SDK is fully compatible with .NET MAUI, allowing you to integrate wallets and blockchain functionality into your cross-platform applications. | ||
|
||
## Configuration | ||
|
||
### Adding the Package to Your Project | ||
|
||
To add the Thirdweb .NET SDK to your MAUI project, you'll simply need to run: | ||
|
||
```bash | ||
dotnet add package Thirdweb | ||
``` | ||
|
||
## Example Project | ||
|
||
An example MAUI project integrating the Thirdweb .NET SDK is available below. | ||
|
||
<OpenSourceCard | ||
title="MAUI Template" | ||
description="A MAUI project template with the Thirdweb .NET SDK integrated." | ||
href="https://github.com/thirdweb-example/dotnet-maui" | ||
isLibrary={false} | ||
/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters