Skip to content

Commit aa1b745

Browse files
Merge pull request #252 from AndreasReitberger/243-update-nugets
Updated nugets
2 parents 3e4ca36 + 339bf00 commit aa1b745

5 files changed

Lines changed: 13 additions & 11 deletions

File tree

common.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
<Project>
33
<PropertyGroup>
4-
<Version>1.1.17</Version>
4+
<Version>1.1.18</Version>
55
<PackageIcon>ar_128.png</PackageIcon>
66
<NeutralLanguage>en</NeutralLanguage>
77
<PackageProjectUrl>https://github.com/AndreasReitberger/SharedMauiCoreLibrary</PackageProjectUrl>

framework.maui.props

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
<PropertyGroup>
44
<TargetFrameworks>net9.0;net9.0-android</TargetFrameworks>
55
<!-- Needed for GitHub action, iOS and MacOS is not workig on Linux -->
6-
<TargetFrameworks Condition="!$([MSBuild]::IsOSPlatform('linux'))">$(TargetFrameworks);net9.0-ios;net9.0-maccatalyst;net9.0-macos</TargetFrameworks>
6+
<TargetFrameworks Condition="!$([MSBuild]::IsOSPlatform('linux'))">$(TargetFrameworks);net9.0-ios;net9.0-maccatalyst</TargetFrameworks>
7+
<!-- Causes problems on windows?! -->
8+
<TargetFrameworks Condition="!$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net9.0-macos</TargetFrameworks>
79
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net9.0-windows10.0.19041.0</TargetFrameworks>
810

911
<!-- General -->

src/SharedMauiCoreLibrary.Licensing/SharedMauiCoreLibrary.Licensing.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
</ItemGroup>
4646

4747
<ItemGroup>
48-
<PackageReference Include="Microsoft.Maui.Controls" Version="9.0.81" />
48+
<PackageReference Include="Microsoft.Maui.Controls" Version="9.0.110" />
4949
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
5050
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
5151
<PackageReference Include="RestSharp" Version="112.1.0" />

src/SharedMauiCoreLibrary.Test/SharedMauiCoreLibrary.Test.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,20 @@
1111
</PropertyGroup>
1212

1313
<ItemGroup>
14-
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="9.0.6" />
15-
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.6" />
14+
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="9.0.9" />
15+
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.9" />
1616
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
17-
<PackageReference Include="NUnit" Version="4.3.2" />
18-
<PackageReference Include="NUnit3TestAdapter" Version="5.0.0" />
19-
<PackageReference Include="NUnit.Analyzers" Version="4.9.2">
17+
<PackageReference Include="NUnit" Version="4.4.0" />
18+
<PackageReference Include="NUnit3TestAdapter" Version="5.1.0" />
19+
<PackageReference Include="NUnit.Analyzers" Version="4.10.0">
2020
<PrivateAssets>all</PrivateAssets>
2121
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2222
</PackageReference>
2323
<PackageReference Include="coverlet.collector" Version="6.0.4">
2424
<PrivateAssets>all</PrivateAssets>
2525
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2626
</PackageReference>
27-
<PackageReference Include="System.Text.Json" Version="9.0.6" />
27+
<PackageReference Include="System.Text.Json" Version="9.0.9" />
2828
</ItemGroup>
2929

3030
<ItemGroup>

src/SharedMauiCoreLibrary/SharedMauiCoreLibrary.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
</ItemGroup>
3232

3333
<ItemGroup>
34-
<PackageReference Include="Microsoft.Maui.Controls" Version="9.0.81" />
35-
<PackageReference Include="CommunityToolkit.Maui" Version="12.1.0" />
34+
<PackageReference Include="Microsoft.Maui.Controls" Version="9.0.110" />
35+
<PackageReference Include="CommunityToolkit.Maui" Version="12.2.0" />
3636
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
3737
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
3838
</ItemGroup>

0 commit comments

Comments
 (0)