Skip to content

Commit 68a9c9d

Browse files
committed
released: v1.1.0
1 parent 82ab556 commit 68a9c9d

File tree

2 files changed

+25
-24
lines changed

2 files changed

+25
-24
lines changed

samples/src/VControl.Samples.csproj

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

33
<PropertyGroup>
4-
<TargetFrameworks>net8.0-ios;net8.0-android;</TargetFrameworks>
4+
<TargetFrameworks>net9.0-ios;net9.0-android;</TargetFrameworks>
55
<AndroidPackageFormat>apk</AndroidPackageFormat>
66
<!-- Uncomment to also build the tizen app. You will need to install tizen by following this: https://github.com/Samsung/Tizen.NET -->
77
<!-- <TargetFrameworks>$(TargetFrameworks);net7.0-tizen</TargetFrameworks> -->
@@ -31,20 +31,20 @@
3131
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'">6.5</SupportedOSPlatformVersion>
3232
</PropertyGroup>
3333

34-
<PropertyGroup Condition="'$(TargetFramework)'=='net8.0-ios'">
34+
<PropertyGroup Condition="'$(TargetFramework)'=='net9.0-ios'">
3535
<ProvisioningType>manual</ProvisioningType>
3636
<CodesignKey>iPhone Distribution</CodesignKey>
3737
<CodesignProvision></CodesignProvision>
3838
</PropertyGroup>
3939

4040

41-
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net8.0-android|AnyCPU'">
41+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net9.0-android|AnyCPU'">
4242
<AndroidLinkTool>r8</AndroidLinkTool>
4343
<DebugSymbols>True</DebugSymbols>
4444
</PropertyGroup>
4545

4646

47-
<PropertyGroup Condition="'$(TargetFramework)|$(Platform)'=='net8.0-ios|AnyCPU'">
47+
<PropertyGroup Condition="'$(TargetFramework)|$(Platform)'=='net9.0-ios|AnyCPU'">
4848
<MtouchLink>SdkOnly</MtouchLink>
4949
</PropertyGroup>
5050

@@ -53,7 +53,7 @@
5353
<MauiIcon Include="Resources\AppIcon\appicon.svg" ForegroundFile="Resources\AppIcon\appiconfg.svg" Color="#512BD4" />
5454

5555
<!-- Splash Screen -->
56-
<MauiSplashScreen Include="Resources\Splash\logo.svg" Color="#fff" />
56+
<MauiSplashScreen Include="Resources\Splash\logo.svg" Color="#fff" />
5757

5858
<!-- Images -->
5959
<MauiImage Include="Resources\Images\**\*" />
@@ -77,26 +77,26 @@
7777

7878

7979
<ItemGroup>
80-
<PackageReference Include="CommunityToolkit.Maui" Version="9.0.0" />
81-
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.3.2" />
82-
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
83-
<PackageReference Include="Microsoft.Maui.Controls" Version="8.0.100" />
84-
<PackageReference Include="Microsoft.Maui.Controls.Compatibility" Version="8.0.100" />
80+
<PackageReference Include="CommunityToolkit.Maui" Version="11.2.0" />
81+
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
82+
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
83+
<PackageReference Include="Microsoft.Maui.Controls" Version="9.0.111" />
84+
<PackageReference Include="Microsoft.Maui.Controls.Compatibility" Version="9.0.111" />
8585
</ItemGroup>
8686

8787

88-
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0-android'">
88+
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0-android'">
8989
<PackageReference Include="Xamarin.AndroidX.Lifecycle.LiveData.Ktx">
90-
<Version>2.8.7.1</Version>
90+
<Version>2.9.3</Version>
9191
</PackageReference>
92-
<PackageReference Include="Xamarin.Google.Android.Play.App.Update" Version="2.1.0.12"></PackageReference>
93-
<PackageReference Include="Xamarin.AndroidX.Activity.Ktx" Version="1.9.3.1" />
94-
<PackageReference Include="Xamarin.AndroidX.Collection.Jvm" Version="1.4.5.1" />
95-
<PackageReference Include="Xamarin.AndroidX.Collection.Ktx" Version="1.4.5.1" />
92+
<PackageReference Include="Xamarin.Google.Android.Play.App.Update" Version="2.1.0.16"></PackageReference>
93+
<PackageReference Include="Xamarin.AndroidX.Activity.Ktx" Version="1.11.0" />
94+
<PackageReference Include="Xamarin.AndroidX.Collection.Jvm" Version="1.5.0.3" />
95+
<PackageReference Include="Xamarin.AndroidX.Collection.Ktx" Version="1.5.0.3" />
9696

9797
</ItemGroup>
9898

99-
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0-ios'">
99+
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0-ios'">
100100
<BundleResource Include="Platforms\iOS\PrivacyInfo.xcprivacy" LogicalName="PrivacyInfo.xcprivacy" />
101101
</ItemGroup>
102102

src/VControl.csproj

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

33
<PropertyGroup>
4-
<TargetFrameworks>net8.0-android;net8.0-ios;</TargetFrameworks>
4+
<TargetFrameworks>net9.0-android;net9.0-ios;</TargetFrameworks>
55
<!-- Uncomment to also build the tizen app. You will need to install tizen by following this: https://github.com/Samsung/Tizen.NET -->
6-
<!-- <TargetFrameworks>$(TargetFrameworks);net8.0-tizen</TargetFrameworks> -->
6+
<!-- <TargetFrameworks>$(TargetFrameworks);net9.0-tizen</TargetFrameworks> -->
77
<UseMaui>true</UseMaui>
88
<SingleProject>true</SingleProject>
99
<ImplicitUsings>enable</ImplicitUsings>
@@ -14,7 +14,7 @@
1414
<Company>MatoApp</Company>
1515
<Copyright>Copyright © 2025</Copyright>
1616
<PackageLicenseExpression>MIT</PackageLicenseExpression>
17-
<Version>1.0.0</Version>
17+
<Version>1.1.0</Version>
1818
<PackageReadmeFile>README.md</PackageReadmeFile>
1919
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">11.0</SupportedOSPlatformVersion>
2020
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">13.1</SupportedOSPlatformVersion>
@@ -27,8 +27,9 @@
2727
<None Include="..\README.md" Pack="true" PackagePath="\" />
2828
</ItemGroup>
2929
<ItemGroup>
30-
<PackageReference Include="Microsoft.Maui.Controls" Version="$(MauiVersion)" />
31-
<PackageReference Include="Microsoft.Maui.Controls.Compatibility" Version="$(MauiVersion)" />
30+
<PackageReference Include="CommunityToolkit.Maui" Version="11.2.0" />
31+
<PackageReference Include="Microsoft.Maui.Controls" Version="9.0.111" />
32+
<PackageReference Include="Microsoft.Maui.Controls.Compatibility" Version="9.0.111" />
3233
</ItemGroup>
3334

3435
<ItemGroup>
@@ -112,13 +113,13 @@
112113
</ItemGroup>
113114

114115
<!-- Android -->
115-
<ItemGroup Condition="$(TargetFramework.StartsWith('net8.0-android')) != true">
116+
<ItemGroup Condition="$(TargetFramework.StartsWith('net9.0-android')) != true">
116117
<Compile Remove="**\**\*.Android.cs" />
117118
<None Include="**\**\*.Android.cs" Exclude="$(DefaultItemExcludes);$(DefaultExcludesInProjectFolder)" />
118119
</ItemGroup>
119120

120121
<!-- iOS -->
121-
<ItemGroup Condition="$(TargetFramework.StartsWith('net8.0-ios')) != true">
122+
<ItemGroup Condition="$(TargetFramework.StartsWith('net9.0-ios')) != true">
122123
<Compile Remove="**\**\*.iOS.cs" />
123124
<None Include="**\**\*.iOS.cs" Exclude="$(DefaultItemExcludes);$(DefaultExcludesInProjectFolder)" />
124125
</ItemGroup>

0 commit comments

Comments
 (0)