AvalonLog 0.4.0
See the version list below for details.
dotnet add package AvalonLog --version 0.4.0
NuGet\Install-Package AvalonLog -Version 0.4.0
<PackageReference Include="AvalonLog" Version="0.4.0" />
paket add AvalonLog --version 0.4.0
#r "nuget: AvalonLog, 0.4.0"
// Install AvalonLog as a Cake Addin #addin nuget:?package=AvalonLog&version=0.4.0 // Install AvalonLog as a Cake Tool #tool nuget:?package=AvalonLog&version=0.4.0
AvalonLog
Avalonlog is a fast and threadsave WPF text log viewer for colored text. Including F# printf formating . Based on AvalonEditB. Works on .NET Framework 4.7.2 and .NET 5.0
Usage
Here an short example for F# interactive in .NET Framework. (for net5.0 you would have to use it in a project)
#r "PresentationCore"
#r "PresentationFramework"
#r "WindowsBase"
#r "nuget: AvalonLog"
open System.Windows
let log = new AvalonLog.AvalonLog() // The main class wraping an Avalonedit TextEditor as append only log.
// create some printing functions by partial application:
let red = log.printfColor 255 0 0 // without newline
let blue = log.printfnColor 0 0 255 // with newline
let green = log.printfnColor 0 155 0 // with newline
// print to log using F# printf formating
red "Hello, "
blue "World!"
red "The answer"
green " is %d." (40 + 2)
Application().Run(Window(Content=log)) // show WPF window
this will produce
For C# there is
public void AppendWithBrush(SolidColorBrush br, string s)
and similar functions on the AvalonLog
instance.
Documentation
See extracted API at <a href="https://www.fuget.org/packages/AvalonLog/0.4.0/lib/net472/AvalonLog.dll/AvalonLog" target="_blank">fuget.org</a>
Licence
MIT
Logo by LovePik
Changelog
0.3.1
- Update Xml Docstrings
0.4.0
- Update to AvalonEditB
1.2.0
- Rename
GetTextWriterIf
toGetConditionalTextWriter
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0-windows7.0 is compatible. net6.0-windows was computed. net7.0-windows was computed. net8.0-windows was computed. net9.0-windows was computed. |
.NET Framework | net472 is compatible. net48 was computed. net481 was computed. |
-
.NETFramework 4.7.2
- AvalonEditB (>= 1.2.0)
- FSharp.Core (>= 5.0.0)
-
net5.0-windows7.0
- AvalonEditB (>= 1.2.0)
- FSharp.Core (>= 5.0.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on AvalonLog:
Package | Downloads |
---|---|
Fesh
A hostable fsharp scripting editor for Windows based on Avalonedit |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated | |
---|---|---|---|
0.18.0 | 83 | 2/15/2025 | |
0.17.0 | 721 | 11/18/2024 | |
0.16.0 | 162 | 11/6/2024 | |
0.15.8 | 113 | 11/3/2024 | |
0.15.0 | 100 | 11/3/2024 | |
0.14.0 | 170 | 9/11/2024 | |
0.13.0 | 129 | 6/10/2024 | |
0.12.0 | 353 | 10/29/2023 | |
0.11.0 | 171 | 9/10/2023 | |
0.10.0 | 200 | 7/27/2023 | |
0.9.3 | 182 | 5/29/2023 | |
0.9.2 | 183 | 5/29/2023 | |
0.9.1 | 197 | 4/29/2023 | |
0.9.0 | 206 | 4/23/2023 | |
0.8.3 | 340 | 1/8/2023 | |
0.8.2 | 326 | 12/17/2022 | |
0.8.1 | 346 | 12/17/2022 | |
0.7.1 | 466 | 8/6/2022 | |
0.7.0 | 458 | 3/26/2022 | |
0.6.0 | 10,119 | 1/11/2022 | |
0.5.0 | 309 | 12/11/2021 | |
0.4.0 | 345 | 10/19/2021 | |
0.3.1 | 354 | 9/27/2021 | |
0.3.0 | 367 | 8/23/2021 | |
0.2.0 | 348 | 8/22/2021 | |
0.1.0 | 397 | 8/21/2021 |
- Update to AvalonEditB 1.2.0
- Rename GetTextWriterIf to GetConditionalTextWriter