-
-
Notifications
You must be signed in to change notification settings - Fork 182
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add ToSortedCollection() operator for ObservableCache and ObservableList #202
Conversation
@@ -10,6 +10,7 @@ | |||
|
|||
<ItemGroup> | |||
<PackageReference Include="System.Reactive" Version="4.0.0" /> | |||
<PackageReference Update="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-18618-05" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wouldn't this be picked up due to the fact it's in the Directory.Build.Props file earlier, so this is redundant?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The other issue is you're not doing PrivateAssets="all" so it will cause nuget users of this framework to have to inherit this nuget package.
@@ -11,6 +11,7 @@ | |||
<ItemGroup> | |||
<PackageReference Include="reactiveui" Version="9.0.1" /> | |||
<PackageReference Include="System.Reactive" Version="4.0.0" /> | |||
<PackageReference Update="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-18618-05" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same here, this should be picked up via Directory.Build.Props
|
||
<ItemGroup> | ||
<PackageReference Include="System.Reactive" Version="4.0.0" /> | ||
<PackageReference Update="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-18618-05" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In the ideal world you wouldn't have the sourcelink in the tests project anyway.
DynamicData/DynamicData.csproj
Outdated
@@ -7,6 +7,7 @@ | |||
|
|||
<ItemGroup> | |||
<PackageReference Include="System.Reactive" Version="4.0.0" /> | |||
<PackageReference Update="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-18618-05" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same here re: directory.build.props
@glennawatson I reverted the SourceLink update commit |
1fe9879
to
1ca74e7
Compare
The good old ToCollection() does not maintain order. When ToCollection() is called it operates off the values, not the sorted values and thus I see the need for an operator that respect the sorted values