├── .gitattributes ├── .gitignore ├── Power Threading License.docx ├── Power Threading Overview.docx ├── PowerThreading-CompactFx ├── PowerThreading-CompactFx.csproj └── Properties │ └── AssemblyInfo.cs ├── PowerThreading-Desktop ├── CustomDictionary.xml ├── GlobalSuppressions.cs ├── PowerThreading-Desktop.csproj ├── PowerThreading.FxCop ├── Properties │ └── AssemblyInfo.cs ├── Wintellect.CmdArgParser │ ├── CmdArgAttribute.cs │ ├── CmdArgExceptionArgTypes.cs │ └── CmdArgParser.cs ├── Wintellect.IO │ ├── DeviceIO.cs │ └── StreamExtensions.cs ├── Wintellect.Threading │ ├── ArbitraryWaitHandle.cs │ ├── AsyncProgModel │ │ ├── ApmWrap.cs │ │ ├── AsyncEnumerator.cs │ │ ├── AsyncResult.cs │ │ ├── CountdownTimer.cs │ │ ├── EventApm.cs │ │ ├── SyncContextAsyncCallback.cs │ │ └── SyncGate.cs │ ├── InterlockedEx.cs │ ├── LogicalProcessor │ │ ├── LogicalProcessor.cs │ │ └── NumaInformation.cs │ ├── NativeMethods.cs │ ├── Progress.cs │ ├── ReaderWriterGate │ │ └── ReaderWriterGate.cs │ ├── ResourceLocks │ │ ├── ConditionVariable.cs │ │ ├── Diagnostics │ │ │ ├── DeadlockDetector.cs │ │ │ ├── ExclusiveOwnerResourceLockModifier.cs │ │ │ ├── RecursionResourceLockModifier.cs │ │ │ ├── ResourceLockDelegator.cs │ │ │ ├── StatisticsGatheringResourceLockObserver.cs │ │ │ ├── ThreadSafeCheckerResourceLockObserver.cs │ │ │ ├── TimeoutNotifierResourceLockObserver.cs │ │ │ └── WaitChainTraversal.cs │ │ ├── ExclusiveSpinResourceLock.cs │ │ ├── MonitorResourceLock.cs │ │ ├── MutexResourceLock.cs │ │ ├── NullResourceLock.cs │ │ ├── OneManyResourceLock.cs │ │ ├── OneManySpinResourceLock.cs │ │ ├── OneResourceLock.cs │ │ ├── OptexResourceLock.cs │ │ ├── ReaderWriterResourceLock.cs │ │ ├── ReaderWriterSlimResourceLock.cs │ │ ├── ResourceLock.cs │ │ ├── SemaphoreResourceLock.cs │ │ └── Win32SlimResourceLock.cs │ ├── SafeTokenHandle.cs │ ├── SyncContextEventRaiser.cs │ └── ThreadUtility.cs └── Wintellect │ ├── Contracts.cs │ ├── Disposer.cs │ ├── Exception.cs │ ├── Flags.cs │ ├── OperationTimer.cs │ ├── SafePinnedObject.cs │ └── Singleton.cs ├── PowerThreading-Silverlight ├── PowerThreading-Silverlight.csproj └── Properties │ └── AssemblyInfo.cs ├── PowerThreading-WindowsPhone ├── PowerThreading-WindowsPhone.csproj └── Properties │ └── AssemblyInfo.cs ├── PowerThreading.sln └── ReadMe.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/.gitignore -------------------------------------------------------------------------------- /Power Threading License.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/Power Threading License.docx -------------------------------------------------------------------------------- /Power Threading Overview.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/Power Threading Overview.docx -------------------------------------------------------------------------------- /PowerThreading-CompactFx/PowerThreading-CompactFx.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-CompactFx/PowerThreading-CompactFx.csproj -------------------------------------------------------------------------------- /PowerThreading-CompactFx/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-CompactFx/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/CustomDictionary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/CustomDictionary.xml -------------------------------------------------------------------------------- /PowerThreading-Desktop/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/GlobalSuppressions.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/PowerThreading-Desktop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/PowerThreading-Desktop.csproj -------------------------------------------------------------------------------- /PowerThreading-Desktop/PowerThreading.FxCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/PowerThreading.FxCop -------------------------------------------------------------------------------- /PowerThreading-Desktop/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect.CmdArgParser/CmdArgAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect.CmdArgParser/CmdArgAttribute.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect.CmdArgParser/CmdArgExceptionArgTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect.CmdArgParser/CmdArgExceptionArgTypes.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect.CmdArgParser/CmdArgParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect.CmdArgParser/CmdArgParser.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect.IO/DeviceIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect.IO/DeviceIO.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect.IO/StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect.IO/StreamExtensions.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect.Threading/ArbitraryWaitHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect.Threading/ArbitraryWaitHandle.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect.Threading/AsyncProgModel/ApmWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect.Threading/AsyncProgModel/ApmWrap.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect.Threading/AsyncProgModel/AsyncEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect.Threading/AsyncProgModel/AsyncEnumerator.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect.Threading/AsyncProgModel/AsyncResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect.Threading/AsyncProgModel/AsyncResult.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect.Threading/AsyncProgModel/CountdownTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect.Threading/AsyncProgModel/CountdownTimer.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect.Threading/AsyncProgModel/EventApm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect.Threading/AsyncProgModel/EventApm.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect.Threading/AsyncProgModel/SyncContextAsyncCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect.Threading/AsyncProgModel/SyncContextAsyncCallback.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect.Threading/AsyncProgModel/SyncGate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect.Threading/AsyncProgModel/SyncGate.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect.Threading/InterlockedEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect.Threading/InterlockedEx.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect.Threading/LogicalProcessor/LogicalProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect.Threading/LogicalProcessor/LogicalProcessor.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect.Threading/LogicalProcessor/NumaInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect.Threading/LogicalProcessor/NumaInformation.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect.Threading/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect.Threading/NativeMethods.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect.Threading/Progress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect.Threading/Progress.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect.Threading/ReaderWriterGate/ReaderWriterGate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect.Threading/ReaderWriterGate/ReaderWriterGate.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect.Threading/ResourceLocks/ConditionVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect.Threading/ResourceLocks/ConditionVariable.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect.Threading/ResourceLocks/Diagnostics/DeadlockDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect.Threading/ResourceLocks/Diagnostics/DeadlockDetector.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect.Threading/ResourceLocks/Diagnostics/ExclusiveOwnerResourceLockModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect.Threading/ResourceLocks/Diagnostics/ExclusiveOwnerResourceLockModifier.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect.Threading/ResourceLocks/Diagnostics/RecursionResourceLockModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect.Threading/ResourceLocks/Diagnostics/RecursionResourceLockModifier.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect.Threading/ResourceLocks/Diagnostics/ResourceLockDelegator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect.Threading/ResourceLocks/Diagnostics/ResourceLockDelegator.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect.Threading/ResourceLocks/Diagnostics/StatisticsGatheringResourceLockObserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect.Threading/ResourceLocks/Diagnostics/StatisticsGatheringResourceLockObserver.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect.Threading/ResourceLocks/Diagnostics/ThreadSafeCheckerResourceLockObserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect.Threading/ResourceLocks/Diagnostics/ThreadSafeCheckerResourceLockObserver.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect.Threading/ResourceLocks/Diagnostics/TimeoutNotifierResourceLockObserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect.Threading/ResourceLocks/Diagnostics/TimeoutNotifierResourceLockObserver.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect.Threading/ResourceLocks/Diagnostics/WaitChainTraversal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect.Threading/ResourceLocks/Diagnostics/WaitChainTraversal.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect.Threading/ResourceLocks/ExclusiveSpinResourceLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect.Threading/ResourceLocks/ExclusiveSpinResourceLock.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect.Threading/ResourceLocks/MonitorResourceLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect.Threading/ResourceLocks/MonitorResourceLock.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect.Threading/ResourceLocks/MutexResourceLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect.Threading/ResourceLocks/MutexResourceLock.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect.Threading/ResourceLocks/NullResourceLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect.Threading/ResourceLocks/NullResourceLock.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect.Threading/ResourceLocks/OneManyResourceLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect.Threading/ResourceLocks/OneManyResourceLock.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect.Threading/ResourceLocks/OneManySpinResourceLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect.Threading/ResourceLocks/OneManySpinResourceLock.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect.Threading/ResourceLocks/OneResourceLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect.Threading/ResourceLocks/OneResourceLock.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect.Threading/ResourceLocks/OptexResourceLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect.Threading/ResourceLocks/OptexResourceLock.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect.Threading/ResourceLocks/ReaderWriterResourceLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect.Threading/ResourceLocks/ReaderWriterResourceLock.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect.Threading/ResourceLocks/ReaderWriterSlimResourceLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect.Threading/ResourceLocks/ReaderWriterSlimResourceLock.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect.Threading/ResourceLocks/ResourceLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect.Threading/ResourceLocks/ResourceLock.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect.Threading/ResourceLocks/SemaphoreResourceLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect.Threading/ResourceLocks/SemaphoreResourceLock.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect.Threading/ResourceLocks/Win32SlimResourceLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect.Threading/ResourceLocks/Win32SlimResourceLock.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect.Threading/SafeTokenHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect.Threading/SafeTokenHandle.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect.Threading/SyncContextEventRaiser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect.Threading/SyncContextEventRaiser.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect.Threading/ThreadUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect.Threading/ThreadUtility.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect/Contracts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect/Contracts.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect/Disposer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect/Disposer.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect/Exception.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect/Exception.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect/Flags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect/Flags.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect/OperationTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect/OperationTimer.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect/SafePinnedObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect/SafePinnedObject.cs -------------------------------------------------------------------------------- /PowerThreading-Desktop/Wintellect/Singleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Desktop/Wintellect/Singleton.cs -------------------------------------------------------------------------------- /PowerThreading-Silverlight/PowerThreading-Silverlight.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Silverlight/PowerThreading-Silverlight.csproj -------------------------------------------------------------------------------- /PowerThreading-Silverlight/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-Silverlight/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PowerThreading-WindowsPhone/PowerThreading-WindowsPhone.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-WindowsPhone/PowerThreading-WindowsPhone.csproj -------------------------------------------------------------------------------- /PowerThreading-WindowsPhone/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading-WindowsPhone/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PowerThreading.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/PowerThreading.sln -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/PowerThreading/HEAD/ReadMe.md --------------------------------------------------------------------------------