├── .editorconfig ├── .gitattributes ├── .github ├── stale.yml └── workflows │ └── dotnetcore.yml ├── .gitignore ├── Firebase.Auth.sln ├── LICENSE.txt ├── README.md ├── art ├── FirebaseLogo.128x128.png └── SampleWPF.png ├── samples ├── Console │ ├── Auth.Console.Sample.csproj │ └── Program.cs ├── UWP │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.png │ │ ├── Square44x44Logo.scale-400.png │ │ ├── StoreLogo.png │ │ ├── StoreLogo.scale-400.png │ │ └── firebase.png │ ├── Auth.UWP.Sample.csproj │ ├── LoginPage.xaml │ ├── LoginPage.xaml.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ └── strings │ │ ├── ar │ │ └── Resources.resw │ │ ├── bg │ │ └── Resources.resw │ │ ├── ca │ │ └── Resources.resw │ │ ├── cs │ │ └── Resources.resw │ │ ├── da │ │ └── Resources.resw │ │ ├── de │ │ └── Resources.resw │ │ ├── el │ │ └── Resources.resw │ │ ├── en │ │ └── Resources.resw │ │ ├── es │ │ └── Resources.resw │ │ ├── fa │ │ └── Resources.resw │ │ ├── fi │ │ └── Resources.resw │ │ ├── fil │ │ └── Resources.resw │ │ ├── fr │ │ └── Resources.resw │ │ ├── hi │ │ └── Resources.resw │ │ ├── hr │ │ └── Resources.resw │ │ ├── hu │ │ └── Resources.resw │ │ ├── in │ │ └── Resources.resw │ │ ├── it │ │ └── Resources.resw │ │ ├── iw │ │ └── Resources.resw │ │ ├── ja │ │ └── Resources.resw │ │ ├── ko │ │ └── Resources.resw │ │ ├── lt │ │ └── Resources.resw │ │ ├── lv │ │ └── Resources.resw │ │ ├── nl │ │ └── Resources.resw │ │ ├── no │ │ └── Resources.resw │ │ ├── pl │ │ └── Resources.resw │ │ ├── pt │ │ └── Resources.resw │ │ ├── ro │ │ └── Resources.resw │ │ ├── ru │ │ └── Resources.resw │ │ ├── sk │ │ └── Resources.resw │ │ ├── sl │ │ └── Resources.resw │ │ ├── sr-cyrl │ │ └── Resources.resw │ │ ├── sv │ │ └── Resources.resw │ │ ├── th │ │ └── Resources.resw │ │ ├── tr │ │ └── Resources.resw │ │ ├── uk │ │ └── Resources.resw │ │ ├── ur │ │ └── Resources.resw │ │ ├── vi │ │ └── Resources.resw │ │ └── zh │ │ └── Resources.resw ├── WinUI3 │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.png │ │ ├── Square44x44Logo.scale-400.png │ │ ├── StoreLogo.png │ │ ├── StoreLogo.scale-400.png │ │ └── firebase.png │ ├── Auth.WinUI3.Sample.csproj │ ├── LoginPage.xaml │ ├── LoginPage.xaml.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── Default.rd.xml │ │ └── launchSettings.json │ ├── UWPToWinAppSDKUpgradeHelpers.cs │ ├── app.manifest │ └── strings │ │ ├── ar │ │ └── Resources.resw │ │ ├── bg │ │ └── Resources.resw │ │ ├── ca │ │ └── Resources.resw │ │ ├── cs │ │ └── Resources.resw │ │ ├── da │ │ └── Resources.resw │ │ ├── de │ │ └── Resources.resw │ │ ├── el │ │ └── Resources.resw │ │ ├── en │ │ └── Resources.resw │ │ ├── es │ │ └── Resources.resw │ │ ├── fa │ │ └── Resources.resw │ │ ├── fi │ │ └── Resources.resw │ │ ├── fil │ │ └── Resources.resw │ │ ├── fr │ │ └── Resources.resw │ │ ├── hi │ │ └── Resources.resw │ │ ├── hr │ │ └── Resources.resw │ │ ├── hu │ │ └── Resources.resw │ │ ├── in │ │ └── Resources.resw │ │ ├── it │ │ └── Resources.resw │ │ ├── iw │ │ └── Resources.resw │ │ ├── ja │ │ └── Resources.resw │ │ ├── ko │ │ └── Resources.resw │ │ ├── lt │ │ └── Resources.resw │ │ ├── lv │ │ └── Resources.resw │ │ ├── nl │ │ └── Resources.resw │ │ ├── no │ │ └── Resources.resw │ │ ├── pl │ │ └── Resources.resw │ │ ├── pt │ │ └── Resources.resw │ │ ├── ro │ │ └── Resources.resw │ │ ├── ru │ │ └── Resources.resw │ │ ├── sk │ │ └── Resources.resw │ │ ├── sl │ │ └── Resources.resw │ │ ├── sr-cyrl │ │ └── Resources.resw │ │ ├── sv │ │ └── Resources.resw │ │ ├── th │ │ └── Resources.resw │ │ ├── tr │ │ └── Resources.resw │ │ ├── uk │ │ └── Resources.resw │ │ ├── ur │ │ └── Resources.resw │ │ ├── vi │ │ └── Resources.resw │ │ └── zh │ │ └── Resources.resw └── Wpf │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── Assets │ ├── firebase.ico │ └── firebase.png │ ├── Auth.Wpf.Sample.csproj │ ├── LoginPage.xaml │ ├── LoginPage.xaml.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MainWindow.xaml │ └── MainWindow.xaml.cs ├── src ├── Auth.UI.UWP │ ├── Auth.UI.UWP.csproj │ ├── Converters │ │ ├── AssetConverter.cs │ │ ├── BackgroundConverter.cs │ │ ├── BorderThicknessConverter.cs │ │ ├── ForegroundConverter.cs │ │ └── TitleConverter.cs │ ├── FirebaseUIControl.cs │ ├── Pages │ │ ├── EmailPage.xaml │ │ ├── EmailPage.xaml.cs │ │ ├── LinksFooter.xaml │ │ ├── LinksFooter.xaml.cs │ │ ├── ProvidersPage.xaml │ │ ├── ProvidersPage.xaml.cs │ │ ├── RecoverPasswordPage.xaml │ │ ├── RecoverPasswordPage.xaml.cs │ │ ├── SignInPage.xaml │ │ ├── SignInPage.xaml.cs │ │ ├── SignUpPage.xaml │ │ ├── SignUpPage.xaml.cs │ │ └── Styles.cs │ ├── Properties │ │ └── Auth.UI.UWP.rd.xml │ ├── Repository │ │ └── StorageRepository.cs │ ├── Themes │ │ ├── FirebaseUIControl.xaml │ │ └── Generic.xaml │ └── tools │ │ └── VisualStudioToolsManifest.xml ├── Auth.UI.WPF │ ├── Auth.UI.WPF.csproj │ ├── Converters │ │ ├── AssetConverter.cs │ │ ├── BackgroundConverter.cs │ │ ├── ForegroundConverter.cs │ │ └── TitleConverter.cs │ ├── FirebaseUIControl.xaml │ ├── FirebaseUIControl.xaml.cs │ ├── Launcher.cs │ ├── Pages │ │ ├── EmailPage.xaml │ │ ├── EmailPage.xaml.cs │ │ ├── LinksFooter.xaml │ │ ├── LinksFooter.xaml.cs │ │ ├── ProvidersPage.xaml │ │ ├── ProvidersPage.xaml.cs │ │ ├── RecoverPasswordPage.xaml │ │ ├── RecoverPasswordPage.xaml.cs │ │ ├── SignInPage.xaml │ │ ├── SignInPage.xaml.cs │ │ ├── SignUpPage.xaml │ │ └── SignUpPage.xaml.cs │ ├── Themes │ │ └── Generic.xaml │ ├── WebAuthenticationBroker.cs │ ├── WebAuthenticationBrokerWindow.xaml │ ├── WebAuthenticationBrokerWindow.xaml.cs │ └── tools │ │ └── VisualStudioToolsManifest.xml ├── Auth.UI.WinUI3 │ ├── Auth.UI.WinUI3.csproj │ ├── Converters │ │ ├── AssetConverter.cs │ │ ├── BackgroundConverter.cs │ │ ├── BorderThicknessConverter.cs │ │ ├── ForegroundConverter.cs │ │ └── TitleConverter.cs │ ├── FirebaseUIControl.cs │ ├── Pages │ │ ├── EmailPage.xaml │ │ ├── EmailPage.xaml.cs │ │ ├── LinksFooter.xaml │ │ ├── LinksFooter.xaml.cs │ │ ├── ProvidersPage.xaml │ │ ├── ProvidersPage.xaml.cs │ │ ├── RecoverPasswordPage.xaml │ │ ├── RecoverPasswordPage.xaml.cs │ │ ├── SignInPage.xaml │ │ ├── SignInPage.xaml.cs │ │ ├── SignUpPage.xaml │ │ ├── SignUpPage.xaml.cs │ │ └── Styles.cs │ ├── Repository │ │ └── StorageRepository.cs │ ├── Themes │ │ ├── FirebaseUIControl.xaml │ │ └── Generic.xaml │ ├── WebAuthenticationBroker.cs │ ├── WebAuthenticationBrokerWindow.xaml │ ├── WebAuthenticationBrokerWindow.xaml.cs │ └── tools │ │ └── VisualStudioToolsManifest.xml ├── Auth.UI │ ├── Assets │ │ ├── anonymous.png │ │ ├── apple.png │ │ ├── facebook.png │ │ ├── firebase.png │ │ ├── github.png │ │ ├── google.png │ │ ├── mail.png │ │ ├── microsoft.png │ │ └── twitter.png │ ├── Auth.UI.csproj │ ├── Converters │ │ ├── ProviderToAssetConverter.cs │ │ ├── ProviderToBackgroundConverter.cs │ │ ├── ProviderToForegroundConverter.cs │ │ └── ProviderToTitleConverter.cs │ ├── EmailPasswordResult.cs │ ├── EmailUser.cs │ ├── EmailValidator.cs │ ├── FirebaseErrorLookup.cs │ ├── FirebaseUI.cs │ ├── FirebaseUIConfig.cs │ ├── FirebaseUpgradeConflict.cs │ ├── IFirebaseUIFlow.cs │ └── Resources │ │ ├── AppResources.Designer.cs │ │ ├── AppResources.ar.resx │ │ ├── AppResources.bg.resx │ │ ├── AppResources.ca.resx │ │ ├── AppResources.cs.resx │ │ ├── AppResources.da.resx │ │ ├── AppResources.de.resx │ │ ├── AppResources.el.resx │ │ ├── AppResources.es.resx │ │ ├── AppResources.fa.resx │ │ ├── AppResources.fi.resx │ │ ├── AppResources.fil.resx │ │ ├── AppResources.fr.resx │ │ ├── AppResources.hi.resx │ │ ├── AppResources.hr.resx │ │ ├── AppResources.hu.resx │ │ ├── AppResources.in.resx │ │ ├── AppResources.it.resx │ │ ├── AppResources.iw.resx │ │ ├── AppResources.ja.resx │ │ ├── AppResources.ko.resx │ │ ├── AppResources.lt.resx │ │ ├── AppResources.lv.resx │ │ ├── AppResources.nl.resx │ │ ├── AppResources.no.resx │ │ ├── AppResources.pl.resx │ │ ├── AppResources.pt.resx │ │ ├── AppResources.resx │ │ ├── AppResources.ro.resx │ │ ├── AppResources.ru.resx │ │ ├── AppResources.sk.resx │ │ ├── AppResources.sl.resx │ │ ├── AppResources.sr-cyrl.resx │ │ ├── AppResources.sv.resx │ │ ├── AppResources.th.resx │ │ ├── AppResources.tr.resx │ │ ├── AppResources.uk.resx │ │ ├── AppResources.ur.resx │ │ ├── AppResources.vi.resx │ │ └── AppResources.zh.resx └── Auth │ ├── Assets │ └── firebase.png │ ├── Auth.csproj │ ├── AuthCredential.cs │ ├── AuthErrorReason.cs │ ├── EnumExtensions.cs │ ├── FirebaseAuthClient.cs │ ├── FirebaseAuthConfig.cs │ ├── FirebaseAuthException.cs │ ├── FirebaseCredential.cs │ ├── FirebaseFailureParser.cs │ ├── FirebaseProviderType.cs │ ├── IFirebaseAuthClient.cs │ ├── Providers │ ├── AppleProvider.cs │ ├── EmailProvider.cs │ ├── FacebookProvider.cs │ ├── FetchUserProvidersResult.cs │ ├── FirebaseAuthProvider.cs │ ├── GithubProvider.cs │ ├── GoogleProvider.cs │ ├── MicrosoftProvider.cs │ ├── OAuthContinuation.cs │ ├── OAuthProvider.cs │ └── TwitterProvider.cs │ ├── Repository │ ├── FileUserRepository.cs │ ├── IUserRepository.cs │ └── InMemoryRepository.cs │ ├── Requests │ ├── Converters │ │ ├── DefaultEnumConverter.cs │ │ └── JavaScriptDateTimeConverter.cs │ ├── CreateAuthUri.cs │ ├── DeleteAccount.cs │ ├── Endpoints.cs │ ├── FirebaseRequestBase.cs │ ├── GetAccountInfo.cs │ ├── ProjectConfig.cs │ ├── RefreshToken.cs │ ├── ResetPassword.cs │ ├── SetAccountInfo.cs │ ├── SetAccountLink.cs │ ├── SetAccountUnlink.cs │ ├── SignupNewUser.cs │ ├── UpdateAccount.cs │ ├── VerifyAssertion.cs │ └── VerifyPassword.cs │ ├── Settings.StyleCop │ ├── SignInRedirectDelegate.cs │ ├── User.cs │ ├── UserCredential.cs │ ├── UserEventArgs.cs │ ├── UserInfo.cs │ └── UserManager.cs └── tests ├── Auth.Tests.Integration ├── AnonymousTests.cs ├── Auth.Tests.Integration.csproj ├── EmailTests.cs └── Setup.cs └── Auth.Tests ├── Auth.Tests.csproj ├── ClientTests.cs ├── ErrorParserTests.cs └── RepositoryTests.cs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/dotnetcore.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/.github/workflows/dotnetcore.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/.gitignore -------------------------------------------------------------------------------- /Firebase.Auth.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/Firebase.Auth.sln -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/README.md -------------------------------------------------------------------------------- /art/FirebaseLogo.128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/art/FirebaseLogo.128x128.png -------------------------------------------------------------------------------- /art/SampleWPF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/art/SampleWPF.png -------------------------------------------------------------------------------- /samples/Console/Auth.Console.Sample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/Console/Auth.Console.Sample.csproj -------------------------------------------------------------------------------- /samples/Console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/Console/Program.cs -------------------------------------------------------------------------------- /samples/UWP/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/App.xaml -------------------------------------------------------------------------------- /samples/UWP/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/App.xaml.cs -------------------------------------------------------------------------------- /samples/UWP/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/UWP/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/UWP/Assets/Square44x44Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/Assets/Square44x44Logo.png -------------------------------------------------------------------------------- /samples/UWP/Assets/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/Assets/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /samples/UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/UWP/Assets/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/Assets/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /samples/UWP/Assets/firebase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/Assets/firebase.png -------------------------------------------------------------------------------- /samples/UWP/Auth.UWP.Sample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/Auth.UWP.Sample.csproj -------------------------------------------------------------------------------- /samples/UWP/LoginPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/LoginPage.xaml -------------------------------------------------------------------------------- /samples/UWP/LoginPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/LoginPage.xaml.cs -------------------------------------------------------------------------------- /samples/UWP/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/MainPage.xaml -------------------------------------------------------------------------------- /samples/UWP/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/MainPage.xaml.cs -------------------------------------------------------------------------------- /samples/UWP/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/Package.appxmanifest -------------------------------------------------------------------------------- /samples/UWP/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/UWP/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/Properties/Default.rd.xml -------------------------------------------------------------------------------- /samples/UWP/strings/ar/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/strings/ar/Resources.resw -------------------------------------------------------------------------------- /samples/UWP/strings/bg/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/strings/bg/Resources.resw -------------------------------------------------------------------------------- /samples/UWP/strings/ca/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/strings/ca/Resources.resw -------------------------------------------------------------------------------- /samples/UWP/strings/cs/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/strings/cs/Resources.resw -------------------------------------------------------------------------------- /samples/UWP/strings/da/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/strings/da/Resources.resw -------------------------------------------------------------------------------- /samples/UWP/strings/de/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/strings/de/Resources.resw -------------------------------------------------------------------------------- /samples/UWP/strings/el/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/strings/el/Resources.resw -------------------------------------------------------------------------------- /samples/UWP/strings/en/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/strings/en/Resources.resw -------------------------------------------------------------------------------- /samples/UWP/strings/es/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/strings/es/Resources.resw -------------------------------------------------------------------------------- /samples/UWP/strings/fa/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/strings/fa/Resources.resw -------------------------------------------------------------------------------- /samples/UWP/strings/fi/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/strings/fi/Resources.resw -------------------------------------------------------------------------------- /samples/UWP/strings/fil/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/strings/fil/Resources.resw -------------------------------------------------------------------------------- /samples/UWP/strings/fr/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/strings/fr/Resources.resw -------------------------------------------------------------------------------- /samples/UWP/strings/hi/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/strings/hi/Resources.resw -------------------------------------------------------------------------------- /samples/UWP/strings/hr/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/strings/hr/Resources.resw -------------------------------------------------------------------------------- /samples/UWP/strings/hu/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/strings/hu/Resources.resw -------------------------------------------------------------------------------- /samples/UWP/strings/in/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/strings/in/Resources.resw -------------------------------------------------------------------------------- /samples/UWP/strings/it/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/strings/it/Resources.resw -------------------------------------------------------------------------------- /samples/UWP/strings/iw/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/strings/iw/Resources.resw -------------------------------------------------------------------------------- /samples/UWP/strings/ja/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/strings/ja/Resources.resw -------------------------------------------------------------------------------- /samples/UWP/strings/ko/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/strings/ko/Resources.resw -------------------------------------------------------------------------------- /samples/UWP/strings/lt/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/strings/lt/Resources.resw -------------------------------------------------------------------------------- /samples/UWP/strings/lv/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/strings/lv/Resources.resw -------------------------------------------------------------------------------- /samples/UWP/strings/nl/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/strings/nl/Resources.resw -------------------------------------------------------------------------------- /samples/UWP/strings/no/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/strings/no/Resources.resw -------------------------------------------------------------------------------- /samples/UWP/strings/pl/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/strings/pl/Resources.resw -------------------------------------------------------------------------------- /samples/UWP/strings/pt/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/strings/pt/Resources.resw -------------------------------------------------------------------------------- /samples/UWP/strings/ro/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/strings/ro/Resources.resw -------------------------------------------------------------------------------- /samples/UWP/strings/ru/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/strings/ru/Resources.resw -------------------------------------------------------------------------------- /samples/UWP/strings/sk/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/strings/sk/Resources.resw -------------------------------------------------------------------------------- /samples/UWP/strings/sl/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/strings/sl/Resources.resw -------------------------------------------------------------------------------- /samples/UWP/strings/sr-cyrl/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/strings/sr-cyrl/Resources.resw -------------------------------------------------------------------------------- /samples/UWP/strings/sv/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/strings/sv/Resources.resw -------------------------------------------------------------------------------- /samples/UWP/strings/th/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/strings/th/Resources.resw -------------------------------------------------------------------------------- /samples/UWP/strings/tr/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/strings/tr/Resources.resw -------------------------------------------------------------------------------- /samples/UWP/strings/uk/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/strings/uk/Resources.resw -------------------------------------------------------------------------------- /samples/UWP/strings/ur/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/strings/ur/Resources.resw -------------------------------------------------------------------------------- /samples/UWP/strings/vi/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/strings/vi/Resources.resw -------------------------------------------------------------------------------- /samples/UWP/strings/zh/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/UWP/strings/zh/Resources.resw -------------------------------------------------------------------------------- /samples/WinUI3/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/App.xaml -------------------------------------------------------------------------------- /samples/WinUI3/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/App.xaml.cs -------------------------------------------------------------------------------- /samples/WinUI3/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/WinUI3/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/WinUI3/Assets/Square44x44Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/Assets/Square44x44Logo.png -------------------------------------------------------------------------------- /samples/WinUI3/Assets/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/Assets/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /samples/WinUI3/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/WinUI3/Assets/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/Assets/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /samples/WinUI3/Assets/firebase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/Assets/firebase.png -------------------------------------------------------------------------------- /samples/WinUI3/Auth.WinUI3.Sample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/Auth.WinUI3.Sample.csproj -------------------------------------------------------------------------------- /samples/WinUI3/LoginPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/LoginPage.xaml -------------------------------------------------------------------------------- /samples/WinUI3/LoginPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/LoginPage.xaml.cs -------------------------------------------------------------------------------- /samples/WinUI3/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/MainPage.xaml -------------------------------------------------------------------------------- /samples/WinUI3/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/MainPage.xaml.cs -------------------------------------------------------------------------------- /samples/WinUI3/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/MainWindow.xaml -------------------------------------------------------------------------------- /samples/WinUI3/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/MainWindow.xaml.cs -------------------------------------------------------------------------------- /samples/WinUI3/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/Package.appxmanifest -------------------------------------------------------------------------------- /samples/WinUI3/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/Properties/Default.rd.xml -------------------------------------------------------------------------------- /samples/WinUI3/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/WinUI3/UWPToWinAppSDKUpgradeHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/UWPToWinAppSDKUpgradeHelpers.cs -------------------------------------------------------------------------------- /samples/WinUI3/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/app.manifest -------------------------------------------------------------------------------- /samples/WinUI3/strings/ar/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/strings/ar/Resources.resw -------------------------------------------------------------------------------- /samples/WinUI3/strings/bg/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/strings/bg/Resources.resw -------------------------------------------------------------------------------- /samples/WinUI3/strings/ca/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/strings/ca/Resources.resw -------------------------------------------------------------------------------- /samples/WinUI3/strings/cs/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/strings/cs/Resources.resw -------------------------------------------------------------------------------- /samples/WinUI3/strings/da/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/strings/da/Resources.resw -------------------------------------------------------------------------------- /samples/WinUI3/strings/de/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/strings/de/Resources.resw -------------------------------------------------------------------------------- /samples/WinUI3/strings/el/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/strings/el/Resources.resw -------------------------------------------------------------------------------- /samples/WinUI3/strings/en/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/strings/en/Resources.resw -------------------------------------------------------------------------------- /samples/WinUI3/strings/es/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/strings/es/Resources.resw -------------------------------------------------------------------------------- /samples/WinUI3/strings/fa/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/strings/fa/Resources.resw -------------------------------------------------------------------------------- /samples/WinUI3/strings/fi/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/strings/fi/Resources.resw -------------------------------------------------------------------------------- /samples/WinUI3/strings/fil/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/strings/fil/Resources.resw -------------------------------------------------------------------------------- /samples/WinUI3/strings/fr/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/strings/fr/Resources.resw -------------------------------------------------------------------------------- /samples/WinUI3/strings/hi/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/strings/hi/Resources.resw -------------------------------------------------------------------------------- /samples/WinUI3/strings/hr/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/strings/hr/Resources.resw -------------------------------------------------------------------------------- /samples/WinUI3/strings/hu/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/strings/hu/Resources.resw -------------------------------------------------------------------------------- /samples/WinUI3/strings/in/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/strings/in/Resources.resw -------------------------------------------------------------------------------- /samples/WinUI3/strings/it/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/strings/it/Resources.resw -------------------------------------------------------------------------------- /samples/WinUI3/strings/iw/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/strings/iw/Resources.resw -------------------------------------------------------------------------------- /samples/WinUI3/strings/ja/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/strings/ja/Resources.resw -------------------------------------------------------------------------------- /samples/WinUI3/strings/ko/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/strings/ko/Resources.resw -------------------------------------------------------------------------------- /samples/WinUI3/strings/lt/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/strings/lt/Resources.resw -------------------------------------------------------------------------------- /samples/WinUI3/strings/lv/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/strings/lv/Resources.resw -------------------------------------------------------------------------------- /samples/WinUI3/strings/nl/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/strings/nl/Resources.resw -------------------------------------------------------------------------------- /samples/WinUI3/strings/no/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/strings/no/Resources.resw -------------------------------------------------------------------------------- /samples/WinUI3/strings/pl/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/strings/pl/Resources.resw -------------------------------------------------------------------------------- /samples/WinUI3/strings/pt/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/strings/pt/Resources.resw -------------------------------------------------------------------------------- /samples/WinUI3/strings/ro/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/strings/ro/Resources.resw -------------------------------------------------------------------------------- /samples/WinUI3/strings/ru/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/strings/ru/Resources.resw -------------------------------------------------------------------------------- /samples/WinUI3/strings/sk/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/strings/sk/Resources.resw -------------------------------------------------------------------------------- /samples/WinUI3/strings/sl/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/strings/sl/Resources.resw -------------------------------------------------------------------------------- /samples/WinUI3/strings/sr-cyrl/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/strings/sr-cyrl/Resources.resw -------------------------------------------------------------------------------- /samples/WinUI3/strings/sv/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/strings/sv/Resources.resw -------------------------------------------------------------------------------- /samples/WinUI3/strings/th/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/strings/th/Resources.resw -------------------------------------------------------------------------------- /samples/WinUI3/strings/tr/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/strings/tr/Resources.resw -------------------------------------------------------------------------------- /samples/WinUI3/strings/uk/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/strings/uk/Resources.resw -------------------------------------------------------------------------------- /samples/WinUI3/strings/ur/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/strings/ur/Resources.resw -------------------------------------------------------------------------------- /samples/WinUI3/strings/vi/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/strings/vi/Resources.resw -------------------------------------------------------------------------------- /samples/WinUI3/strings/zh/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/WinUI3/strings/zh/Resources.resw -------------------------------------------------------------------------------- /samples/Wpf/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/Wpf/App.xaml -------------------------------------------------------------------------------- /samples/Wpf/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/Wpf/App.xaml.cs -------------------------------------------------------------------------------- /samples/Wpf/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/Wpf/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/Wpf/Assets/firebase.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/Wpf/Assets/firebase.ico -------------------------------------------------------------------------------- /samples/Wpf/Assets/firebase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/Wpf/Assets/firebase.png -------------------------------------------------------------------------------- /samples/Wpf/Auth.Wpf.Sample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/Wpf/Auth.Wpf.Sample.csproj -------------------------------------------------------------------------------- /samples/Wpf/LoginPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/Wpf/LoginPage.xaml -------------------------------------------------------------------------------- /samples/Wpf/LoginPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/Wpf/LoginPage.xaml.cs -------------------------------------------------------------------------------- /samples/Wpf/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/Wpf/MainPage.xaml -------------------------------------------------------------------------------- /samples/Wpf/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/Wpf/MainPage.xaml.cs -------------------------------------------------------------------------------- /samples/Wpf/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/Wpf/MainWindow.xaml -------------------------------------------------------------------------------- /samples/Wpf/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/samples/Wpf/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/Auth.UI.UWP/Auth.UI.UWP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.UWP/Auth.UI.UWP.csproj -------------------------------------------------------------------------------- /src/Auth.UI.UWP/Converters/AssetConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.UWP/Converters/AssetConverter.cs -------------------------------------------------------------------------------- /src/Auth.UI.UWP/Converters/BackgroundConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.UWP/Converters/BackgroundConverter.cs -------------------------------------------------------------------------------- /src/Auth.UI.UWP/Converters/BorderThicknessConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.UWP/Converters/BorderThicknessConverter.cs -------------------------------------------------------------------------------- /src/Auth.UI.UWP/Converters/ForegroundConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.UWP/Converters/ForegroundConverter.cs -------------------------------------------------------------------------------- /src/Auth.UI.UWP/Converters/TitleConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.UWP/Converters/TitleConverter.cs -------------------------------------------------------------------------------- /src/Auth.UI.UWP/FirebaseUIControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.UWP/FirebaseUIControl.cs -------------------------------------------------------------------------------- /src/Auth.UI.UWP/Pages/EmailPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.UWP/Pages/EmailPage.xaml -------------------------------------------------------------------------------- /src/Auth.UI.UWP/Pages/EmailPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.UWP/Pages/EmailPage.xaml.cs -------------------------------------------------------------------------------- /src/Auth.UI.UWP/Pages/LinksFooter.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.UWP/Pages/LinksFooter.xaml -------------------------------------------------------------------------------- /src/Auth.UI.UWP/Pages/LinksFooter.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.UWP/Pages/LinksFooter.xaml.cs -------------------------------------------------------------------------------- /src/Auth.UI.UWP/Pages/ProvidersPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.UWP/Pages/ProvidersPage.xaml -------------------------------------------------------------------------------- /src/Auth.UI.UWP/Pages/ProvidersPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.UWP/Pages/ProvidersPage.xaml.cs -------------------------------------------------------------------------------- /src/Auth.UI.UWP/Pages/RecoverPasswordPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.UWP/Pages/RecoverPasswordPage.xaml -------------------------------------------------------------------------------- /src/Auth.UI.UWP/Pages/RecoverPasswordPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.UWP/Pages/RecoverPasswordPage.xaml.cs -------------------------------------------------------------------------------- /src/Auth.UI.UWP/Pages/SignInPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.UWP/Pages/SignInPage.xaml -------------------------------------------------------------------------------- /src/Auth.UI.UWP/Pages/SignInPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.UWP/Pages/SignInPage.xaml.cs -------------------------------------------------------------------------------- /src/Auth.UI.UWP/Pages/SignUpPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.UWP/Pages/SignUpPage.xaml -------------------------------------------------------------------------------- /src/Auth.UI.UWP/Pages/SignUpPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.UWP/Pages/SignUpPage.xaml.cs -------------------------------------------------------------------------------- /src/Auth.UI.UWP/Pages/Styles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.UWP/Pages/Styles.cs -------------------------------------------------------------------------------- /src/Auth.UI.UWP/Properties/Auth.UI.UWP.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.UWP/Properties/Auth.UI.UWP.rd.xml -------------------------------------------------------------------------------- /src/Auth.UI.UWP/Repository/StorageRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.UWP/Repository/StorageRepository.cs -------------------------------------------------------------------------------- /src/Auth.UI.UWP/Themes/FirebaseUIControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.UWP/Themes/FirebaseUIControl.xaml -------------------------------------------------------------------------------- /src/Auth.UI.UWP/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.UWP/Themes/Generic.xaml -------------------------------------------------------------------------------- /src/Auth.UI.UWP/tools/VisualStudioToolsManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.UWP/tools/VisualStudioToolsManifest.xml -------------------------------------------------------------------------------- /src/Auth.UI.WPF/Auth.UI.WPF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WPF/Auth.UI.WPF.csproj -------------------------------------------------------------------------------- /src/Auth.UI.WPF/Converters/AssetConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WPF/Converters/AssetConverter.cs -------------------------------------------------------------------------------- /src/Auth.UI.WPF/Converters/BackgroundConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WPF/Converters/BackgroundConverter.cs -------------------------------------------------------------------------------- /src/Auth.UI.WPF/Converters/ForegroundConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WPF/Converters/ForegroundConverter.cs -------------------------------------------------------------------------------- /src/Auth.UI.WPF/Converters/TitleConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WPF/Converters/TitleConverter.cs -------------------------------------------------------------------------------- /src/Auth.UI.WPF/FirebaseUIControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WPF/FirebaseUIControl.xaml -------------------------------------------------------------------------------- /src/Auth.UI.WPF/FirebaseUIControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WPF/FirebaseUIControl.xaml.cs -------------------------------------------------------------------------------- /src/Auth.UI.WPF/Launcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WPF/Launcher.cs -------------------------------------------------------------------------------- /src/Auth.UI.WPF/Pages/EmailPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WPF/Pages/EmailPage.xaml -------------------------------------------------------------------------------- /src/Auth.UI.WPF/Pages/EmailPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WPF/Pages/EmailPage.xaml.cs -------------------------------------------------------------------------------- /src/Auth.UI.WPF/Pages/LinksFooter.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WPF/Pages/LinksFooter.xaml -------------------------------------------------------------------------------- /src/Auth.UI.WPF/Pages/LinksFooter.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WPF/Pages/LinksFooter.xaml.cs -------------------------------------------------------------------------------- /src/Auth.UI.WPF/Pages/ProvidersPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WPF/Pages/ProvidersPage.xaml -------------------------------------------------------------------------------- /src/Auth.UI.WPF/Pages/ProvidersPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WPF/Pages/ProvidersPage.xaml.cs -------------------------------------------------------------------------------- /src/Auth.UI.WPF/Pages/RecoverPasswordPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WPF/Pages/RecoverPasswordPage.xaml -------------------------------------------------------------------------------- /src/Auth.UI.WPF/Pages/RecoverPasswordPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WPF/Pages/RecoverPasswordPage.xaml.cs -------------------------------------------------------------------------------- /src/Auth.UI.WPF/Pages/SignInPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WPF/Pages/SignInPage.xaml -------------------------------------------------------------------------------- /src/Auth.UI.WPF/Pages/SignInPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WPF/Pages/SignInPage.xaml.cs -------------------------------------------------------------------------------- /src/Auth.UI.WPF/Pages/SignUpPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WPF/Pages/SignUpPage.xaml -------------------------------------------------------------------------------- /src/Auth.UI.WPF/Pages/SignUpPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WPF/Pages/SignUpPage.xaml.cs -------------------------------------------------------------------------------- /src/Auth.UI.WPF/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WPF/Themes/Generic.xaml -------------------------------------------------------------------------------- /src/Auth.UI.WPF/WebAuthenticationBroker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WPF/WebAuthenticationBroker.cs -------------------------------------------------------------------------------- /src/Auth.UI.WPF/WebAuthenticationBrokerWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WPF/WebAuthenticationBrokerWindow.xaml -------------------------------------------------------------------------------- /src/Auth.UI.WPF/WebAuthenticationBrokerWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WPF/WebAuthenticationBrokerWindow.xaml.cs -------------------------------------------------------------------------------- /src/Auth.UI.WPF/tools/VisualStudioToolsManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WPF/tools/VisualStudioToolsManifest.xml -------------------------------------------------------------------------------- /src/Auth.UI.WinUI3/Auth.UI.WinUI3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WinUI3/Auth.UI.WinUI3.csproj -------------------------------------------------------------------------------- /src/Auth.UI.WinUI3/Converters/AssetConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WinUI3/Converters/AssetConverter.cs -------------------------------------------------------------------------------- /src/Auth.UI.WinUI3/Converters/BackgroundConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WinUI3/Converters/BackgroundConverter.cs -------------------------------------------------------------------------------- /src/Auth.UI.WinUI3/Converters/BorderThicknessConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WinUI3/Converters/BorderThicknessConverter.cs -------------------------------------------------------------------------------- /src/Auth.UI.WinUI3/Converters/ForegroundConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WinUI3/Converters/ForegroundConverter.cs -------------------------------------------------------------------------------- /src/Auth.UI.WinUI3/Converters/TitleConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WinUI3/Converters/TitleConverter.cs -------------------------------------------------------------------------------- /src/Auth.UI.WinUI3/FirebaseUIControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WinUI3/FirebaseUIControl.cs -------------------------------------------------------------------------------- /src/Auth.UI.WinUI3/Pages/EmailPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WinUI3/Pages/EmailPage.xaml -------------------------------------------------------------------------------- /src/Auth.UI.WinUI3/Pages/EmailPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WinUI3/Pages/EmailPage.xaml.cs -------------------------------------------------------------------------------- /src/Auth.UI.WinUI3/Pages/LinksFooter.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WinUI3/Pages/LinksFooter.xaml -------------------------------------------------------------------------------- /src/Auth.UI.WinUI3/Pages/LinksFooter.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WinUI3/Pages/LinksFooter.xaml.cs -------------------------------------------------------------------------------- /src/Auth.UI.WinUI3/Pages/ProvidersPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WinUI3/Pages/ProvidersPage.xaml -------------------------------------------------------------------------------- /src/Auth.UI.WinUI3/Pages/ProvidersPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WinUI3/Pages/ProvidersPage.xaml.cs -------------------------------------------------------------------------------- /src/Auth.UI.WinUI3/Pages/RecoverPasswordPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WinUI3/Pages/RecoverPasswordPage.xaml -------------------------------------------------------------------------------- /src/Auth.UI.WinUI3/Pages/RecoverPasswordPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WinUI3/Pages/RecoverPasswordPage.xaml.cs -------------------------------------------------------------------------------- /src/Auth.UI.WinUI3/Pages/SignInPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WinUI3/Pages/SignInPage.xaml -------------------------------------------------------------------------------- /src/Auth.UI.WinUI3/Pages/SignInPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WinUI3/Pages/SignInPage.xaml.cs -------------------------------------------------------------------------------- /src/Auth.UI.WinUI3/Pages/SignUpPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WinUI3/Pages/SignUpPage.xaml -------------------------------------------------------------------------------- /src/Auth.UI.WinUI3/Pages/SignUpPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WinUI3/Pages/SignUpPage.xaml.cs -------------------------------------------------------------------------------- /src/Auth.UI.WinUI3/Pages/Styles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WinUI3/Pages/Styles.cs -------------------------------------------------------------------------------- /src/Auth.UI.WinUI3/Repository/StorageRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WinUI3/Repository/StorageRepository.cs -------------------------------------------------------------------------------- /src/Auth.UI.WinUI3/Themes/FirebaseUIControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WinUI3/Themes/FirebaseUIControl.xaml -------------------------------------------------------------------------------- /src/Auth.UI.WinUI3/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WinUI3/Themes/Generic.xaml -------------------------------------------------------------------------------- /src/Auth.UI.WinUI3/WebAuthenticationBroker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WinUI3/WebAuthenticationBroker.cs -------------------------------------------------------------------------------- /src/Auth.UI.WinUI3/WebAuthenticationBrokerWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WinUI3/WebAuthenticationBrokerWindow.xaml -------------------------------------------------------------------------------- /src/Auth.UI.WinUI3/WebAuthenticationBrokerWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WinUI3/WebAuthenticationBrokerWindow.xaml.cs -------------------------------------------------------------------------------- /src/Auth.UI.WinUI3/tools/VisualStudioToolsManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI.WinUI3/tools/VisualStudioToolsManifest.xml -------------------------------------------------------------------------------- /src/Auth.UI/Assets/anonymous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Assets/anonymous.png -------------------------------------------------------------------------------- /src/Auth.UI/Assets/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Assets/apple.png -------------------------------------------------------------------------------- /src/Auth.UI/Assets/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Assets/facebook.png -------------------------------------------------------------------------------- /src/Auth.UI/Assets/firebase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Assets/firebase.png -------------------------------------------------------------------------------- /src/Auth.UI/Assets/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Assets/github.png -------------------------------------------------------------------------------- /src/Auth.UI/Assets/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Assets/google.png -------------------------------------------------------------------------------- /src/Auth.UI/Assets/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Assets/mail.png -------------------------------------------------------------------------------- /src/Auth.UI/Assets/microsoft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Assets/microsoft.png -------------------------------------------------------------------------------- /src/Auth.UI/Assets/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Assets/twitter.png -------------------------------------------------------------------------------- /src/Auth.UI/Auth.UI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Auth.UI.csproj -------------------------------------------------------------------------------- /src/Auth.UI/Converters/ProviderToAssetConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Converters/ProviderToAssetConverter.cs -------------------------------------------------------------------------------- /src/Auth.UI/Converters/ProviderToBackgroundConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Converters/ProviderToBackgroundConverter.cs -------------------------------------------------------------------------------- /src/Auth.UI/Converters/ProviderToForegroundConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Converters/ProviderToForegroundConverter.cs -------------------------------------------------------------------------------- /src/Auth.UI/Converters/ProviderToTitleConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Converters/ProviderToTitleConverter.cs -------------------------------------------------------------------------------- /src/Auth.UI/EmailPasswordResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/EmailPasswordResult.cs -------------------------------------------------------------------------------- /src/Auth.UI/EmailUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/EmailUser.cs -------------------------------------------------------------------------------- /src/Auth.UI/EmailValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/EmailValidator.cs -------------------------------------------------------------------------------- /src/Auth.UI/FirebaseErrorLookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/FirebaseErrorLookup.cs -------------------------------------------------------------------------------- /src/Auth.UI/FirebaseUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/FirebaseUI.cs -------------------------------------------------------------------------------- /src/Auth.UI/FirebaseUIConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/FirebaseUIConfig.cs -------------------------------------------------------------------------------- /src/Auth.UI/FirebaseUpgradeConflict.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/FirebaseUpgradeConflict.cs -------------------------------------------------------------------------------- /src/Auth.UI/IFirebaseUIFlow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/IFirebaseUIFlow.cs -------------------------------------------------------------------------------- /src/Auth.UI/Resources/AppResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Resources/AppResources.Designer.cs -------------------------------------------------------------------------------- /src/Auth.UI/Resources/AppResources.ar.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Resources/AppResources.ar.resx -------------------------------------------------------------------------------- /src/Auth.UI/Resources/AppResources.bg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Resources/AppResources.bg.resx -------------------------------------------------------------------------------- /src/Auth.UI/Resources/AppResources.ca.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Resources/AppResources.ca.resx -------------------------------------------------------------------------------- /src/Auth.UI/Resources/AppResources.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Resources/AppResources.cs.resx -------------------------------------------------------------------------------- /src/Auth.UI/Resources/AppResources.da.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Resources/AppResources.da.resx -------------------------------------------------------------------------------- /src/Auth.UI/Resources/AppResources.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Resources/AppResources.de.resx -------------------------------------------------------------------------------- /src/Auth.UI/Resources/AppResources.el.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Resources/AppResources.el.resx -------------------------------------------------------------------------------- /src/Auth.UI/Resources/AppResources.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Resources/AppResources.es.resx -------------------------------------------------------------------------------- /src/Auth.UI/Resources/AppResources.fa.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Resources/AppResources.fa.resx -------------------------------------------------------------------------------- /src/Auth.UI/Resources/AppResources.fi.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Resources/AppResources.fi.resx -------------------------------------------------------------------------------- /src/Auth.UI/Resources/AppResources.fil.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Resources/AppResources.fil.resx -------------------------------------------------------------------------------- /src/Auth.UI/Resources/AppResources.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Resources/AppResources.fr.resx -------------------------------------------------------------------------------- /src/Auth.UI/Resources/AppResources.hi.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Resources/AppResources.hi.resx -------------------------------------------------------------------------------- /src/Auth.UI/Resources/AppResources.hr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Resources/AppResources.hr.resx -------------------------------------------------------------------------------- /src/Auth.UI/Resources/AppResources.hu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Resources/AppResources.hu.resx -------------------------------------------------------------------------------- /src/Auth.UI/Resources/AppResources.in.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Resources/AppResources.in.resx -------------------------------------------------------------------------------- /src/Auth.UI/Resources/AppResources.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Resources/AppResources.it.resx -------------------------------------------------------------------------------- /src/Auth.UI/Resources/AppResources.iw.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Resources/AppResources.iw.resx -------------------------------------------------------------------------------- /src/Auth.UI/Resources/AppResources.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Resources/AppResources.ja.resx -------------------------------------------------------------------------------- /src/Auth.UI/Resources/AppResources.ko.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Resources/AppResources.ko.resx -------------------------------------------------------------------------------- /src/Auth.UI/Resources/AppResources.lt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Resources/AppResources.lt.resx -------------------------------------------------------------------------------- /src/Auth.UI/Resources/AppResources.lv.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Resources/AppResources.lv.resx -------------------------------------------------------------------------------- /src/Auth.UI/Resources/AppResources.nl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Resources/AppResources.nl.resx -------------------------------------------------------------------------------- /src/Auth.UI/Resources/AppResources.no.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Resources/AppResources.no.resx -------------------------------------------------------------------------------- /src/Auth.UI/Resources/AppResources.pl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Resources/AppResources.pl.resx -------------------------------------------------------------------------------- /src/Auth.UI/Resources/AppResources.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Resources/AppResources.pt.resx -------------------------------------------------------------------------------- /src/Auth.UI/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Resources/AppResources.resx -------------------------------------------------------------------------------- /src/Auth.UI/Resources/AppResources.ro.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Resources/AppResources.ro.resx -------------------------------------------------------------------------------- /src/Auth.UI/Resources/AppResources.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Resources/AppResources.ru.resx -------------------------------------------------------------------------------- /src/Auth.UI/Resources/AppResources.sk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Resources/AppResources.sk.resx -------------------------------------------------------------------------------- /src/Auth.UI/Resources/AppResources.sl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Resources/AppResources.sl.resx -------------------------------------------------------------------------------- /src/Auth.UI/Resources/AppResources.sr-cyrl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Resources/AppResources.sr-cyrl.resx -------------------------------------------------------------------------------- /src/Auth.UI/Resources/AppResources.sv.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Resources/AppResources.sv.resx -------------------------------------------------------------------------------- /src/Auth.UI/Resources/AppResources.th.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Resources/AppResources.th.resx -------------------------------------------------------------------------------- /src/Auth.UI/Resources/AppResources.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Resources/AppResources.tr.resx -------------------------------------------------------------------------------- /src/Auth.UI/Resources/AppResources.uk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Resources/AppResources.uk.resx -------------------------------------------------------------------------------- /src/Auth.UI/Resources/AppResources.ur.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Resources/AppResources.ur.resx -------------------------------------------------------------------------------- /src/Auth.UI/Resources/AppResources.vi.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Resources/AppResources.vi.resx -------------------------------------------------------------------------------- /src/Auth.UI/Resources/AppResources.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth.UI/Resources/AppResources.zh.resx -------------------------------------------------------------------------------- /src/Auth/Assets/firebase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/Assets/firebase.png -------------------------------------------------------------------------------- /src/Auth/Auth.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/Auth.csproj -------------------------------------------------------------------------------- /src/Auth/AuthCredential.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/AuthCredential.cs -------------------------------------------------------------------------------- /src/Auth/AuthErrorReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/AuthErrorReason.cs -------------------------------------------------------------------------------- /src/Auth/EnumExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/EnumExtensions.cs -------------------------------------------------------------------------------- /src/Auth/FirebaseAuthClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/FirebaseAuthClient.cs -------------------------------------------------------------------------------- /src/Auth/FirebaseAuthConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/FirebaseAuthConfig.cs -------------------------------------------------------------------------------- /src/Auth/FirebaseAuthException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/FirebaseAuthException.cs -------------------------------------------------------------------------------- /src/Auth/FirebaseCredential.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/FirebaseCredential.cs -------------------------------------------------------------------------------- /src/Auth/FirebaseFailureParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/FirebaseFailureParser.cs -------------------------------------------------------------------------------- /src/Auth/FirebaseProviderType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/FirebaseProviderType.cs -------------------------------------------------------------------------------- /src/Auth/IFirebaseAuthClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/IFirebaseAuthClient.cs -------------------------------------------------------------------------------- /src/Auth/Providers/AppleProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/Providers/AppleProvider.cs -------------------------------------------------------------------------------- /src/Auth/Providers/EmailProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/Providers/EmailProvider.cs -------------------------------------------------------------------------------- /src/Auth/Providers/FacebookProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/Providers/FacebookProvider.cs -------------------------------------------------------------------------------- /src/Auth/Providers/FetchUserProvidersResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/Providers/FetchUserProvidersResult.cs -------------------------------------------------------------------------------- /src/Auth/Providers/FirebaseAuthProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/Providers/FirebaseAuthProvider.cs -------------------------------------------------------------------------------- /src/Auth/Providers/GithubProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/Providers/GithubProvider.cs -------------------------------------------------------------------------------- /src/Auth/Providers/GoogleProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/Providers/GoogleProvider.cs -------------------------------------------------------------------------------- /src/Auth/Providers/MicrosoftProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/Providers/MicrosoftProvider.cs -------------------------------------------------------------------------------- /src/Auth/Providers/OAuthContinuation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/Providers/OAuthContinuation.cs -------------------------------------------------------------------------------- /src/Auth/Providers/OAuthProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/Providers/OAuthProvider.cs -------------------------------------------------------------------------------- /src/Auth/Providers/TwitterProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/Providers/TwitterProvider.cs -------------------------------------------------------------------------------- /src/Auth/Repository/FileUserRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/Repository/FileUserRepository.cs -------------------------------------------------------------------------------- /src/Auth/Repository/IUserRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/Repository/IUserRepository.cs -------------------------------------------------------------------------------- /src/Auth/Repository/InMemoryRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/Repository/InMemoryRepository.cs -------------------------------------------------------------------------------- /src/Auth/Requests/Converters/DefaultEnumConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/Requests/Converters/DefaultEnumConverter.cs -------------------------------------------------------------------------------- /src/Auth/Requests/Converters/JavaScriptDateTimeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/Requests/Converters/JavaScriptDateTimeConverter.cs -------------------------------------------------------------------------------- /src/Auth/Requests/CreateAuthUri.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/Requests/CreateAuthUri.cs -------------------------------------------------------------------------------- /src/Auth/Requests/DeleteAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/Requests/DeleteAccount.cs -------------------------------------------------------------------------------- /src/Auth/Requests/Endpoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/Requests/Endpoints.cs -------------------------------------------------------------------------------- /src/Auth/Requests/FirebaseRequestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/Requests/FirebaseRequestBase.cs -------------------------------------------------------------------------------- /src/Auth/Requests/GetAccountInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/Requests/GetAccountInfo.cs -------------------------------------------------------------------------------- /src/Auth/Requests/ProjectConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/Requests/ProjectConfig.cs -------------------------------------------------------------------------------- /src/Auth/Requests/RefreshToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/Requests/RefreshToken.cs -------------------------------------------------------------------------------- /src/Auth/Requests/ResetPassword.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/Requests/ResetPassword.cs -------------------------------------------------------------------------------- /src/Auth/Requests/SetAccountInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/Requests/SetAccountInfo.cs -------------------------------------------------------------------------------- /src/Auth/Requests/SetAccountLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/Requests/SetAccountLink.cs -------------------------------------------------------------------------------- /src/Auth/Requests/SetAccountUnlink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/Requests/SetAccountUnlink.cs -------------------------------------------------------------------------------- /src/Auth/Requests/SignupNewUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/Requests/SignupNewUser.cs -------------------------------------------------------------------------------- /src/Auth/Requests/UpdateAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/Requests/UpdateAccount.cs -------------------------------------------------------------------------------- /src/Auth/Requests/VerifyAssertion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/Requests/VerifyAssertion.cs -------------------------------------------------------------------------------- /src/Auth/Requests/VerifyPassword.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/Requests/VerifyPassword.cs -------------------------------------------------------------------------------- /src/Auth/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/Settings.StyleCop -------------------------------------------------------------------------------- /src/Auth/SignInRedirectDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/SignInRedirectDelegate.cs -------------------------------------------------------------------------------- /src/Auth/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/User.cs -------------------------------------------------------------------------------- /src/Auth/UserCredential.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/UserCredential.cs -------------------------------------------------------------------------------- /src/Auth/UserEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/UserEventArgs.cs -------------------------------------------------------------------------------- /src/Auth/UserInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/UserInfo.cs -------------------------------------------------------------------------------- /src/Auth/UserManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/src/Auth/UserManager.cs -------------------------------------------------------------------------------- /tests/Auth.Tests.Integration/AnonymousTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/tests/Auth.Tests.Integration/AnonymousTests.cs -------------------------------------------------------------------------------- /tests/Auth.Tests.Integration/Auth.Tests.Integration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/tests/Auth.Tests.Integration/Auth.Tests.Integration.csproj -------------------------------------------------------------------------------- /tests/Auth.Tests.Integration/EmailTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/tests/Auth.Tests.Integration/EmailTests.cs -------------------------------------------------------------------------------- /tests/Auth.Tests.Integration/Setup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/tests/Auth.Tests.Integration/Setup.cs -------------------------------------------------------------------------------- /tests/Auth.Tests/Auth.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/tests/Auth.Tests/Auth.Tests.csproj -------------------------------------------------------------------------------- /tests/Auth.Tests/ClientTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/tests/Auth.Tests/ClientTests.cs -------------------------------------------------------------------------------- /tests/Auth.Tests/ErrorParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/tests/Auth.Tests/ErrorParserTests.cs -------------------------------------------------------------------------------- /tests/Auth.Tests/RepositoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/step-up-labs/firebase-authentication-dotnet/HEAD/tests/Auth.Tests/RepositoryTests.cs --------------------------------------------------------------------------------