summaryrefslogtreecommitdiff
path: root/lib/Djup.Native/Djup.Native.csproj
diff options
context:
space:
mode:
authorJoel Stålnacke <joel@saker.fi>2024-10-08 19:59:10 +0300
committerJoel Stålnacke <joel@saker.fi>2024-10-08 19:59:10 +0300
commit4bac6ae2e725a1997674fd3369bf4ea032235d8b (patch)
treecd9682eac89c1da5d5c54741684b5e8405f5d54c /lib/Djup.Native/Djup.Native.csproj
parent21001a44f1781423ae04f35ee41e042ae6f01355 (diff)
Add a native "Hello World" to the project
After much trouble with MSBuild
Diffstat (limited to 'lib/Djup.Native/Djup.Native.csproj')
-rw-r--r--lib/Djup.Native/Djup.Native.csproj27
1 files changed, 0 insertions, 27 deletions
diff --git a/lib/Djup.Native/Djup.Native.csproj b/lib/Djup.Native/Djup.Native.csproj
deleted file mode 100644
index 7184efb..0000000
--- a/lib/Djup.Native/Djup.Native.csproj
+++ /dev/null
@@ -1,27 +0,0 @@
-<Project Sdk="Microsoft.NET.Sdk">
-
- <PropertyGroup>
- <TargetFramework>net8.0</TargetFramework>
- <!--<OutputType>exe</OutputType>-->
- <ImplicitUsings>enable</ImplicitUsings>
- <Nullable>enable</Nullable>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
- <ItemGroup Condition=" '$(Configuration)'=='Release' ">
- <None Include="$(MSBuildThisFileDirectory)../build/runtimes/linux-x64/native/libdjup.so">
- <TargetPath>runtimes/linux-x64/native/libdjup.so</TargetPath>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- <PackagePath>runtimes/linux-x64/native/</PackagePath>
- <Pack>true</Pack>
- </None>
- </ItemGroup>
- <ItemGroup Condition=" '$(Configuration)'=='Debug' ">
- <Content Include="$(MSBuildThisFileDirectory)../build/**">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- </ItemGroup>
- <!-- This fixes import errors (adding another library with native assets) -->
- <!--<ItemGroup>-->
- <!-- <PackageReference Include="SQLitePCLRaw.lib.e_sqlite3" Version="2.1.10" />-->
- <!--</ItemGroup>-->
-</Project>