Skip to content

Commit

Permalink
Update readme & WinUI3 version prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
bezysoftware committed Sep 6, 2023
1 parent 0dd924b commit f8f6c3d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@ and [FirebaseUI](https://firebase.google.com/docs/auth).

The libraries provide a drop-in auth solution that handles the flows for signing in users with email addresses and passwords, Identity Provider Sign In including Google, Facebook, GitHub, Twitter, Apple, Microsoft and anonymous sign-in.

The solution consists of 4 libraries - a base one and 3 platform specific ones:
The solution consists of 5 libraries - a base one and 4 platform specific ones:
* FirebaseAuthentication<strong>.net</strong> targets [.NET Standard 2.0](https://github.com/dotnet/standard/blob/master/docs/versions.md)
* FirebaseAuthentication<strong>.WPF</strong> targets [WPF on .NET 6](https://github.com/dotnet/wpf)
* FirebaseAuthentication<strong>.UWP</strong> targets [UWP with min version 19041](https://docs.microsoft.com/en-us/windows/uwp/updates-and-versions/choose-a-uwp-version)
* FirebaseAuthentication<strong>.WinUI3</strong> targets [WinUI3](https://learn.microsoft.com/en-us/windows/apps/winui/winui3/)
* FirebaseAuthentication<strong>.Maui</strong> targets Maui (*TODO*)

## Installation
Expand All @@ -25,6 +26,7 @@ dotnet add package FirebaseAuthentication.net
# Platform specific FirebaseUI (has dependency on base package)
dotnet add package FirebaseAuthentication.WPF
dotnet add package FirebaseAuthentication.UWP
dotnet add package FirebaseAuthentication.WinUI3
dotnet add package FirebaseAuthentication.Maui
```

Expand All @@ -48,6 +50,7 @@ There are currently 3 sample projects in the [samples folder](/samples/):
* .NET Core Console application (uses only the base library, no UI)
* WPF sample with UI
* UWP sample with UI
* WinUI3 sample with UI

Feel free to clone the repo and check them out, just don't forget to add your custom API keys and other setup (typically in `Program.cs` or `App.xaml.cs`).

Expand Down
1 change: 1 addition & 0 deletions src/Auth.UI.WinUI3/Auth.UI.WinUI3.csproj
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<VersionPrefix>4.0.0</VersionPrefix>
<TargetFramework>net6.0-windows10.0.19041.0</TargetFramework>
<TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion>
<RootNamespace>Firebase.Auth.UI</RootNamespace>
Expand Down

0 comments on commit f8f6c3d

Please sign in to comment.