basics for uniffi

This commit is contained in:
Vinzenz Schroeter 2024-11-02 23:15:54 +01:00
parent 12ba47a281
commit 07a1b8810c
19 changed files with 1353 additions and 3 deletions

View file

@ -0,0 +1,2 @@
bin
obj

View file

@ -0,0 +1,5 @@
using ServicePoint;
var connection = new Connection("");
var clear = new Clear();

View file

@ -0,0 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>ServicePoint.Example</RootNamespace>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="../ServicePoint/ServicePoint.csproj"/>
</ItemGroup>
</Project>