summaryrefslogtreecommitdiff
path: root/Djup
diff options
context:
space:
mode:
Diffstat (limited to 'Djup')
-rw-r--r--Djup/Djup.csproj16
-rw-r--r--Djup/Program.cs2
2 files changed, 18 insertions, 0 deletions
diff --git a/Djup/Djup.csproj b/Djup/Djup.csproj
new file mode 100644
index 0000000..3c18b7c
--- /dev/null
+++ b/Djup/Djup.csproj
@@ -0,0 +1,16 @@
+<Project Sdk="Microsoft.NET.Sdk">
+
+ <ItemGroup>
+ <ProjectReference Include="..\lib\Djup.Native\Djup.Native.csproj">
+ <!--<Private>false</Private>-->
+ </ProjectReference>
+ </ItemGroup>
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>net8.0</TargetFramework>
+ <ImplicitUsings>enable</ImplicitUsings>
+ <Nullable>enable</Nullable>
+ </PropertyGroup>
+
+</Project>
diff --git a/Djup/Program.cs b/Djup/Program.cs
new file mode 100644
index 0000000..c66eb42
--- /dev/null
+++ b/Djup/Program.cs
@@ -0,0 +1,2 @@
+using Djup.Native;
+LibDjup.hello_world();