AvalonEdit 5.0.3

There is a newer version of this package available.
See the version list below for details.
dotnet add package AvalonEdit --version 5.0.3
NuGet\Install-Package AvalonEdit -Version 5.0.3
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="AvalonEdit" Version="5.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AvalonEdit --version 5.0.3
#r "nuget: AvalonEdit, 5.0.3"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install AvalonEdit as a Cake Addin
#addin nuget:?package=AvalonEdit&version=5.0.3

// Install AvalonEdit as a Cake Tool
#tool nuget:?package=AvalonEdit&version=5.0.3

AvalonEdit is the WPF-based text editor used in SharpDevelop. There are two builds of AvalonEdit included in this package. One that targets .NET 4.0 and one that targets .NET 3.5.

Product Compatible and additional computed target framework versions.
.NET Framework net35 is compatible.  net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages (56)

Showing the top 5 NuGet packages that depend on AvalonEdit:

Package Downloads
ShowMeTheXAML.AvalonEdit

AvalonEdit style for the ShowMeTheXAML XamlDisplay control.

MdXaml

Markdown XAML processor

Gemini.Modules.CodeEditor

CodeEditor module for Gemini, providing a syntax-highlighted code editor using AvalonEdit.

RoslynPad.Editor.Windows

Provides a Roslyn-based code editor using AvalonEdit (WPF platform) with completion, diagnostics, and quick actions

Noggog.WPF

Generic reusable WPF classes and extension methods that apply to no specific project and flavored to taste

GitHub repositories (105)

Showing the top 5 popular GitHub repositories that depend on AvalonEdit:

Repository Stars
icsharpcode/ILSpy
.NET Decompiler with support for PDB generation, ReadyToRun, Metadata (&more) - cross-platform!
QL-Win/QuickLook
Bring macOS “Quick Look” feature to Windows
RicoSuter/NSwag
The Swagger/OpenAPI toolchain for .NET, ASP.NET Core and TypeScript.
stride3d/stride
Stride Game Engine (formerly Xenko)
HandyOrg/HandyControl
Contains some simple and commonly used WPF controls
Version Downloads Last updated
6.3.0.90 209,950 3/19/2023
6.2.0.78 82,114 12/10/2022
6.1.3.50 352,805 12/28/2021
6.1.2.30 200,208 6/1/2021
6.1.1 82,307 3/15/2021
6.1.0 36,548 3/8/2021
6.1.0-preview1 110,014 9/7/2020
6.0.1 2,140,072 12/30/2019
6.0.0 230,927 9/24/2019
6.0.0-rc1 4,064 9/5/2019
6.0.0-preview1 9,463 7/23/2019
6.0.0-netcore3p4alpha1 9,421 5/5/2019
5.0.4 717,384 10/14/2017
5.0.3 831,679 5/18/2016
5.0.2 1,810,958 11/14/2014
5.0.1-pre 3,632 6/28/2014
4.4.2.9744 948,424 5/1/2014
4.4.1.9739 3,108 4/30/2014
4.4.0.9727 11,771 1/23/2014
4.3.1.9430 219,082 4/2/2013
4.3.0.9390 20,413 3/9/2013
4.2.0.8783 20,080 5/12/2012
4.1.0.8000 10,475 9/24/2011
4.0.0.7070 17,542 1/16/2011

* License changed from LGPL to MIT
* New Feature: Hide mouse cursor while typing (enabled by default)
* New Feature: Highlight current line (disabled by default)
* New Feature: Overstrike mode (disabled by default)
* New Feature: 'underline' attribute in syntax highlighting definitions
* AvalonEdit now raises the WPF DataObject attached events on clipboard and drag'n'drop operations.
* Encoding detection now distinguishes between UTF-8 with BOM and UTF-8 without BOM. This prevents AvalonEdit from adding the BOM to existing UTF-8 files.
* Improved handling of grapheme clusters. A base character followed by a combining mark is now treated as a single character by the caret movement logic.
* Added RichText, RichTextModel and RichTextColorizer.
* Renamed the VB highlighting mode from "VBNET" to "VB"
* Changed IHighlighter API in order to support SharpDevelop's semantic C# highlighter
* The regex-based highlighting engine was moved into its own class (HighlightingEngine) to be separated from the state-tracking logic in DocumentHighlighter.
* Add FileName property to TextDocument class.
* DocumentChangeEventArgs.RemovedText/InsertedText are now of type ITextSource instead of string.
* The error-tolerant XML parser included with AvalonEdit was removed. An improved version of this parser is part of the NRefactory 5 project.
* Removed some obsolete APIs.