AVPRIndex 0.1.0

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

// Install AVPRIndex as a Cake Tool
#tool nuget:?package=AVPRIndex&version=0.1.0

AVPR Index

Type system for the indexing backend of https://avpr.nfdi4plants.org.

This lib exposes the type system and utilities needed to parse and index arc validation packages with yaml frontmatter.

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 AVPRIndex:

Package Downloads
AVPRClient

.NET client library for avpr.nfdi4plants.org

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.1.0 74 4/25/2024
0.0.8 181 3/18/2024
0.0.7 111 3/13/2024
0.0.6 94 3/12/2024
0.0.5 91 3/12/2024
0.0.4 92 3/11/2024
0.0.3 83 3/7/2024
0.0.2 127 3/4/2024
0.0.1 117 2/29/2024

## v0.1.0

Add support for in-package frontmatter bindings. Enables re-use of the frontmatter inside the package code

## v0.0.8
- Fix content hash being dependent on line endings (now, all content is normalized to \n before hashing)
- Fix code duplication in create functions for `ValidationPackageIndex`
- Unify `create` functions for Domain types

## v0.0.7

fix preview index download url

## v0.0.6

- Refactor and expose parsing & convenience functions:
 - Frontmatter
   - containsFrontmatter
   - tryExtractFromString
   - extractFromString
 - ValidationPackageMetadata
   - tryExtractFromString
   - extractFromString
   - tryExtractFromScript
   - extractFromScript

all frontmatter/metadata extraction functions will replace line endings with "\n", as YamlDotNet will replace any line endings with new line when presented the string anyways.

that way, the extracted frontmatter/metadata (especially field values, which caused problems due to YamlDotNet's default behavior) will be consistent across different platforms.

## v0.0.5

- Add `getPreviewIndex` function that downloads the currently released preview index from the github release.

## v0.0.4

- Replace line endings when parsing frontmatter

## v0.0.3

- Add create function to Author and OntologyAnnotation (https://github.com/nfdi4plants/arc-validate-package-registry/pull/27)

## v0.0.2

- Add qol Domain functions (https://github.com/nfdi4plants/arc-validate-package-registry/pull/26)

## v0.0.1

- Initial release for AVPR API v1