Skip to content

Commit fcf4c0a

Browse files
committed
net10 bump
1 parent 08128a2 commit fcf4c0a

File tree

4 files changed

+14
-12
lines changed

4 files changed

+14
-12
lines changed

.github/workflows/build-android.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ env:
2121
APP_PROJECT: './ShinyWonderland/ShinyWonderland.csproj'
2222
APP_VERSION: '1.0'
2323
APPSETTINGS_JSON_FILE: './ShinyWonderland/appsettings.json'
24-
DOTNET_TFM: 'net9.0'
25-
DOTNET_VERSION: '9.0.x'
24+
DOTNET_TFM: 'net10.0'
25+
DOTNET_VERSION: '10.0.x'
2626
PACKAGE_NAME: 'org.shiny.wonderland'
2727
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
2828

.github/workflows/build-ios.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ concurrency:
1919

2020
env:
2121
XCODE_VERSION: 26.0
22-
DOTNET_TFM: 'net9.0'
23-
DOTNET_VERSION: '9.0.x'
22+
DOTNET_TFM: 'net10.0'
23+
DOTNET_VERSION: '10.0.x'
2424
APP_PROJECT: './ShinyWonderland/ShinyWonderland.csproj'
2525
APP_VERSION: '1.0'
2626
APPSETTINGS_JSON_FILE: './ShinyWonderland/appsettings.json'

ShinyWonderland/RideTimesViewModel.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ public Task Handle(JobDataRefreshEvent @event, IMediatorContext context, Cancell
7373

7474

7575
[MainThread]
76+
[Cache(AbsoluteExpirationSeconds = 60)]
7677
public Task Handle(GpsEvent @event, IMediatorContext context, CancellationToken cancellationToken)
7778
{
7879
logger.LogDebug("Received GPS event with position: {Position}", @event.Position);

ShinyWonderland/ShinyWonderland.csproj

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<BaseTargetFramework>net9.0</BaseTargetFramework>
3+
<BaseTargetFramework>net10.0</BaseTargetFramework>
44
<TargetFrameworks>$(TargetFrameworks);$(BaseTargetFramework)-ios</TargetFrameworks>
55
<TargetFrameworks>$(TargetFrameworks);$(BaseTargetFramework)-android</TargetFrameworks>
66
<OutputType Condition="'$(TargetFramework)' != '$(BaseTargetFramework)'">Exe</OutputType>
@@ -11,15 +11,16 @@
1111
<LangVersion>preview</LangVersion>
1212
<UseMaui>true</UseMaui>
1313
<EnableConfigurationBindingGenerator>true</EnableConfigurationBindingGenerator>
14+
<MauiXamlInflator>SourceGen</MauiXamlInflator>
1415

1516
<ApplicationTitle>Wonderland</ApplicationTitle>
1617
<ApplicationId>org.shiny.wonderland</ApplicationId>
1718
<ApplicationIdGuid>0BDC1432-1873-4436-BA42-D06EC0FA2CF8</ApplicationIdGuid>
1819
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
1920
<ApplicationVersion>1</ApplicationVersion>
2021

21-
<MauiVersion>9.0.120</MauiVersion>
22-
<ShinyVersion>4.0.0-beta-0093</ShinyVersion>
22+
<MauiVersion>10.0.10</MauiVersion>
23+
<ShinyVersion>4.0.0-beta-0095</ShinyVersion>
2324

2425
<EnableAotAnalyzer>true</EnableAotAnalyzer>
2526
<EnableTrimAnalyzer>true</EnableTrimAnalyzer>
@@ -108,10 +109,10 @@
108109
<ItemGroup>
109110
<PackageReference Include="Microsoft.Maui.Controls" Version="$(MauiVersion)"/>
110111
<PackageReference Include="Microsoft.Maui.Controls.Maps" Version="$(MauiVersion)"/>
111-
<PackageReference Include="Microsoft.Extensions.Localization" Version="9.0.10"/>
112-
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="9.0.10" Condition="'$(Configuration)' == 'Debug'"/>
112+
<PackageReference Include="Microsoft.Extensions.Localization" Version="10.0.0"/>
113+
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="10.0.0" Condition="'$(Configuration)' == 'Debug'"/>
113114
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0"/>
114-
<PackageReference Include="Sentry.Maui" Version="5.16.1" />
115+
<PackageReference Include="Sentry.Maui" Version="5.16.2" />
115116
<PackageReference Include="Shiny.Extensions.Localization.Generator" Version="2.0.0">
116117
<PrivateAssets>all</PrivateAssets>
117118
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
@@ -120,8 +121,8 @@
120121
<PackageReference Include="Shiny.Extensions.DependencyInjection" Version="1.3.1" />
121122
<PackageReference Include="Shiny.Reflector" Version="1.7.0"/>
122123
<PackageReference Include="Shiny.Maui.Shell" Version="1.1.1" />
123-
<PackageReference Include="Shiny.Mediator.Maui" Version="5.0.0-beta-0012" />
124-
<PackageReference Include="Shiny.Mediator.Sentry" Version="5.0.0-beta-0012" />
124+
<PackageReference Include="Shiny.Mediator.Maui" Version="5.1.1" />
125+
<PackageReference Include="Shiny.Mediator.Sentry" Version="5.1.1" />
125126
<PackageReference Include="Shiny.Locations" Version="$(ShinyVersion)"/>
126127
<PackageReference Include="Shiny.Jobs" Version="$(ShinyVersion)"/>
127128
<PackageReference Include="Shiny.Notifications" Version="$(ShinyVersion)"/>

0 commit comments

Comments
 (0)