Peter Palotas
Peter Palotas
Added ConsoleLogger and FileLogger to MSBuildSettings, allowing fluent API specification of parameters for file loggers and the console logger when running MSBuild. Example: ``` MSBuild(s => s .SetTargetPath(Solution) .SetTargets("Rebuild") .SetConfiguration(Configuration)...
Similar to the logger used in DotNetTasks, this one parses the log strings to redirect them to the correct method in the Nuke Logger.
Added list of valid values to exception message when enum value conversion fails. Example: `Value 'verbosd' could not be converted to 'Verbosity?'. Accepted values are: Verbose, Normal, Minimal, Quiet` I...
`Logger` was deprecated some time ago, and it seems that the `Logger.LogLevel` property is always `LogLevel.Normal` now. This broke the formatting of exception messages for `ProcessException` so that they no...
MSBuild supports the parameters `-fileLogger` and `-fileLoggerParameters` to enable additional logging to a file. Would be nice to have these easily accessible in the `MSBuildSettings`. A suggested interface would be...
There are several methods from `System.IO` used in the tests that are not available in netstandard2.0. Mainly regarding access control. We should rewrite these tests so we can also run...
Eight tests are currently failing on the CI build. See [AppVeyor](https://ci.appveyor.com/project/alphaleonis/alphafs/builds/19477913/tests) for a list. Investigate the failures and fix them. It seems perhaps the behavior of System.IO has changed.
This is something that was introduced with #506 and #501. We need to inspect, investigate and fix these warnings.
_Issue by **[Yomodo](https://github.com/Yomodo)** from Thursday Jan 08, 2015 at 14:08 GMT_ _Originally opened as https://github.com/alphaleonis/AlphaFS/issues/33_ --- Windows Portable Device (WPD) seems a worthy addition to AlphaFS. There is already working...