├── .gitattributes ├── .gitignore ├── Build.ps1 ├── Commands ├── DisableLogFileCommand.cs ├── DisableOutputSubscriberCommand.cs ├── EnableLogFileCommand.cs ├── EnableOutputSubscriberCommand.cs ├── GetLogFileCommand.cs ├── GetOutputSubscriberCommand.cs ├── ResumeLoggingCommand.cs └── SuspendLoggingCommand.cs ├── HostIOInterceptor.cs ├── HostIOSubscriberBase.cs ├── IHostIOSubscriber.cs ├── LICENSE ├── LogFile.cs ├── Module └── PowerShellLogging │ ├── PowerShellLogging.psd1 │ ├── PowerShellLogging.psm1 │ └── en-US │ ├── PowerShellLoggingModule.dll-help.xml │ └── about_PowerShellLogging.help.txt ├── PowerShellLoggingModule.csproj ├── PowerShellLoggingModule.sln ├── README.md ├── ScriptBlockOutputSubscriber.cs ├── StreamType.cs ├── Test.ps1 └── Tests ├── Invoke.Tests.ps1 ├── ParallelRemote.Tests.ps1 ├── ParallelRunspace.Tests.ps1 ├── Remote.Tests.ps1 ├── Runspace.Tests.ps1 └── Simple.Tests.ps1 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlwyatt/PowerShellLoggingModule/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlwyatt/PowerShellLoggingModule/HEAD/.gitignore -------------------------------------------------------------------------------- /Build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlwyatt/PowerShellLoggingModule/HEAD/Build.ps1 -------------------------------------------------------------------------------- /Commands/DisableLogFileCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlwyatt/PowerShellLoggingModule/HEAD/Commands/DisableLogFileCommand.cs -------------------------------------------------------------------------------- /Commands/DisableOutputSubscriberCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlwyatt/PowerShellLoggingModule/HEAD/Commands/DisableOutputSubscriberCommand.cs -------------------------------------------------------------------------------- /Commands/EnableLogFileCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlwyatt/PowerShellLoggingModule/HEAD/Commands/EnableLogFileCommand.cs -------------------------------------------------------------------------------- /Commands/EnableOutputSubscriberCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlwyatt/PowerShellLoggingModule/HEAD/Commands/EnableOutputSubscriberCommand.cs -------------------------------------------------------------------------------- /Commands/GetLogFileCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlwyatt/PowerShellLoggingModule/HEAD/Commands/GetLogFileCommand.cs -------------------------------------------------------------------------------- /Commands/GetOutputSubscriberCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlwyatt/PowerShellLoggingModule/HEAD/Commands/GetOutputSubscriberCommand.cs -------------------------------------------------------------------------------- /Commands/ResumeLoggingCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlwyatt/PowerShellLoggingModule/HEAD/Commands/ResumeLoggingCommand.cs -------------------------------------------------------------------------------- /Commands/SuspendLoggingCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlwyatt/PowerShellLoggingModule/HEAD/Commands/SuspendLoggingCommand.cs -------------------------------------------------------------------------------- /HostIOInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlwyatt/PowerShellLoggingModule/HEAD/HostIOInterceptor.cs -------------------------------------------------------------------------------- /HostIOSubscriberBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlwyatt/PowerShellLoggingModule/HEAD/HostIOSubscriberBase.cs -------------------------------------------------------------------------------- /IHostIOSubscriber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlwyatt/PowerShellLoggingModule/HEAD/IHostIOSubscriber.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlwyatt/PowerShellLoggingModule/HEAD/LICENSE -------------------------------------------------------------------------------- /LogFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlwyatt/PowerShellLoggingModule/HEAD/LogFile.cs -------------------------------------------------------------------------------- /Module/PowerShellLogging/PowerShellLogging.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlwyatt/PowerShellLoggingModule/HEAD/Module/PowerShellLogging/PowerShellLogging.psd1 -------------------------------------------------------------------------------- /Module/PowerShellLogging/PowerShellLogging.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlwyatt/PowerShellLoggingModule/HEAD/Module/PowerShellLogging/PowerShellLogging.psm1 -------------------------------------------------------------------------------- /Module/PowerShellLogging/en-US/PowerShellLoggingModule.dll-help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlwyatt/PowerShellLoggingModule/HEAD/Module/PowerShellLogging/en-US/PowerShellLoggingModule.dll-help.xml -------------------------------------------------------------------------------- /Module/PowerShellLogging/en-US/about_PowerShellLogging.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlwyatt/PowerShellLoggingModule/HEAD/Module/PowerShellLogging/en-US/about_PowerShellLogging.help.txt -------------------------------------------------------------------------------- /PowerShellLoggingModule.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlwyatt/PowerShellLoggingModule/HEAD/PowerShellLoggingModule.csproj -------------------------------------------------------------------------------- /PowerShellLoggingModule.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlwyatt/PowerShellLoggingModule/HEAD/PowerShellLoggingModule.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlwyatt/PowerShellLoggingModule/HEAD/README.md -------------------------------------------------------------------------------- /ScriptBlockOutputSubscriber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlwyatt/PowerShellLoggingModule/HEAD/ScriptBlockOutputSubscriber.cs -------------------------------------------------------------------------------- /StreamType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlwyatt/PowerShellLoggingModule/HEAD/StreamType.cs -------------------------------------------------------------------------------- /Test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlwyatt/PowerShellLoggingModule/HEAD/Test.ps1 -------------------------------------------------------------------------------- /Tests/Invoke.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlwyatt/PowerShellLoggingModule/HEAD/Tests/Invoke.Tests.ps1 -------------------------------------------------------------------------------- /Tests/ParallelRemote.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlwyatt/PowerShellLoggingModule/HEAD/Tests/ParallelRemote.Tests.ps1 -------------------------------------------------------------------------------- /Tests/ParallelRunspace.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlwyatt/PowerShellLoggingModule/HEAD/Tests/ParallelRunspace.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Remote.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlwyatt/PowerShellLoggingModule/HEAD/Tests/Remote.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Runspace.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlwyatt/PowerShellLoggingModule/HEAD/Tests/Runspace.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Simple.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlwyatt/PowerShellLoggingModule/HEAD/Tests/Simple.Tests.ps1 --------------------------------------------------------------------------------