Skip to content
This repository was archived by the owner on May 1, 2024. It is now read-only.

Commit 5aa0bd5

Browse files
authored
Fix links to migration guide
1 parent 8e4483c commit 5aa0bd5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -674,7 +674,7 @@ request.GetResponseAsync().ContinueWith
674674

675675
### 4.2 Store the account
676676

677-
**NOTE: `AccountStore` is now deprecated. We recommend using [Xamarin.Essentials SecureStorage](https://docs.microsoft.com/en-us/xamarin/essentials/secure-storage) as a replacement. We have written a [migration guide](https://github.com/xamarin/Xamarin.Auth/wiki/Migrating-from-AccountStore-to-Xamarin.Essentials-SecureStorage) which includes a helper class for migrating both your data and code to use Xamarin.Essentials SecureStorage.**
677+
**NOTE: `AccountStore` is now deprecated. We recommend using [Xamarin.Essentials SecureStorage](https://docs.microsoft.com/en-us/xamarin/essentials/secure-storage) as a replacement. We have written a [migration guide](https://aka.ms/xamarin-auth-accountstore-migration-guide) which includes a helper class for migrating both your data and code to use Xamarin.Essentials SecureStorage.**
678678

679679
Xamarin.Auth securely stores `Account` objects so that users don't always have to re-authenticate
680680
the user. The `AccountStore` class is responsible for storing `Account` information, backed by
@@ -687,7 +687,7 @@ Creating `AccountStore` on Android:
687687

688688
```csharp
689689
// On Android:
690-
// DEPRECATED: See the [Xamarin.Essentials SecureStorage Migration Guide](https://github.com/xamarin/Xamarin.Auth/wiki/Migrating-from-AccountStore-to-Xamarin.Essentials-SecureStorage)
690+
// DEPRECATED: See https://aka.ms/xamarin-auth-accountstore-migration-guide
691691
AccountStore.Create (this).Save (eventArgs.Account, "Facebook");
692692
```
693693

@@ -696,7 +696,7 @@ Creating `AccountStore` on iOS:
696696

697697
```csharp
698698
// On iOS:
699-
// DEPRECATED: See the [Xamarin.Essentials SecureStorage Migration Guide](https://github.com/xamarin/Xamarin.Auth/wiki/Migrating-from-AccountStore-to-Xamarin.Essentials-SecureStorage)
699+
// DEPRECATED: See https://aka.ms/xamarin-auth-accountstore-migration-guide
700700
AccountStore.Create ().Save (eventArgs.Account, "Facebook");
701701
```
702702

@@ -718,7 +718,7 @@ Retrieving accounts on Android:
718718

719719
```csharp
720720
// On Android:
721-
// DEPRECATED: See the [Xamarin.Essentials SecureStorage Migration Guide](https://github.com/xamarin/Xamarin.Auth/wiki/Migrating-from-AccountStore-to-Xamarin.Essentials-SecureStorage)
721+
// DEPRECATED: See https://aka.ms/xamarin-auth-accountstore-migration-guide
722722
IEnumerable<Account> accounts = AccountStore.Create (this).FindAccountsForService ("Facebook");
723723
```
724724

@@ -727,7 +727,7 @@ Retrieving accounts on iOS:
727727

728728
```csharp
729729
// On iOS:
730-
// DEPRECATED: See the [Xamarin.Essentials SecureStorage Migration Guide](https://github.com/xamarin/Xamarin.Auth/wiki/Migrating-from-AccountStore-to-Xamarin.Essentials-SecureStorage)
730+
// DEPRECATED: See https://aka.ms/xamarin-auth-accountstore-migration-guide
731731
IEnumerable<Account> accounts = AccountStore.Create ().FindAccountsForService ("Facebook");
732732
```
733733

0 commit comments

Comments
 (0)