Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions TaskApp/MauiProgram.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,6 @@ public static MauiApp CreateMauiApp()
})
.UseMauiCommunityToolkit()
.UseBottomSheet()
#if DEBUG
.EnableMauiReactorHotReload()
.OnMauiReactorUnhandledException(ex =>
{
System.Diagnostics.Debug.WriteLine(ex.ExceptionObject);
})
#endif
.ConfigureFonts(fonts =>
{
fonts.AddFont("PlusJakartaSans-Regular.ttf", "PlusJakartaSansRegular");
Expand Down
2 changes: 1 addition & 1 deletion TaskApp/Pages/Components/NewTaskPane.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ VisualNode RenderCalendar()

return Border(
DatePicker()
.OnDateSelected(date => SetState(s => s.TimeStamp = date))
.OnDateSelected(date => SetState(s => s.TimeStamp = date ?? DateTime.Now))
.TextColor(ApplicationTheme.DarkGray)
)
.Padding(12, 0)
Expand Down
16 changes: 8 additions & 8 deletions TaskApp/TaskApp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net8.0-android;net8.0-ios</TargetFrameworks>
<TargetFrameworks>net10.0-android;net10.0-ios</TargetFrameworks>

<OutputType>Exe</OutputType>
<RootNamespace>TaskApp</RootNamespace>
Expand All @@ -20,8 +20,8 @@
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
<ApplicationVersion>1</ApplicationVersion>

<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">11.0</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">13.1</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">16.0</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">16.0</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">21.0</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</SupportedOSPlatformVersion>
<TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</TargetPlatformMinVersion>
Expand All @@ -47,15 +47,15 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="CommunityToolkit.Maui" Version="9.0.2" />
<PackageReference Include="Microsoft.Maui.Controls" Version="8.0.*" />
<PackageReference Include="Microsoft.Maui.Controls.Compatibility" Version="8.0.*" />
<PackageReference Include="CommunityToolkit.Maui" Version="14.0.1" />
<PackageReference Include="Microsoft.Maui.Controls" Version="10.0.50" />
<PackageReference Include="Microsoft.Maui.Controls.Compatibility" Version="10.0.50" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="8.0.0" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Reactor.Maui" Version="2.0.*" />
<PackageReference Include="Reactor.Maui.Canvas" Version="2.0.*" />
<PackageReference Include="Reactor.Maui" Version="4.0.16" />
<PackageReference Include="Reactor.Maui.Canvas" Version="4.0.16" />
<PackageReference Include="The49.Maui.BottomSheet" Version="8.0.3" />
</ItemGroup>
</Project>