From f4f727cf413c5ea7a704cdd4cd9b4a3371105fa8 Mon Sep 17 00:00:00 2001 From: Ian Griffiths Date: Wed, 31 May 2023 10:17:06 +0100 Subject: [PATCH] Add experimental netstandard2.0 target to AsyncRx.NET (#1955) --- AsyncRx.NET/ApiCompare/ApiCompare.csproj | 4 ---- .../Linq/Operators/CombineLatest.Generated.tt | 4 ++-- .../System.Reactive.Async/Linq/Operators/Zip.Generated.tt | 4 ++-- .../System.Reactive.Async/System.Reactive.Async.csproj | 5 +++-- 4 files changed, 7 insertions(+), 10 deletions(-) diff --git a/AsyncRx.NET/ApiCompare/ApiCompare.csproj b/AsyncRx.NET/ApiCompare/ApiCompare.csproj index 4496ab2833..8f7fdf81b1 100644 --- a/AsyncRx.NET/ApiCompare/ApiCompare.csproj +++ b/AsyncRx.NET/ApiCompare/ApiCompare.csproj @@ -9,10 +9,6 @@ net6.0 - - - - diff --git a/AsyncRx.NET/System.Reactive.Async/Linq/Operators/CombineLatest.Generated.tt b/AsyncRx.NET/System.Reactive.Async/Linq/Operators/CombineLatest.Generated.tt index 8e0d08dafe..5e42119a4b 100644 --- a/AsyncRx.NET/System.Reactive.Async/Linq/Operators/CombineLatest.Generated.tt +++ b/AsyncRx.NET/System.Reactive.Async/Linq/Operators/CombineLatest.Generated.tt @@ -161,7 +161,7 @@ for (var j = 1; j <= i; j++) } #> - var gate = new AsyncLock(); + var gate = new AsyncGate(); return ( @@ -248,7 +248,7 @@ for (var j = 1; j <= i; j++) } #> - var gate = new AsyncLock(); + var gate = new AsyncGate(); return ( diff --git a/AsyncRx.NET/System.Reactive.Async/Linq/Operators/Zip.Generated.tt b/AsyncRx.NET/System.Reactive.Async/Linq/Operators/Zip.Generated.tt index 597f76df48..f21866efc4 100644 --- a/AsyncRx.NET/System.Reactive.Async/Linq/Operators/Zip.Generated.tt +++ b/AsyncRx.NET/System.Reactive.Async/Linq/Operators/Zip.Generated.tt @@ -152,7 +152,7 @@ for (var i = 2; i <= 15; i++) if (observer == null) throw new ArgumentNullException(nameof(observer)); - var gate = new AsyncLock(); + var gate = new AsyncGate(); <# for (var j = 1; j <= i; j++) @@ -258,7 +258,7 @@ for (var j = 1; j <= i; j++) if (selector == null) throw new ArgumentNullException(nameof(selector)); - var gate = new AsyncLock(); + var gate = new AsyncGate(); <# for (var j = 1; j <= i; j++) diff --git a/AsyncRx.NET/System.Reactive.Async/System.Reactive.Async.csproj b/AsyncRx.NET/System.Reactive.Async/System.Reactive.Async.csproj index e2a108c32d..191afa3189 100644 --- a/AsyncRx.NET/System.Reactive.Async/System.Reactive.Async.csproj +++ b/AsyncRx.NET/System.Reactive.Async/System.Reactive.Async.csproj @@ -1,13 +1,14 @@  - netstandard2.1 + netstandard2.0;netstandard2.1 System.Reactive - + +