diff --git a/GitTrends.Android/GitTrends.Android.csproj b/GitTrends.Android/GitTrends.Android.csproj
index 79de3acef..59a196455 100644
--- a/GitTrends.Android/GitTrends.Android.csproj
+++ b/GitTrends.Android/GitTrends.Android.csproj
@@ -88,14 +88,14 @@
-
+
-
+
-
-
+
+
diff --git a/GitTrends.Functions/GitTrends.Functions.csproj b/GitTrends.Functions/GitTrends.Functions.csproj
index b4e60a98c..735c02972 100644
--- a/GitTrends.Functions/GitTrends.Functions.csproj
+++ b/GitTrends.Functions/GitTrends.Functions.csproj
@@ -18,7 +18,7 @@
false
-
+
diff --git a/GitTrends.iOS/GitTrends.iOS.csproj b/GitTrends.iOS/GitTrends.iOS.csproj
index d25ebcc9a..ea7060433 100644
--- a/GitTrends.iOS/GitTrends.iOS.csproj
+++ b/GitTrends.iOS/GitTrends.iOS.csproj
@@ -427,14 +427,14 @@
-
+
-
+
-
-
+
+
diff --git a/GitTrends.sln b/GitTrends.sln
index 9614288e6..c249ec4ce 100644
--- a/GitTrends.sln
+++ b/GitTrends.sln
@@ -55,9 +55,7 @@ Global
{09224C6B-D0E4-4CC8-9CCB-936D6A22D57B}.Release|iPhone.ActiveCfg = Release|Any CPU
{09224C6B-D0E4-4CC8-9CCB-936D6A22D57B}.Release|iPhone.Build.0 = Release|Any CPU
{F8F450DD-09C2-4BDD-B46B-A81BDAEC25BE}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
- {F8F450DD-09C2-4BDD-B46B-A81BDAEC25BE}.AppStore|Any CPU.Build.0 = Release|Any CPU
{F8F450DD-09C2-4BDD-B46B-A81BDAEC25BE}.AppStore|iPhone.ActiveCfg = Release|Any CPU
- {F8F450DD-09C2-4BDD-B46B-A81BDAEC25BE}.AppStore|iPhone.Build.0 = Release|Any CPU
{F8F450DD-09C2-4BDD-B46B-A81BDAEC25BE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F8F450DD-09C2-4BDD-B46B-A81BDAEC25BE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F8F450DD-09C2-4BDD-B46B-A81BDAEC25BE}.Debug|iPhone.ActiveCfg = Debug|Any CPU
@@ -88,10 +86,10 @@ Global
{EE380E99-E700-4B0C-9C56-B098CB400AAE}.Release|Any CPU.Build.0 = Release|Any CPU
{EE380E99-E700-4B0C-9C56-B098CB400AAE}.Release|iPhone.ActiveCfg = Release|Any CPU
{EE380E99-E700-4B0C-9C56-B098CB400AAE}.Release|iPhone.Build.0 = Release|Any CPU
- {936AEAD4-A683-44AD-A903-F3196454C244}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
- {936AEAD4-A683-44AD-A903-F3196454C244}.AppStore|Any CPU.Build.0 = Release|Any CPU
- {936AEAD4-A683-44AD-A903-F3196454C244}.AppStore|iPhone.ActiveCfg = Release|Any CPU
- {936AEAD4-A683-44AD-A903-F3196454C244}.AppStore|iPhone.Build.0 = Release|Any CPU
+ {936AEAD4-A683-44AD-A903-F3196454C244}.AppStore|Any CPU.ActiveCfg = AppStore|Any CPU
+ {936AEAD4-A683-44AD-A903-F3196454C244}.AppStore|Any CPU.Build.0 = AppStore|Any CPU
+ {936AEAD4-A683-44AD-A903-F3196454C244}.AppStore|iPhone.ActiveCfg = AppStore|Any CPU
+ {936AEAD4-A683-44AD-A903-F3196454C244}.AppStore|iPhone.Build.0 = AppStore|Any CPU
{936AEAD4-A683-44AD-A903-F3196454C244}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{936AEAD4-A683-44AD-A903-F3196454C244}.Debug|Any CPU.Build.0 = Debug|Any CPU
{936AEAD4-A683-44AD-A903-F3196454C244}.Debug|iPhone.ActiveCfg = Debug|Any CPU
diff --git a/GitTrends/GitTrends.csproj b/GitTrends/GitTrends.csproj
index 7cf0b378b..d4bab1631 100644
--- a/GitTrends/GitTrends.csproj
+++ b/GitTrends/GitTrends.csproj
@@ -31,15 +31,15 @@
-
+
-
+
-
-
+
+
diff --git a/GitTrends/Pages/RepositoryPage.cs b/GitTrends/Pages/RepositoryPage.cs
index 00aba65a9..938a82063 100644
--- a/GitTrends/Pages/RepositoryPage.cs
+++ b/GitTrends/Pages/RepositoryPage.cs
@@ -17,18 +17,19 @@ namespace GitTrends
public class RepositoryPage : BaseContentPage, ISearchPage
{
readonly WeakEventManager _searchTextChangedEventManager = new WeakEventManager();
+
readonly RefreshView _refreshView;
- readonly DeepLinkingService _deepLinkingService;
readonly FirstRunService _firstRunService;
readonly GitHubUserService _gitHubUserService;
+ readonly DeepLinkingService _deepLinkingService;
- public RepositoryPage(RepositoryViewModel repositoryViewModel,
+ public RepositoryPage(IMainThread mainThread,
+ FirstRunService firstRunService,
IAnalyticsService analyticsService,
+ GitHubUserService gitHubUserService,
MobileSortingService sortingService,
DeepLinkingService deepLinkingService,
- IMainThread mainThread,
- FirstRunService firstRunService,
- GitHubUserService gitHubUserService) : base(repositoryViewModel, analyticsService, mainThread)
+ RepositoryViewModel repositoryViewModel) : base(repositoryViewModel, analyticsService, mainThread)
{
_firstRunService = firstRunService;
_gitHubUserService = gitHubUserService;
@@ -164,8 +165,8 @@ Task NavigateToSettingsPage()
{
using var scope = ContainerService.Container.BeginLifetimeScope();
- var profilePage = scope.Resolve();
- return MainThread.InvokeOnMainThreadAsync(() => Navigation.PushAsync(profilePage));
+ var settingsPage = scope.Resolve();
+ return MainThread.InvokeOnMainThreadAsync(() => Navigation.PushAsync(settingsPage));
}
Task NavigateToTrendsPage(Repository repository)