Skip to content

Commit e8c9652

Browse files
committed
Updated to .NET 10
1 parent c81a8cd commit e8c9652

File tree

2 files changed

+20
-20
lines changed

2 files changed

+20
-20
lines changed

PassXYZ.Vault.Tests/PassXYZ.Vault.Tests.csproj

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<UseMaui>true</UseMaui>
8-
<MauiVersion>8.0.100</MauiVersion>
8+
<MauiVersion>10.0.10</MauiVersion>
99
<IsPackable>false</IsPackable>
1010
</PropertyGroup>
1111

1212
<ItemGroup>
1313
<PackageReference Include="Microsoft.Maui.Controls" Version="$(MauiVersion)" />
1414
<PackageReference Include="Microsoft.Maui.Controls.Compatibility" Version="$(MauiVersion)" />
15-
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" />
16-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
17-
<PackageReference Include="xunit" Version="2.9.0" />
18-
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
15+
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="10.0.0" />
16+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
17+
<PackageReference Include="xunit" Version="2.9.3" />
18+
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5">
1919
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2020
<PrivateAssets>all</PrivateAssets>
2121
</PackageReference>
22-
<PackageReference Include="coverlet.collector" Version="6.0.2">
22+
<PackageReference Include="coverlet.collector" Version="6.0.4">
2323
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2424
<PrivateAssets>all</PrivateAssets>
2525
</PackageReference>
26-
<PackageReference Include="NSubstitute" Version="5.1.0" />
27-
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="8.0.0" />
26+
<PackageReference Include="NSubstitute" Version="5.3.0" />
27+
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="10.0.0" />
2828
</ItemGroup>
2929

3030
<ItemGroup>

PassXYZ.Vault/PassXYZ.Vault.csproj

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net9.0;net9.0-android;net9.0-ios;net9.0-maccatalyst</TargetFrameworks>
5-
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net9.0-windows10.0.19041.0</TargetFrameworks>
4+
<TargetFrameworks>net10.0;net10.0-android;net10.0-ios;net10.0-maccatalyst</TargetFrameworks>
5+
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net10.0-windows10.0.19041.0</TargetFrameworks>
66
<!-- Uncomment to also build the tizen app. You will need to install tizen by following this: https://github.com/Samsung/Tizen.NET -->
7-
<!-- <TargetFrameworks>$(TargetFrameworks);net9.0-tizen</TargetFrameworks> -->
7+
<!-- <TargetFrameworks>$(TargetFrameworks);net10.0-tizen</TargetFrameworks> -->
88

99
<!-- Note for MacCatalyst:
1010
The default runtime is maccatalyst-x64, except in Release config, in which case the default is maccatalyst-x64;maccatalyst-arm64.
@@ -13,10 +13,10 @@
1313
either BOTH runtimes must be indicated or ONLY macatalyst-x64. -->
1414
<!-- For example: <RuntimeIdentifiers>maccatalyst-x64;maccatalyst-arm64</RuntimeIdentifiers> -->
1515

16-
<OutputType Condition="'$(TargetFramework)'!='net9.0'">Exe</OutputType>
16+
<OutputType Condition="'$(TargetFramework)'!='net10.0'">Exe</OutputType>
1717
<RootNamespace>PassXYZ.Vault</RootNamespace>
1818
<UseMaui>true</UseMaui>
19-
<MauiVersion>9.0.110</MauiVersion>
19+
<MauiVersion>10.0.10</MauiVersion>
2020
<SingleProject>true</SingleProject>
2121
<ImplicitUsings>enable</ImplicitUsings>
2222
<Nullable>enable</Nullable>
@@ -47,22 +47,22 @@
4747
<GenerateTemporaryStoreCertificate>True</GenerateTemporaryStoreCertificate>
4848
<HoursBetweenUpdateChecks>0</HoursBetweenUpdateChecks>
4949
<EnableUnsafeBinaryFormatterSerialization>true</EnableUnsafeBinaryFormatterSerialization>
50-
<AssemblyVersion>2.3.0.0</AssemblyVersion>
51-
<FileVersion>2.3.0.0</FileVersion>
50+
<AssemblyVersion>2.4.0.0</AssemblyVersion>
51+
<FileVersion>2.4.0.0</FileVersion>
5252
<AppxPackageSigningEnabled>False</AppxPackageSigningEnabled>
5353
<AppxPackageSigningTimestampDigestAlgorithm>SHA256</AppxPackageSigningTimestampDigestAlgorithm>
5454
</PropertyGroup>
5555

56-
<PropertyGroup Condition="'$(TargetFramework)'=='net9.0-ios'">
56+
<PropertyGroup Condition="'$(TargetFramework)'=='net10.0-ios'">
5757
<CodesignKey>Apple Development: Created via API (X8CY3Q3W4V)</CodesignKey>
5858
<CodesignProvision>VS: com.passxyz.vault2 Development</CodesignProvision>
5959
</PropertyGroup>
6060

61-
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net9.0-android|AnyCPU'">
61+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net10.0-android|AnyCPU'">
6262
<AndroidKeyStore>False</AndroidKeyStore>
6363
</PropertyGroup>
6464

65-
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net9.0-android|AnyCPU'">
65+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net10.0-android|AnyCPU'">
6666
<AndroidKeyStore>False</AndroidKeyStore>
6767
<AndroidPackageFormat>apk</AndroidPackageFormat>
6868
<DebugSymbols>True</DebugSymbols>
@@ -146,7 +146,7 @@
146146
<PackageReference Include="Microsoft.Maui.Controls.Compatibility" Version="$(MauiVersion)" />
147147
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
148148
<PackageReference Include="EJL.MauiHybridWebView" Version="1.0.0-preview4" />
149-
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="9.0.9" />
149+
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="10.0.0" />
150150
<PackageReference Include="Plugin.Fingerprint" Version="3.0.0-beta.1" />
151151
<PackageReference Include="Camera.MAUI" Version="1.5.1" />
152152
</ItemGroup>

0 commit comments

Comments
 (0)