mirror of
https://github.com/tribufu/tribufu-dotnet
synced 2026-06-01 09:42:35 +00:00
Add native bindings lib
This commit is contained in:
parent
7530662be9
commit
92dffe0b72
3 changed files with 26 additions and 0 deletions
|
|
@ -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" />
|
||||
|
|
|
|||
13
src/Tribufu.Native/Tribufu.Native.csproj
Normal file
13
src/Tribufu.Native/Tribufu.Native.csproj
Normal 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>
|
||||
12
src/Tribufu.Native/TribufuNative.cs
Normal file
12
src/Tribufu.Native/TribufuNative.cs
Normal 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
|
||||
{
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue