From 1addf404e9c32e2f1506c3c0cb1e7e3dccad4911 Mon Sep 17 00:00:00 2001 From: Jesse de Wit Date: Fri, 28 Jul 2023 20:19:14 +0200 Subject: [PATCH] update C# install guide to nuget package --- src/guide/install.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/guide/install.md b/src/guide/install.md index 178969a..56b85d2 100644 --- a/src/guide/install.md +++ b/src/guide/install.md @@ -29,11 +29,11 @@ We recommend using our official Swift package: [breez/breez-sdk-swift](https://g We recommmend using the official npm package: ```console -$ npm install https://github.com/breez/breez-sdk-react-native/releases/download/0.1.4/breeztech-react-native-breez-sdk-0.1.4.tgz +npm install https://github.com/breez/breez-sdk-react-native/releases/download/0.1.4/breeztech-react-native-breez-sdk-0.1.4.tgz ``` or ```console -$ yarn add https://github.com/breez/breez-sdk-react-native/releases/download/0.1.4/breeztech-react-native-breez-sdk-0.1.4.tgz +yarn add https://github.com/breez/breez-sdk-react-native/releases/download/0.1.4/breeztech-react-native-breez-sdk-0.1.4.tgz ``` ## Go @@ -41,12 +41,16 @@ $ yarn add https://github.com/breez/breez-sdk-react-native/releases/download/0.1 We recommend using our official Go package: [breez/breez-sdk-go](https://github.com/breez/breez-sdk-go). ```console -$ go get github.com/breez/breez-sdk-go +go get github.com/breez/breez-sdk-go ``` ## C# -Currently c# is built from source only. Please visit the [sdk-bindings](https://github.com/breez/breez-sdk/tree/main/libs/sdk-bindings#c) project for instructions. +We recommend using our official C# package: [Breez.Sdk](https://www.nuget.org/packages/Breez.Sdk). + +```console +dotnet add package Breez.Sdk +``` ## rust