-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from passwordless/readme
Added initial readme
- Loading branch information
Showing
1 changed file
with
44 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,44 @@ | ||
# passwordless-dotnet | ||
Passwordless .NET SDK | ||
# Passwordless .NET SDK | ||
|
||
The official [Bitwarden Passwordless.dev](https://passwordless.dev/) .NET library, supporting .NET Standard 2.0+, .NET Core 2.0+ (and soon .NET Framework 4.6.1+). | ||
|
||
## Installation | ||
|
||
Using the [.NET Core command-line interface (CLI) tools][dotnet-core-cli-tools]: | ||
|
||
```sh | ||
dotnet add package Passwordless | ||
``` | ||
|
||
Using the [NuGet Command Line Interface (CLI)][nuget-cli]: | ||
|
||
```sh | ||
nuget install Passwordless | ||
``` | ||
|
||
Using the [Package Manager Console][package-manager-console]: | ||
|
||
```powershell | ||
Install-Package Passwordless | ||
``` | ||
|
||
From within Visual Studio: | ||
|
||
1. Open the Solution Explorer. | ||
2. Right-click on a project within your solution. | ||
3. Click on *Manage NuGet Packages...* | ||
4. Click on the *Browse* tab and search for "Passwordless". | ||
5. Click on the Passwordless package, select the appropriate version in the | ||
right-tab and click *Install*. | ||
|
||
## Documentation | ||
|
||
For a comprehensive list of examples, check out the [API | ||
documentation][api-docs]. | ||
|
||
|
||
|
||
[api-docs]:https://docs.passwordless.dev/guide/get-started.html | ||
[dotnet-core-cli-tools]: https://docs.microsoft.com/en-us/dotnet/core/tools/ | ||
[nuget-cli]: https://docs.microsoft.com/en-us/nuget/tools/nuget-exe-cli-reference | ||
[package-manager-console]: https://docs.microsoft.com/en-us/nuget/tools/package-manager-console |