Skip to content

Commit 9fdb5a0

Browse files
committed
update maui to dotnet 8.0.17
1 parent 9890334 commit 9fdb5a0

File tree

11 files changed

+30
-24
lines changed

11 files changed

+30
-24
lines changed

src/dsstats.db8/dsstats.db8.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88

99
<ItemGroup>
1010
<PackageReference Include="Automapper" Version="14.0.0" />
11-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.15" />
11+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.17" />
1212
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.15">
1313
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1414
<PrivateAssets>all</PrivateAssets>
1515
</PackageReference>
16-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.15" />
16+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.17" />
1717
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="8.0.3" />
1818
</ItemGroup>
1919

src/dsstats.db8services/dsstats.db8services.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="CsvHelper" Version="33.0.1" />
10+
<PackageReference Include="CsvHelper" Version="33.1.0" />
1111
<PackageReference Include="LinqKit" Version="1.3.8" />
1212
<PackageReference Include="MathNet.Numerics" Version="5.0.0" />
13-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.15" />
14-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.15" />
13+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.17" />
14+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.17" />
1515
<PackageReference Include="System.Data.SqlClient" Version="4.9.0" />
1616
<PackageReference Include="System.Data.SQLite" Version="1.0.119" />
17-
<PackageReference Include="System.Drawing.Common" Version="8.0.15" />
17+
<PackageReference Include="System.Drawing.Common" Version="8.0.17" />
1818
</ItemGroup>
1919

2020
<ItemGroup>

src/dsstats.maui/SqliteMigrations/SqliteMigrations.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111
</ItemGroup>
1212

1313
<ItemGroup>
14-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.15" />
14+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.17" />
1515
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.15">
1616
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1717
<PrivateAssets>all</PrivateAssets>
1818
</PackageReference>
19-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.15" />
19+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.17" />
2020
</ItemGroup>
2121

2222
</Project>

src/dsstats.maui/dsstats.localization/dsstats.localization.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="CsvHelper" Version="33.0.1" />
11+
<PackageReference Include="CsvHelper" Version="33.1.0" />
1212
</ItemGroup>
1313

1414
<ItemGroup>

src/dsstats.maui/dsstats.maui8.sln

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dsstats.shared", "..\dsstat
2525
EndProject
2626
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dsstats.localization", "dsstats.localization\dsstats.localization.csproj", "{E7E7891C-1CD8-4CA1-AA9E-B427A5AFCF5C}"
2727
EndProject
28+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dsstats.builder", "dsstats.builder\dsstats.builder\dsstats.builder.csproj", "{D9169F30-62FF-D2AC-3126-EC440DE0CA52}"
29+
EndProject
2830
Global
2931
GlobalSection(SolutionConfigurationPlatforms) = preSolution
3032
Debug|Any CPU = Debug|Any CPU
@@ -77,6 +79,10 @@ Global
7779
{E7E7891C-1CD8-4CA1-AA9E-B427A5AFCF5C}.Debug|Any CPU.Build.0 = Debug|Any CPU
7880
{E7E7891C-1CD8-4CA1-AA9E-B427A5AFCF5C}.Release|Any CPU.ActiveCfg = Release|Any CPU
7981
{E7E7891C-1CD8-4CA1-AA9E-B427A5AFCF5C}.Release|Any CPU.Build.0 = Release|Any CPU
82+
{D9169F30-62FF-D2AC-3126-EC440DE0CA52}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
83+
{D9169F30-62FF-D2AC-3126-EC440DE0CA52}.Debug|Any CPU.Build.0 = Debug|Any CPU
84+
{D9169F30-62FF-D2AC-3126-EC440DE0CA52}.Release|Any CPU.ActiveCfg = Release|Any CPU
85+
{D9169F30-62FF-D2AC-3126-EC440DE0CA52}.Release|Any CPU.Build.0 = Release|Any CPU
8086
EndGlobalSection
8187
GlobalSection(SolutionProperties) = preSolution
8288
HideSolutionNode = FALSE

src/dsstats.maui/dsstats.maui8/Platforms/Windows/Package.appxmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
66
IgnorableNamespaces="uap rescap">
77

8-
<Identity Name="29898PhilippHetzner.141231D0ED353" Publisher="CN=592AF738-4E2A-4BF3-87A7-D07953D08DE9" Version="2.0.8.0" />
8+
<Identity Name="29898PhilippHetzner.141231D0ED353" Publisher="CN=592AF738-4E2A-4BF3-87A7-D07953D08DE9" Version="2.0.9.0" />
99

1010
<Properties>
1111
<DisplayName>$placeholder$</DisplayName>

src/dsstats.maui/dsstats.maui8/Services/GitHubUpdateService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace dsstats.maui8.Services;
66
public class GitHubUpdateService(ILogger<GitHubUpdateService> logger) : IUpdateService
77
{
88
private static readonly string packageUri = "https://github.com/ipax77/dsstats/releases/latest/download/";
9-
public static readonly Version CurrentVersion = new Version(2, 0, 8, 0);
9+
public static readonly Version CurrentVersion = new Version(2, 0, 9, 0);
1010
private Version latestVersion = new Version(0, 0, 0, 0);
1111
private readonly object lockobject = new();
1212
private readonly bool logToFile = false;

src/dsstats.maui/dsstats.maui8/dsstats.maui8.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,11 @@
6464

6565
<ItemGroup>
6666
<PackageReference Include="LinqKit" Version="1.3.8" />
67-
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.15" />
68-
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="8.0.15" />
69-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.15" />
70-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.15" />
71-
<PackageReference Include="Microsoft.Extensions.Localization" Version="8.0.15" />
67+
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.17" />
68+
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="8.0.17" />
69+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.17" />
70+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.17" />
71+
<PackageReference Include="Microsoft.Extensions.Localization" Version="8.0.17" />
7272
<PackageReference Include="Microsoft.Maui.Controls" Version="8.0.100" />
7373
<PackageReference Include="Microsoft.Maui.Controls.Compatibility" Version="8.0.100" />
7474
<PackageReference Include="Microsoft.AspNetCore.Components.WebView.Maui" Version="8.0.100" />
@@ -77,7 +77,7 @@
7777
<PackageReference Include="Blazored.Toast" Version="4.2.1" />
7878
<PackageReference Include="CommunityToolkit.Maui" Version="9.1.1" />
7979
<PackageReference Include="System.Data.SqlClient" Version="4.9.0" />
80-
<PackageReference Include="System.Drawing.Common" Version="8.0.15" />
80+
<PackageReference Include="System.Drawing.Common" Version="8.0.17" />
8181
</ItemGroup>
8282

8383
<ItemGroup>

src/dsstats.maui/pax.dsstats.parser/pax.dsstats.parser.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="CsvHelper" Version="33.0.1" />
11+
<PackageReference Include="CsvHelper" Version="33.1.0" />
1212
<PackageReference Include="IronPython.StdLib" Version="2.7.12" />
1313
<PackageReference Include="s2protocol.NET" Version="0.8.4" />
14-
<PackageReference Include="System.Drawing.Common" Version="8.0.15" />
14+
<PackageReference Include="System.Drawing.Common" Version="8.0.17" />
1515
</ItemGroup>
1616

1717
<ItemGroup>

src/dsstats.ratings/dsstats.ratings.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
</ItemGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="CsvHelper" Version="33.0.1" />
11-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.15" />
12-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.15" />
10+
<PackageReference Include="CsvHelper" Version="33.1.0" />
11+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.17" />
12+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.17" />
1313
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.1" />
1414
</ItemGroup>
1515

0 commit comments

Comments
 (0)