├── .gitignore ├── LICENSE ├── Properties └── AssemblyInfo.cs ├── StreamExtensions.cs ├── System.Collections.Concurrent.Partitioners ├── EnumerablePartitioner.cs ├── ListPartitioner.cs └── UserRangePartitioner.cs ├── System.Collections.Concurrent ├── BlockingCollection.cs ├── ConcurrentBag.cs ├── ConcurrentDictionary.cs ├── ConcurrentOrderedList.cs ├── ConcurrentQueue.cs ├── ConcurrentStack.cs ├── IProducerConsumerCollection.cs ├── OrderablePartitioner.cs ├── Partitioner.cs └── SplitOrderedList.cs ├── System.Collections.Generic ├── CollectionDebuggerView.cs ├── DefaultEqualityComparer.cs └── GenericEqualityComparer.cs ├── System.Collections ├── IStructuralComparable.cs └── IStructuralEquatable.cs ├── System.Runtime.CompilerServices ├── AsyncStateMachineAttribute.cs ├── AsyncTaskMethodBuilder.cs ├── AsyncTaskMethodBuilder_T.cs ├── AsyncVoidMethodBuilder.cs ├── ConfiguredTaskAwaitable.cs ├── ConfiguredTaskAwaitable_T.cs ├── IAsyncStateMachine.cs ├── ICriticalNotifyCompletion.cs ├── INotifyCompletion.cs ├── StateMachineAttribute.cs ├── TaskAwaiter.cs ├── TaskAwaiter_T.cs └── YieldAwaitable.cs ├── System.Runtime.ExceptionServices └── ExceptionDispatchInfo.cs ├── System.Runtime.Remoting.Messaging └── AsyncResult.cs ├── System.Threading.Tasks.Net35.csproj ├── System.Threading.Tasks.Unity.csproj ├── System.Threading.Tasks ├── CyclicDeque.cs ├── IConcurrentDeque.cs ├── PopResult.cs ├── SynchronizationContextScheduler.cs ├── Task.cs ├── TaskActionInvoker.cs ├── TaskCanceledException.cs ├── TaskCompletionQueue.cs ├── TaskCompletionSource.cs ├── TaskConstants.cs ├── TaskConstants_T.cs ├── TaskContinuation.cs ├── TaskContinuationOptions.cs ├── TaskCreationOptions.cs ├── TaskDebuggerView.cs ├── TaskExceptionSlot.cs ├── TaskExtensions.cs ├── TaskExtensionsImpl.cs ├── TaskFactory.cs ├── TaskFactory_T.cs ├── TaskScheduler.cs ├── TaskSchedulerException.cs ├── TaskStatus.cs ├── Task_T.cs ├── TpScheduler.cs └── UnobservedTaskExceptionEventArgs.cs ├── System.Threading ├── AtomicBoolean.cs ├── CancellationToken.cs ├── CancellationTokenRegistration.cs ├── CancellationTokenSource.cs ├── CountdownEvent.cs ├── ManualResetEventSlim.cs ├── SpinWait.cs └── Watch.cs ├── System ├── AggregateException.cs ├── Funcs.cs ├── Lazy.cs ├── LazyThreadSafetyMode.cs ├── LocalDataStoreSlot.cs ├── OperationCanceledException.cs ├── Tuple.cs └── Tuples.cs └── UnityExt.cs /.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/LICENSE -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/StreamExtensions.cs -------------------------------------------------------------------------------- /System.Collections.Concurrent.Partitioners/EnumerablePartitioner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Collections.Concurrent.Partitioners/EnumerablePartitioner.cs -------------------------------------------------------------------------------- /System.Collections.Concurrent.Partitioners/ListPartitioner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Collections.Concurrent.Partitioners/ListPartitioner.cs -------------------------------------------------------------------------------- /System.Collections.Concurrent.Partitioners/UserRangePartitioner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Collections.Concurrent.Partitioners/UserRangePartitioner.cs -------------------------------------------------------------------------------- /System.Collections.Concurrent/BlockingCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Collections.Concurrent/BlockingCollection.cs -------------------------------------------------------------------------------- /System.Collections.Concurrent/ConcurrentBag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Collections.Concurrent/ConcurrentBag.cs -------------------------------------------------------------------------------- /System.Collections.Concurrent/ConcurrentDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Collections.Concurrent/ConcurrentDictionary.cs -------------------------------------------------------------------------------- /System.Collections.Concurrent/ConcurrentOrderedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Collections.Concurrent/ConcurrentOrderedList.cs -------------------------------------------------------------------------------- /System.Collections.Concurrent/ConcurrentQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Collections.Concurrent/ConcurrentQueue.cs -------------------------------------------------------------------------------- /System.Collections.Concurrent/ConcurrentStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Collections.Concurrent/ConcurrentStack.cs -------------------------------------------------------------------------------- /System.Collections.Concurrent/IProducerConsumerCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Collections.Concurrent/IProducerConsumerCollection.cs -------------------------------------------------------------------------------- /System.Collections.Concurrent/OrderablePartitioner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Collections.Concurrent/OrderablePartitioner.cs -------------------------------------------------------------------------------- /System.Collections.Concurrent/Partitioner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Collections.Concurrent/Partitioner.cs -------------------------------------------------------------------------------- /System.Collections.Concurrent/SplitOrderedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Collections.Concurrent/SplitOrderedList.cs -------------------------------------------------------------------------------- /System.Collections.Generic/CollectionDebuggerView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Collections.Generic/CollectionDebuggerView.cs -------------------------------------------------------------------------------- /System.Collections.Generic/DefaultEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Collections.Generic/DefaultEqualityComparer.cs -------------------------------------------------------------------------------- /System.Collections.Generic/GenericEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Collections.Generic/GenericEqualityComparer.cs -------------------------------------------------------------------------------- /System.Collections/IStructuralComparable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Collections/IStructuralComparable.cs -------------------------------------------------------------------------------- /System.Collections/IStructuralEquatable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Collections/IStructuralEquatable.cs -------------------------------------------------------------------------------- /System.Runtime.CompilerServices/AsyncStateMachineAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Runtime.CompilerServices/AsyncStateMachineAttribute.cs -------------------------------------------------------------------------------- /System.Runtime.CompilerServices/AsyncTaskMethodBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Runtime.CompilerServices/AsyncTaskMethodBuilder.cs -------------------------------------------------------------------------------- /System.Runtime.CompilerServices/AsyncTaskMethodBuilder_T.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Runtime.CompilerServices/AsyncTaskMethodBuilder_T.cs -------------------------------------------------------------------------------- /System.Runtime.CompilerServices/AsyncVoidMethodBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Runtime.CompilerServices/AsyncVoidMethodBuilder.cs -------------------------------------------------------------------------------- /System.Runtime.CompilerServices/ConfiguredTaskAwaitable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Runtime.CompilerServices/ConfiguredTaskAwaitable.cs -------------------------------------------------------------------------------- /System.Runtime.CompilerServices/ConfiguredTaskAwaitable_T.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Runtime.CompilerServices/ConfiguredTaskAwaitable_T.cs -------------------------------------------------------------------------------- /System.Runtime.CompilerServices/IAsyncStateMachine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Runtime.CompilerServices/IAsyncStateMachine.cs -------------------------------------------------------------------------------- /System.Runtime.CompilerServices/ICriticalNotifyCompletion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Runtime.CompilerServices/ICriticalNotifyCompletion.cs -------------------------------------------------------------------------------- /System.Runtime.CompilerServices/INotifyCompletion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Runtime.CompilerServices/INotifyCompletion.cs -------------------------------------------------------------------------------- /System.Runtime.CompilerServices/StateMachineAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Runtime.CompilerServices/StateMachineAttribute.cs -------------------------------------------------------------------------------- /System.Runtime.CompilerServices/TaskAwaiter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Runtime.CompilerServices/TaskAwaiter.cs -------------------------------------------------------------------------------- /System.Runtime.CompilerServices/TaskAwaiter_T.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Runtime.CompilerServices/TaskAwaiter_T.cs -------------------------------------------------------------------------------- /System.Runtime.CompilerServices/YieldAwaitable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Runtime.CompilerServices/YieldAwaitable.cs -------------------------------------------------------------------------------- /System.Runtime.ExceptionServices/ExceptionDispatchInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Runtime.ExceptionServices/ExceptionDispatchInfo.cs -------------------------------------------------------------------------------- /System.Runtime.Remoting.Messaging/AsyncResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Runtime.Remoting.Messaging/AsyncResult.cs -------------------------------------------------------------------------------- /System.Threading.Tasks.Net35.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Threading.Tasks.Net35.csproj -------------------------------------------------------------------------------- /System.Threading.Tasks.Unity.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Threading.Tasks.Unity.csproj -------------------------------------------------------------------------------- /System.Threading.Tasks/CyclicDeque.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Threading.Tasks/CyclicDeque.cs -------------------------------------------------------------------------------- /System.Threading.Tasks/IConcurrentDeque.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Threading.Tasks/IConcurrentDeque.cs -------------------------------------------------------------------------------- /System.Threading.Tasks/PopResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Threading.Tasks/PopResult.cs -------------------------------------------------------------------------------- /System.Threading.Tasks/SynchronizationContextScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Threading.Tasks/SynchronizationContextScheduler.cs -------------------------------------------------------------------------------- /System.Threading.Tasks/Task.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Threading.Tasks/Task.cs -------------------------------------------------------------------------------- /System.Threading.Tasks/TaskActionInvoker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Threading.Tasks/TaskActionInvoker.cs -------------------------------------------------------------------------------- /System.Threading.Tasks/TaskCanceledException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Threading.Tasks/TaskCanceledException.cs -------------------------------------------------------------------------------- /System.Threading.Tasks/TaskCompletionQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Threading.Tasks/TaskCompletionQueue.cs -------------------------------------------------------------------------------- /System.Threading.Tasks/TaskCompletionSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Threading.Tasks/TaskCompletionSource.cs -------------------------------------------------------------------------------- /System.Threading.Tasks/TaskConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Threading.Tasks/TaskConstants.cs -------------------------------------------------------------------------------- /System.Threading.Tasks/TaskConstants_T.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Threading.Tasks/TaskConstants_T.cs -------------------------------------------------------------------------------- /System.Threading.Tasks/TaskContinuation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Threading.Tasks/TaskContinuation.cs -------------------------------------------------------------------------------- /System.Threading.Tasks/TaskContinuationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Threading.Tasks/TaskContinuationOptions.cs -------------------------------------------------------------------------------- /System.Threading.Tasks/TaskCreationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Threading.Tasks/TaskCreationOptions.cs -------------------------------------------------------------------------------- /System.Threading.Tasks/TaskDebuggerView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Threading.Tasks/TaskDebuggerView.cs -------------------------------------------------------------------------------- /System.Threading.Tasks/TaskExceptionSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Threading.Tasks/TaskExceptionSlot.cs -------------------------------------------------------------------------------- /System.Threading.Tasks/TaskExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Threading.Tasks/TaskExtensions.cs -------------------------------------------------------------------------------- /System.Threading.Tasks/TaskExtensionsImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Threading.Tasks/TaskExtensionsImpl.cs -------------------------------------------------------------------------------- /System.Threading.Tasks/TaskFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Threading.Tasks/TaskFactory.cs -------------------------------------------------------------------------------- /System.Threading.Tasks/TaskFactory_T.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Threading.Tasks/TaskFactory_T.cs -------------------------------------------------------------------------------- /System.Threading.Tasks/TaskScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Threading.Tasks/TaskScheduler.cs -------------------------------------------------------------------------------- /System.Threading.Tasks/TaskSchedulerException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Threading.Tasks/TaskSchedulerException.cs -------------------------------------------------------------------------------- /System.Threading.Tasks/TaskStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Threading.Tasks/TaskStatus.cs -------------------------------------------------------------------------------- /System.Threading.Tasks/Task_T.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Threading.Tasks/Task_T.cs -------------------------------------------------------------------------------- /System.Threading.Tasks/TpScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Threading.Tasks/TpScheduler.cs -------------------------------------------------------------------------------- /System.Threading.Tasks/UnobservedTaskExceptionEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Threading.Tasks/UnobservedTaskExceptionEventArgs.cs -------------------------------------------------------------------------------- /System.Threading/AtomicBoolean.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Threading/AtomicBoolean.cs -------------------------------------------------------------------------------- /System.Threading/CancellationToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Threading/CancellationToken.cs -------------------------------------------------------------------------------- /System.Threading/CancellationTokenRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Threading/CancellationTokenRegistration.cs -------------------------------------------------------------------------------- /System.Threading/CancellationTokenSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Threading/CancellationTokenSource.cs -------------------------------------------------------------------------------- /System.Threading/CountdownEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Threading/CountdownEvent.cs -------------------------------------------------------------------------------- /System.Threading/ManualResetEventSlim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Threading/ManualResetEventSlim.cs -------------------------------------------------------------------------------- /System.Threading/SpinWait.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Threading/SpinWait.cs -------------------------------------------------------------------------------- /System.Threading/Watch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System.Threading/Watch.cs -------------------------------------------------------------------------------- /System/AggregateException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System/AggregateException.cs -------------------------------------------------------------------------------- /System/Funcs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System/Funcs.cs -------------------------------------------------------------------------------- /System/Lazy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System/Lazy.cs -------------------------------------------------------------------------------- /System/LazyThreadSafetyMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System/LazyThreadSafetyMode.cs -------------------------------------------------------------------------------- /System/LocalDataStoreSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System/LocalDataStoreSlot.cs -------------------------------------------------------------------------------- /System/OperationCanceledException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System/OperationCanceledException.cs -------------------------------------------------------------------------------- /System/Tuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System/Tuple.cs -------------------------------------------------------------------------------- /System/Tuples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/System/Tuples.cs -------------------------------------------------------------------------------- /UnityExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbasedeps/dotnet-tpl35/HEAD/UnityExt.cs --------------------------------------------------------------------------------