Add native bindings lib

This commit is contained in:
Guilherme Werner 2026-05-08 21:48:17 -03:00
parent 7530662be9
commit 92dffe0b72
3 changed files with 26 additions and 0 deletions

View file

@ -6,6 +6,7 @@
<Project Path="src/Tribufu.EntityFrameworkCore/Tribufu.EntityFrameworkCore.csproj" />
<Project Path="src/Tribufu.Example/Tribufu.Example.csproj" />
<Project Path="src/Tribufu.Logging/Tribufu.Logging.csproj" />
<Project Path="src/Tribufu.Native/Tribufu.Native.csproj" />
<Project Path="src/Tribufu.Platform/Tribufu.Platform.csproj" />
<Project Path="src/Tribufu.Serialization/Tribufu.Serialization.csproj" />
<Project Path="src/Tribufu/Tribufu.csproj" />

View file

@ -0,0 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
<IsPublishable>false</IsPublishable>
<OutputType>Library</OutputType>
<TargetFrameworks>netstandard2.0;net45;net5.0</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
</ItemGroup>
<ItemGroup>
</ItemGroup>
</Project>

View file

@ -0,0 +1,12 @@
// Copyright (c) Tribufu. All Rights Reserved.
// SPDX-License-Identifier: MIT
namespace Tribufu.Native
{
/// <summary>
/// Provides methods to interact with the Tribufu native library.
/// </summary>
public static partial class TribufuNative
{
}
}