FractalDataWorks.Configuration 0.1.1-alpha-g482604bba8

This is a prerelease version of FractalDataWorks.Configuration.
The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package FractalDataWorks.Configuration --version 0.1.1-alpha-g482604bba8
                    
NuGet\Install-Package FractalDataWorks.Configuration -Version 0.1.1-alpha-g482604bba8
                    
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="FractalDataWorks.Configuration" Version="0.1.1-alpha-g482604bba8" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="FractalDataWorks.Configuration" Version="0.1.1-alpha-g482604bba8" />
                    
Directory.Packages.props
<PackageReference Include="FractalDataWorks.Configuration" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add FractalDataWorks.Configuration --version 0.1.1-alpha-g482604bba8
                    
#r "nuget: FractalDataWorks.Configuration, 0.1.1-alpha-g482604bba8"
                    
#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.
#:package FractalDataWorks.Configuration@0.1.1-alpha-g482604bba8
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=FractalDataWorks.Configuration&version=0.1.1-alpha-g482604bba8&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=FractalDataWorks.Configuration&version=0.1.1-alpha-g482604bba8&prerelease
                    
Install as a Cake Tool

FractalDataWorks Developer Kit

Core packages for the FractalDataWorks platform, providing foundational abstractions and implementations for services, connections, configuration, and more.

Repository Structure

This repository contains the Layer 0.5 and Layer 1 packages as defined in the FractalDataWorks architecture:

Layer 0.5 - Core Foundation (No Dependencies)

  • FractalDataWorks.net - Core abstractions and base types (targets netstandard2.0 for maximum compatibility)

Layer 1 - Base Abstractions

  • FractalDataWorks.Services - Service abstractions and patterns
  • FractalDataWorks.Connections - Connection abstractions for data and messaging
  • FractalDataWorks.Configuration - Configuration abstractions and providers
  • FractalDataWorks.DependencyInjection - DI abstractions and extensions
  • FractalDataWorks.Tools - Common tools and utilities
  • FractalDataWorks.Hosts - Host abstractions for web and worker services
  • FractalDataWorks.Data - Data abstractions and common types

Git Workflow

This repository follows a git-flow branching strategy:

  1. master - Production-ready releases only
  2. develop - Main development branch
  3. feature/ - Feature branches
  4. beta/ - Beta release branches
  5. release/ - Release candidate branches
  6. experimental/ - Experimental features

Setting up the Development Branch

After cloning, create the develop branch from master:

git checkout -b develop
git push -u origin develop

Creating Feature Branches

Always branch from develop:

git checkout develop
git pull origin develop
git checkout -b feature/your-feature-name

Building and Testing

Prerequisites

  • .NET 10.0 Preview SDK
  • Visual Studio 2022 Preview or VS Code

Build Commands

# Restore packages
dotnet restore

# Build solution
dotnet build

# Run tests
dotnet test

# Pack NuGet packages
dotnet pack

Configuration-Specific Builds

# Debug build (default)
dotnet build

# Alpha build
dotnet build -c Alpha

# Beta build
dotnet build -c Beta

# Release build
dotnet build -c Release

Package Dependencies

Each Layer 1 package depends on FractalDataWorks.net. Additional dependencies:

  • FractalDataWorks.DependencyInjection also depends on FractalDataWorks.Configuration
  • FractalDataWorks.Hosts also depends on FractalDataWorks.Services

Testing

All projects use xUnit.v3 for testing. Test projects follow the naming convention: FractalDataWorks.[Package].Tests

Run tests with:

dotnet test

CI/CD

This repository includes both Azure Pipelines and GitHub Actions workflows for CI/CD.

Azure Pipelines

  • Configuration: azure-pipelines.yml
  • Publishes to Azure Artifacts feed: dotnet-packages

GitHub Actions

  • Configuration: .github/workflows/ci.yml
  • Publishes to GitHub Packages and optionally Azure Artifacts

Contributing

  1. Create a feature branch from develop
  2. Make your changes
  3. Ensure all tests pass
  4. Submit a pull request to develop

License

MIT License - see LICENSE file for details.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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