G-bds 1.0.0

dotnet add package G-bds --version 1.0.0
                    
NuGet\Install-Package G-bds -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="G-bds" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="G-bds" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="G-bds" />
                    
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 G-bds --version 1.0.0
                    
#r "nuget: G-bds, 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.
#:package G-bds@1.0.0
                    
#: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=G-bds&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=G-bds&version=1.0.0
                    
Install as a Cake Tool

G.BDS � Building Data Share Library

G.BDS is a lightweight .NET library that facilitates the creation, management, and validation of BDS (Building Data Share) files.
It provides tools for defining and sharing standardized data schedule templates that can be used to extract structured tables from IFC models.

BDS enables project teams to standardize schedules and reports, ensuring consistency and improving collaboration across different software platforms and disciplines.


What is BDS?

Building Data Share (BDS) is an open-source, XML-based schema for defining reusable data schedules in building projects.
It ensures everyone in a project team uses the same definitions for schedules and reports, bridging gaps between different BIM software.

BDS builds on IFC (Industry Foundation Classes) � the open global standard for building data � so it is compatible with any IFC-compliant model.

Example workflow:

  • An AEC team (architects, engineers, contractors, etc.) creates a BDS template to define:
    • Which IFC classes (e.g., IfcWall, IfcDoor, IfcSpace) to target.
    • Which attributes or property values to include.
    • Filters, sorting, and output structure.
  • The BDS file is shared across teams or projects.
  • Any IFC-reading software can then extract standardized schedules directly from the model.

Key Features

  • Interdisciplinary scope
    Supports all AEC disciplines by leveraging IFC model classes.
    Any software that can read IFC can also use BDS templates for data extraction.

  • Template sharing
    Define schedules once and reuse them.
    Distribute BDS files to ensure every stakeholder uses the same rules for data extraction.

  • Standardized outputs
    Generate consistent, structured tables with predefined columns and filters.
    Perfect for multi-project reporting and comparison.


Schema Reference

The official BDS schema file is available here:
g-algos/standards/bds.1.0.xsd

Include this schema in your BDS XML files for validation:

<?xml version="1.0" encoding="utf-8"?>
<BDS xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:noNamespaceSchemaLocation="bds.1.0.xsd">
  
</BDS>

Installation

Install the package via NuGet :

dotnet add package G.bds

Or add it directly to your .csproj file:

<PackageReference Include="G-bds" Version="1.0.0" 

Usage Example

Here�s a simple example of loading and validating a BDS file:

using G.Bds;
using System.Xml.Serialization;
using System.IO;

// Load a BDS file
var filePath =""; // Your file
var bds = Serializer.Deserialize(filePath);

// Access schedules
foreach (var set in bds.Schedules)
{
    Console.WriteLine($"Schedule Set: {set.Name}");
    foreach( var schedule in set.Schedules)
    {
        Console.WriteLine($"Schedule: {schedule.Name}");
    }
    Console.WriteLine($"");
}

License

This project is licensed under the Apache License 2.0. See the LICENSE file for more details.

Repository & Contributions

Repository URL: https://github.com/g-algos/G.BDS Contributions are welcome! Please open issues or submit pull requests to help improve the BDS ecosystem.

Why BDS?

BDS is designed for teams that need clarity and consistency when extracting data from BIM models. By standardizing schedule templates, you ensure repeatable, reliable outputs, eliminating confusion between different software tools or manual reporting workflows.

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.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.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 231 9/19/2025