FractalDataWorks 0.1.2-alpha-gca1c536bfd
See the version list below for details.
dotnet add package FractalDataWorks --version 0.1.2-alpha-gca1c536bfd
NuGet\Install-Package FractalDataWorks -Version 0.1.2-alpha-gca1c536bfd
<PackageReference Include="FractalDataWorks" Version="0.1.2-alpha-gca1c536bfd" />
<PackageVersion Include="FractalDataWorks" Version="0.1.2-alpha-gca1c536bfd" />
<PackageReference Include="FractalDataWorks" />
paket add FractalDataWorks --version 0.1.2-alpha-gca1c536bfd
#r "nuget: FractalDataWorks, 0.1.2-alpha-gca1c536bfd"
#:package FractalDataWorks@0.1.2-alpha-gca1c536bfd
#addin nuget:?package=FractalDataWorks&version=0.1.2-alpha-gca1c536bfd&prerelease
#tool nuget:?package=FractalDataWorks&version=0.1.2-alpha-gca1c536bfd&prerelease
FractalDataWorks
Part of the FractalDataWorks toolkit.
Build Status
Release Status
Package Status
License
Core interface definitions for the FractalDataWorks platform, providing foundational contracts for enhanced functionality.
Overview
FractalDataWorks is a Layer 0.5 package containing pure interface definitions that serve as the foundation for the FractalDataWorks platform. This package includes interfaces like IEnhancedEnum
which enable advanced enumeration patterns.
Features
- IEnhancedEnum: Interface for enhanced enumeration types with ID and name properties
- IEnhancedEnum<T>: Generic interface supporting self-referencing enum patterns
- Pure interfaces with no implementation dependencies
- netstandard2.0 compatible for broad framework support
Getting Started
Prerequisites
- .NET Standard 2.0 compatible runtime
- For development: .NET 9.0 SDK or later
Installation
From the REC-DevOps Azure Artifacts feed:
dotnet add package FractalDataWorks
Building from Source
# Clone the repository
git clone https://REC-DevOps@dev.azure.com/REC-DevOps/Developer-Kit/_git/FractalDataWorks
# Navigate to the project directory
cd FractalDataWorks
# Restore dependencies
dotnet restore
# Build the project
dotnet build
Running Tests
# Run all tests
dotnet test
# Run with coverage
dotnet test --collect:"XPlat Code Coverage"
Usage
using FractalDataWorks;
public class OrderStatus : IEnhancedEnum<OrderStatus>
{
public int Id { get; }
public string Name { get; }
private OrderStatus(int id, string name)
{
Id = id;
Name = name;
}
public static OrderStatus Pending = new(1, "Pending");
public static OrderStatus Processing = new(2, "Processing");
public static OrderStatus Complete = new(3, "Complete");
public OrderStatus Empty() => new OrderStatus(0, "None");
}
Project Structure
├── src/ # Source code
│ └── FractalDataWorks/ # Core interfaces
├── tests/ # Unit and integration tests
├── docs/ # Documentation
├── samples/ # Sample projects (future)
├── azure-pipelines.yml # CI/CD pipeline configuration
├── Directory.Build.props # Common build properties
└── README.md # This file
Package Structure
This package contains only interface definitions:
- No implementation code
- No external dependencies
- Minimal runtime footprint
Related Packages
- FractalDataWorks.EnhancedEnums: Source generator for implementing enhanced enumerations
- FractalDataWorks.SmartSwitches: Advanced pattern matching capabilities (coming soon)
Versioning
This project uses Nerdbank.GitVersioning for automatic versioning based on git history.
License
This project is licensed under the Apache License 2.0 - see the LICENSE file for details.
Acknowledgments
- Part of the FractalDataWorks platform architecture
- Layer 0.5 pure interface package
- Follows semantic versioning
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. 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. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- No dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on FractalDataWorks:
Package | Downloads |
---|---|
FractalDataWorks.Messages
Message management system with Enhanced Enums pattern support |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last Updated |
---|---|---|
0.1.6-alpha-gb9d189bbcb | 95 | 7/29/2025 |
0.1.5-alpha-g0162340032 | 97 | 7/29/2025 |
0.1.4-alpha-ga55613c307 | 120 | 7/28/2025 |
0.1.3-alpha-g1695442435 | 484 | 7/18/2025 |
0.1.2-alpha-gca1c536bfd | 179 | 7/14/2025 |