Skip to content

Commit

Permalink
Fixes to build as RX starts to be moved around
Browse files Browse the repository at this point in the history
  • Loading branch information
aritchie committed Jan 21, 2025
1 parent 60cdf62 commit 68dddb3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 20 deletions.
6 changes: 3 additions & 3 deletions src/Directory.build.props
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,14 @@
</PropertyGroup>

<PropertyGroup Condition="$(TargetFramework.Contains('-ios'))">
<SupportedOSPlatformVersion>14.0</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion>15.0</SupportedOSPlatformVersion>
<IsIosBuild>true</IsIosBuild>
<DefineConstants>$(DefineConstants);APPLE;PLATFORM</DefineConstants>
</PropertyGroup>

<PropertyGroup Condition="$(TargetFramework.Contains('maccatalyst'))">
<SupportedOSPlatformVersion>14.0</SupportedOSPlatformVersion>
<TargetPlatformMinVersion>14.0</TargetPlatformMinVersion>
<SupportedOSPlatformVersion>15.0</SupportedOSPlatformVersion>
<TargetPlatformMinVersion>15.0</TargetPlatformMinVersion>
<IsIosBuild>true</IsIosBuild>
<DefineConstants>$(DefineConstants);APPLE;PLATFORM</DefineConstants>
</PropertyGroup>
Expand Down
17 changes: 0 additions & 17 deletions src/Shiny.Core/ObservableList.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,23 +24,6 @@ public interface INotifyCollectionChanged<T> : INotifyCollectionChanged, IList<T
// https://github.com/jamesmontemagno/mvvm-helpers/blob/master/MvvmHelpers/ObservableRangeCollection.cs
public class ObservableList<T>(IEnumerable<T> collection = null) : ObservableCollection<T>, INotifyCollectionChanged<T>
{
/// <summary>
/// Initializes a new instance of the System.Collections.ObjectModel.ObservableCollection(Of T) class.
/// </summary>
public ObservableList() : base()
{
}

/// <summary>
/// Initializes a new instance of the System.Collections.ObjectModel.ObservableCollection(Of T) class that contains elements copied from the specified collection.
/// </summary>
/// <param name="collection">collection: The collection from which the elements are copied.</param>
/// <exception cref="System.ArgumentNullException">The collection parameter cannot be null.</exception>
public ObservableList: base(collection)
{
}


/// <summary>
/// Adds the elements of the specified collection to the end of the ObservableCollection(Of T).
/// </summary>
Expand Down

0 comments on commit 68dddb3

Please sign in to comment.