Skip to content

Commit f8f6c3d

Browse files
committed
Update readme & WinUI3 version prefix
1 parent 0dd924b commit f8f6c3d

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@ and [FirebaseUI](https://firebase.google.com/docs/auth).
88

99
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.
1010

11-
The solution consists of 4 libraries - a base one and 3 platform specific ones:
11+
The solution consists of 5 libraries - a base one and 4 platform specific ones:
1212
* FirebaseAuthentication<strong>.net</strong> targets [.NET Standard 2.0](https://github.com/dotnet/standard/blob/master/docs/versions.md)
1313
* FirebaseAuthentication<strong>.WPF</strong> targets [WPF on .NET 6](https://github.com/dotnet/wpf)
1414
* 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)
15+
* FirebaseAuthentication<strong>.WinUI3</strong> targets [WinUI3](https://learn.microsoft.com/en-us/windows/apps/winui/winui3/)
1516
* FirebaseAuthentication<strong>.Maui</strong> targets Maui (*TODO*)
1617

1718
## Installation
@@ -25,6 +26,7 @@ dotnet add package FirebaseAuthentication.net
2526
# Platform specific FirebaseUI (has dependency on base package)
2627
dotnet add package FirebaseAuthentication.WPF
2728
dotnet add package FirebaseAuthentication.UWP
29+
dotnet add package FirebaseAuthentication.WinUI3
2830
dotnet add package FirebaseAuthentication.Maui
2931
```
3032

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

5255
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`).
5356

src/Auth.UI.WinUI3/Auth.UI.WinUI3.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3+
<VersionPrefix>4.0.0</VersionPrefix>
34
<TargetFramework>net6.0-windows10.0.19041.0</TargetFramework>
45
<TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion>
56
<RootNamespace>Firebase.Auth.UI</RootNamespace>

0 commit comments

Comments
 (0)