Thinkmine.Zaria.Core 1.2.7

There is a newer version of this package available.
See the version list below for details.
dotnet add package Thinkmine.Zaria.Core --version 1.2.7                
NuGet\Install-Package Thinkmine.Zaria.Core -Version 1.2.7                
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="Thinkmine.Zaria.Core" Version="1.2.7" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Thinkmine.Zaria.Core --version 1.2.7                
#r "nuget: Thinkmine.Zaria.Core, 1.2.7"                
#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 Thinkmine.Zaria.Core as a Cake Addin
#addin nuget:?package=Thinkmine.Zaria.Core&version=1.2.7

// Install Thinkmine.Zaria.Core as a Cake Tool
#tool nuget:?package=Thinkmine.Zaria.Core&version=1.2.7                

Thinkmine Zaria Core

This library contains extension and helper methods that enhance the use of C#.

Version 1.1.*

  • Add support for .NET 8. .NET 6 is out of support so the project has been migrated to the next LTS version.
  • FromCSV is no longer in beta and now adds support for parsing the CSV document into a list of a certain type.
  • Added ICustomCSVProcessor interface for custom processing of the CSV data. This should be used in scenarios where the user needs to do some complex processing and mapping of the csv data. The example below illustrates.
public class Test : ICustomCSVProcessor
{
    
    public bool One { get; set; }

    [Index(1)]
    public int Two { get; set; }

    [Index(0)]
    public string Three { get; set; }

    

    public void ProcessRow(string[] row_data)
    {
        One = bool.Parse(row_data[2]);
    }
}
  • Added support for duplicate IndexAttributes with the same index value. In such scenarios previous values will be overwritten by newer ones in the order that they are encountered.
  • Added support for guid, string, int, double, datetime, and bool as property types on any type you want mapped to rows of the CSV document. Previously a type defined as follows would not work properly as the types for properties One and Two are not string. With this release they can now be used.
public class Test
{
    [Index(2)]
    public bool One { get; set; }

    [Index(1)]
    public int Two { get; set; }

    [Index(0)]
    public string Three { get; set; }


}
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Thinkmine.Zaria.Core:

Package Downloads
Zaria.AI

This framework provides a simple, attribute-driven, low-code API for building text based interactive dialog. It can be used to build AI BOTs, CLIs and command line tools, workflow orchestrators, and other general command processing utilities! Find out more about Zaria.AI here: https://github.com/thinkmine/zaria.ai

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.4.0 27 9/22/2024
1.2.9 86 9/5/2024
1.2.8 74 9/5/2024
1.2.7 96 8/19/2024
1.2.6 98 8/19/2024
1.1.3 97 8/18/2024
1.1.2 106 8/16/2024
1.1.1 91 8/15/2024
1.1.0 82 8/15/2024
1.0.2 59 8/6/2024
1.0.1 69 8/6/2024
1.0.0 68 8/5/2024
0.0.7-alpha 101 2/6/2023
0.0.6-alpha 312 1/31/2023
0.0.5-alpha 340 1/25/2023
0.0.4-alpha 100 1/24/2023
0.0.3-alpha 108 1/13/2023
0.0.2-alpha 110 1/9/2023
0.0.1-alpha 105 1/9/2023