diff --git a/Borepin/Borepin.iOS/Borepin.iOS.csproj b/Borepin/Borepin.iOS/Borepin.iOS.csproj
index f467fed..3b33f3e 100644
--- a/Borepin/Borepin.iOS/Borepin.iOS.csproj
+++ b/Borepin/Borepin.iOS/Borepin.iOS.csproj
@@ -30,6 +30,7 @@
SdkOnly
true
iPhone Developer
+ 14.5
none
@@ -56,6 +57,7 @@
-all
--optimize=experimental-xforms-product-type
+ Borepin Distribution Profile 2021
none
diff --git a/Borepin/Borepin/App.xaml.cs b/Borepin/Borepin/App.xaml.cs
index 6514feb..10bb539 100644
--- a/Borepin/Borepin/App.xaml.cs
+++ b/Borepin/Borepin/App.xaml.cs
@@ -47,7 +47,7 @@ namespace Borepin
containerRegistry.RegisterForNavigation();
containerRegistry.RegisterForNavigation("SetUpProcess_WelcomePage");
- containerRegistry.RegisterForNavigation("SetUpProcess_ScanPage");
+ //containerRegistry.RegisterForNavigation("SetUpProcess_ScanPage");
containerRegistry.RegisterForNavigation("AddServerProcess_LoginPasswordPage");
containerRegistry.RegisterForNavigation("AddServerProcess_HostSelectPage");
diff --git a/Borepin/Borepin/Borepin.csproj b/Borepin/Borepin/Borepin.csproj
index f729d47..7fcc41b 100644
--- a/Borepin/Borepin/Borepin.csproj
+++ b/Borepin/Borepin/Borepin.csproj
@@ -38,9 +38,6 @@
SettingsPage.xaml
-
- ScanPage.xaml
-
WelcomePage.xaml
@@ -89,9 +86,6 @@
MSBuild:UpdateDesignTimeXaml
-
- MSBuild:UpdateDesignTimeXaml
-
MSBuild:UpdateDesignTimeXaml
diff --git a/Borepin/Borepin/Page/SetUpProcess/ScanPage.xaml b/Borepin/Borepin/Page/SetUpProcess/ScanPage.xaml
deleted file mode 100644
index a87a52e..0000000
--- a/Borepin/Borepin/Page/SetUpProcess/ScanPage.xaml
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Borepin/Borepin/Page/SetUpProcess/ScanPage.xaml.cs b/Borepin/Borepin/Page/SetUpProcess/ScanPage.xaml.cs
deleted file mode 100644
index 5e07424..0000000
--- a/Borepin/Borepin/Page/SetUpProcess/ScanPage.xaml.cs
+++ /dev/null
@@ -1,14 +0,0 @@
-using Xamarin.Forms;
-using Xamarin.Forms.Xaml;
-
-namespace Borepin.Page.SetUpProcess
-{
- [XamlCompilation(XamlCompilationOptions.Compile)]
- public partial class ScanPage : ContentPage
- {
- public ScanPage()
- {
- InitializeComponent();
- }
- }
-}
\ No newline at end of file
diff --git a/Borepin/Borepin/PageModel/MainPagePageModel.cs b/Borepin/Borepin/PageModel/MainPagePageModel.cs
index fa07d47..ec5eda6 100644
--- a/Borepin/Borepin/PageModel/MainPagePageModel.cs
+++ b/Borepin/Borepin/PageModel/MainPagePageModel.cs
@@ -52,8 +52,8 @@ namespace Borepin.PageModel
public override void OnNavigatedTo(INavigationParameters parameters)
{
- IsBusy = true;
- Task.Run(LoadData);
+ IsBusy = false;
+ //Task.Run(LoadData);
}
#endregion
}
diff --git a/Borepin/Borepin/PageModel/SetUpProcess/ScanPageModel.cs b/Borepin/Borepin/PageModel/SetUpProcess/ScanPageModel.cs
deleted file mode 100644
index 40ad3cb..0000000
--- a/Borepin/Borepin/PageModel/SetUpProcess/ScanPageModel.cs
+++ /dev/null
@@ -1,58 +0,0 @@
-using Borepin.Base;
-using Prism.Commands;
-using Prism.Navigation;
-using System.Threading.Tasks;
-using System.Windows.Input;
-
-namespace Borepin.PageModel.SetUpProcess
-{
- public class ScanPageModel : PageModelBase
- {
- #region Constructors
- public ScanPageModel(INavigationService navigationService) : base(navigationService)
- {
- NextCommand = new DelegateCommand