Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion eng/Packages.Data.props
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@
<PackageReference Update="System.ValueTuple" Version="4.5.0" />
<PackageReference Update="Microsoft.Bcl.AsyncInterfaces" Version="1.0.0" />
<PackageReference Update="Microsoft.CSharp" Version="4.5.0" />
<PackageReference Update="System.Collections.Immutable" Version="1.3.1" />

<!-- Azure SDK packages -->
<PackageReference Update="Azure.Core" Version="1.13.0" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Linq;

namespace Azure.ResourceManager.Core
Expand Down Expand Up @@ -32,7 +31,7 @@ internal WrappingPage(Page<TModel> wrapped, Func<TModel, TOperations> converter)
}

/// <inheritdoc/>
public override IReadOnlyList<TOperations> Values => _wrapped.Values.Select(_converter).ToImmutableList();
public override IReadOnlyList<TOperations> Values => _wrapped.Values.Select(_converter).ToList();

/// <inheritdoc/>
public override string ContinuationToken => _wrapped.ContinuationToken;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="System.Collections.Immutable" />
<PackageReference Include="Azure.ResourceManager.Resources" />
</ItemGroup>

Expand Down