TodoTxt.Library 1.0.0

dotnet add package TodoTxt.Library --version 1.0.0
NuGet\Install-Package TodoTxt.Library -Version 1.0.0
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="TodoTxt.Library" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TodoTxt.Library --version 1.0.0
#r "nuget: TodoTxt.Library, 1.0.0"
#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 TodoTxt.Library as a Cake Addin
#addin nuget:?package=TodoTxt.Library&version=1.0.0

// Install TodoTxt.Library as a Cake Tool
#tool nuget:?package=TodoTxt.Library&version=1.0.0

TodoTxt.Library

Purpose

Provide a todo.txt format-compliant object representation of tasks and task lists.

Project Goals

  1. Provide a modern .NET implementation that improves on the ones used in Todotxt.net and TodoTxtLib.
  2. Fully implement the todo.txt format specifications.
  3. Include support for threshold date and arbitrary tags, on top of the standard todo.txt format specifications.
  4. Optimize classes for performance rather than in-memory footprint.
  5. Fully support data bindings, including sending notifications of property changes.
  6. Include exhaustive unit tests of the Task and TaskList objects.
  7. Target the .NET 5 for cross-platform support

Design Decisions

Task object

  1. Support a property indicating the Task's position in a file or list.
  2. Use regular expressions for todo.txt format parsing.
  3. Minimize re-running regular expression pattern matching unless the Task is modified. That is, class properties are saved to instance variables, rather than evaluated each time they are needed.
  4. Notify consumers of property changes, to support data binding.
  5. Provide methods for updating all properties.
  6. Do not provide methods for building tasks from component parts.

TaskList object

  1. Notify consumers of task list changes, by sending CollectionChanged notifications, to support data binding.
  2. Send CollectionChanged notifications when task properties are changed (for in-place modifications to the Task objects within the task list).
  3. Provide methods for reading/writing task list to file/stream.
  4. Support task list sorting.
  5. Support task list filtering.

FileBasedTaskList object

  1. Encapsulate methods for loading and saving todo.txt files.
  2. Encapsulate functionality for watching the todo.txt file for external modifications, and optionally reloading the file when it is externally modified.
  3. Support an optional auto-save function, triggered by changes to the task list.
Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net5.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0 346 4/15/2021

# Version 1.0.0

Initial NuGet package release.