diff --git a/src/Directory.Packages.props b/src/Directory.Packages.props
index 9e4cbc3756..37b3c31e37 100644
--- a/src/Directory.Packages.props
+++ b/src/Directory.Packages.props
@@ -1,7 +1,7 @@
true
- 300.0.0
+ 300.1.0
@@ -30,8 +30,7 @@
-
-
-
+
+
diff --git a/src/MAUI/Maui.Samples/ArcGIS.Samples.Maui.csproj b/src/MAUI/Maui.Samples/ArcGIS.Samples.Maui.csproj
index 897945ea57..e4bd93c52c 100644
--- a/src/MAUI/Maui.Samples/ArcGIS.Samples.Maui.csproj
+++ b/src/MAUI/Maui.Samples/ArcGIS.Samples.Maui.csproj
@@ -1,8 +1,8 @@
- net9.0-android;net9.0-ios;net9.0-maccatalyst
- $(TargetFrameworks);net9.0-windows10.0.19041.0
+ net10.0-android;net10.0-ios;net10.0-maccatalyst
+ $(TargetFrameworks);net10.0-windows10.0.19041.0
Exe
ArcGIS.Samples
true
@@ -143,9 +143,6 @@
-
-
-
MSBuild:Compile
diff --git a/src/MAUI/Maui.Samples/Platforms/Android/AndroidManifest.xml b/src/MAUI/Maui.Samples/Platforms/Android/AndroidManifest.xml
index 01e3e04aaa..2595371f21 100644
--- a/src/MAUI/Maui.Samples/Platforms/Android/AndroidManifest.xml
+++ b/src/MAUI/Maui.Samples/Platforms/Android/AndroidManifest.xml
@@ -1,7 +1,7 @@
-
+
diff --git a/src/MAUI/Maui.Samples/Samples/Geoprocessing/AnalyzeHotspots/AnalyzeHotspots.xaml.cs b/src/MAUI/Maui.Samples/Samples/Geoprocessing/AnalyzeHotspots/AnalyzeHotspots.xaml.cs
index ed7874250d..68e89bdb39 100644
--- a/src/MAUI/Maui.Samples/Samples/Geoprocessing/AnalyzeHotspots/AnalyzeHotspots.xaml.cs
+++ b/src/MAUI/Maui.Samples/Samples/Geoprocessing/AnalyzeHotspots/AnalyzeHotspots.xaml.cs
@@ -65,7 +65,7 @@ private async void OnRunAnalysisClicked(object sender, EventArgs e)
MyActivityIndicator.IsRunning = true;
// The end date must be at least one day after the start date
- if (EndDate.Date <= StartDate.Date.AddDays(1))
+ if (EndDate.Date <= StartDate.Date.Value.AddDays(1))
{
// Show error message
_ = DisplayAlert("Invalid date range", "Please select valid time range. There has to be at least one day in between To and From dates.", "OK");