Skip to content

Commit 1350879

Browse files
authored
Housekeeping Update packages (#3636)
<!-- Please be sure to read the [Contribute](https://github.com/reactiveui/reactiveui#contribute) section of the README --> **What kind of change does this PR introduce?** <!-- Bug fix, feature, docs update, ... --> housekeeping **What is the current behavior?** <!-- You can also link to an open issue here. --> Packages are failing to build due to multiple dependencies **What is the new behavior?** <!-- If this is a feature change --> Updated relevant packages **What might this PR break?** None expected **Please check if the PR fulfills these requirements** - [ ] Tests for the changes have been added (for bug fixes / features) - [ ] Docs have been added / updated (for bug fixes / features) **Other information**:
1 parent 11a3140 commit 1350879

File tree

19 files changed

+76
-51
lines changed

19 files changed

+76
-51
lines changed

src/Directory.build.props

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,15 @@
4545

4646
<ItemGroup Condition="$(IsTestProject)">
4747
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
48-
<PackageReference Include="xunit" Version="2.5.0" />
49-
<PackageReference Include="xunit.runner.console" Version="2.5.0" />
50-
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.0" />
48+
<PackageReference Include="xunit" Version="2.5.1" />
49+
<PackageReference Include="xunit.runner.console" Version="2.5.1" />
50+
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.1" />
5151
<PackageReference Include="Xunit.StaFact" Version="1.1.11" />
5252
<PackageReference Include="FluentAssertions" Version="6.12.0" />
5353
<PackageReference Include="Microsoft.Reactive.Testing" Version="6.0.0" />
5454
<PackageReference Include="PublicApiGenerator" Version="11.0.0" />
5555
<PackageReference Include="coverlet.msbuild" Version="6.0.0" PrivateAssets="All" />
56-
<PackageReference Include="Verify.Xunit" Version="20.6.0" />
56+
<PackageReference Include="Verify.Xunit" Version="21.3.0" />
5757
</ItemGroup>
5858

5959
<ItemGroup Condition="'$(IsTestProject)' != 'true'">

src/ReactiveUI.AndroidX/ReactiveUI.AndroidX.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616
</ItemGroup>
1717

1818
<ItemGroup>
19-
<PackageReference Include="Xamarin.AndroidX.Core" Version="1.10.1.1" />
20-
<PackageReference Include="Xamarin.AndroidX.Preference" Version="1.2.0.6" />
21-
<PackageReference Include="Xamarin.AndroidX.Legacy.Support.Core.UI" Version="1.0.0.19" />
22-
<PackageReference Include="Xamarin.Google.Android.Material" Version="1.9.0.1" />
23-
<PackageReference Include="Xamarin.AndroidX.Lifecycle.LiveData" Version="2.6.1.2" />
19+
<PackageReference Include="Xamarin.AndroidX.Core" Version="1.12.0.1" />
20+
<PackageReference Include="Xamarin.AndroidX.Preference" Version="1.2.1.1" />
21+
<PackageReference Include="Xamarin.AndroidX.Legacy.Support.Core.UI" Version="1.0.0.21" />
22+
<PackageReference Include="Xamarin.Google.Android.Material" Version="1.9.0.3" />
23+
<PackageReference Include="Xamarin.AndroidX.Lifecycle.LiveData" Version="2.6.2.1" />
2424
<PackageReference Include="System.Runtime.Serialization.Primitives" Version="4.3.0" />
2525
<Reference Include="System.Runtime.Serialization" />
2626
</ItemGroup>

src/ReactiveUI.Blazor/ReactiveUI.Blazor.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="MSBuild.Sdk.Extras">
1+
<Project Sdk="MSBuild.Sdk.Extras">
22
<PropertyGroup>
33
<TargetFrameworks>netstandard2.0;net6.0;net7.0</TargetFrameworks>
44
<PackageDescription>Contains the ReactiveUI platform specific extensions for Blazor</PackageDescription>
@@ -15,11 +15,11 @@
1515
</ItemGroup>
1616

1717
<ItemGroup Condition=" $(TargetFramework.StartsWith('net6')) ">
18-
<PackageReference Include="Microsoft.AspNetCore.Components" Version="6.0.19" />
18+
<PackageReference Include="Microsoft.AspNetCore.Components" Version="6.0.22" />
1919
</ItemGroup>
2020

2121
<ItemGroup Condition=" $(TargetFramework.StartsWith('net7')) ">
22-
<PackageReference Include="Microsoft.AspNetCore.Components" Version="7.0.9" />
22+
<PackageReference Include="Microsoft.AspNetCore.Components" Version="7.0.11" />
2323
</ItemGroup>
2424

2525
<ItemGroup>

src/ReactiveUI.Drawing/ReactiveUI.Drawing.csproj

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,13 @@
66
<RootNamespace>ReactiveUI.Drawing</RootNamespace>
77
<PackageDescription>A extension to the ReactiveUI platform that provides Splat bitmap operation support.</PackageDescription>
88
<PackageId>ReactiveUI.Drawing</PackageId>
9-
</PropertyGroup>
9+
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">14.2</SupportedOSPlatformVersion>
10+
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">14.0</SupportedOSPlatformVersion>
11+
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">21.0</SupportedOSPlatformVersion>
12+
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</SupportedOSPlatformVersion>
13+
<TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</TargetPlatformMinVersion>
14+
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'">6.5</SupportedOSPlatformVersion>
15+
</PropertyGroup>
1016

1117
<ItemGroup Condition=" $(TargetFramework.StartsWith('MonoAndroid')) ">
1218
<!-- Hack to get around invalid version of Java.Interop -->

src/ReactiveUI.Fody.Analyzer.Test/ReactiveUI.Fody.Analyzer.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>net462;net6.0</TargetFrameworks>
3+
<TargetFrameworks>net472;net6.0</TargetFrameworks>
44
<IsPackable>false</IsPackable>
55
</PropertyGroup>
66
<ItemGroup>

src/ReactiveUI.Fody.Tests/ApiApprovalBase.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,11 @@
1919
/// Tests for API approvals.
2020
/// </summary>
2121
[ExcludeFromCodeCoverage]
22+
#pragma warning disable CA1050 // Declare types in namespaces
23+
#pragma warning disable RCS1110 // Declare type inside namespace.
2224
public abstract class ApiApprovalBase
25+
#pragma warning restore RCS1110 // Declare type inside namespace.
26+
#pragma warning restore CA1050 // Declare types in namespaces
2327
{
2428
/// <summary>
2529
/// Checks the assembly to detect the public API. Generates a received/approved version of the API.

src/ReactiveUI.Fody.Tests/ReactiveUI.Fody.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<Project Sdk="MSBuild.Sdk.Extras">
1+
<Project Sdk="MSBuild.Sdk.Extras">
22
<PropertyGroup>
3-
<TargetFrameworks>net462;net6.0</TargetFrameworks>
3+
<TargetFrameworks>net472;net6.0</TargetFrameworks>
44
<FodyTargetFramework>netstandard2.0</FodyTargetFramework>
55
<IsPackable>false</IsPackable>
66
</PropertyGroup>

src/ReactiveUI.LeakTests/ReactiveUI.LeakTests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<Project Sdk="MSBuild.Sdk.Extras">
1+
<Project Sdk="MSBuild.Sdk.Extras">
22
<PropertyGroup>
3-
<TargetFrameworks>net462;net6.0</TargetFrameworks>
3+
<TargetFrameworks>net472;net6.0</TargetFrameworks>
44
<IsPackable>false</IsPackable>
55
</PropertyGroup>
66
<ItemGroup>

src/ReactiveUI.Splat.Tests/ReactiveUI.Splat.Tests.csproj

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

33
<PropertyGroup>
4-
<TargetFrameworks>net462;net6.0</TargetFrameworks>
4+
<TargetFrameworks>net472;net6.0</TargetFrameworks>
55
<IsPackable>false</IsPackable>
66
</PropertyGroup>
77

src/ReactiveUI.Testing.Tests/ReactiveUI.Testing.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<Project Sdk="MSBuild.Sdk.Extras">
1+
<Project Sdk="MSBuild.Sdk.Extras">
22
<PropertyGroup>
3-
<TargetFrameworks>net462;net6.0</TargetFrameworks>
3+
<TargetFrameworks>net472;net6.0</TargetFrameworks>
44
<FodyTargetFramework>netstandard2.0</FodyTargetFramework>
55
<FodyTargetFramework Condition=" $(TargetFramework.StartsWith('net4')) ">$(TargetFramework)</FodyTargetFramework>
66
</PropertyGroup>

0 commit comments

Comments
 (0)