summaryrefslogtreecommitdiff
path: root/Djup.Native/Djup.Native.csproj
diff options
context:
space:
mode:
Diffstat (limited to 'Djup.Native/Djup.Native.csproj')
-rw-r--r--Djup.Native/Djup.Native.csproj39
1 files changed, 0 insertions, 39 deletions
diff --git a/Djup.Native/Djup.Native.csproj b/Djup.Native/Djup.Native.csproj
deleted file mode 100644
index f3c2781..0000000
--- a/Djup.Native/Djup.Native.csproj
+++ /dev/null
@@ -1,39 +0,0 @@
-<Project Sdk="Microsoft.NET.Sdk">
-
- <PropertyGroup>
- <TargetFramework>net10.0</TargetFramework>
- <ImplicitUsings>enable</ImplicitUsings>
- <Nullable>enable</Nullable>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
-
- <PropertyGroup>
- <BuildDir>$(MSBuildThisFileDirectory)../lib/build</BuildDir>
- </PropertyGroup>
-
- <ItemGroup Condition=" '$(Configuration)'=='Release' ">
- <Content Include="$(BuildDir)/linux-x64/libdjup.so">
- <TargetPath>runtimes/linux-x64/native/libdjup.so</TargetPath>
- <CopyToOutputDirectory>Always</CopyToOutputDirectory>
- <PackagePath>runtimes/linux-x64/native/</PackagePath>
- <Pack>true</Pack>
- </Content>
- </ItemGroup>
-
- <Choose>
- <When Condition=" '$(Configuration)'=='Debug'">
- <PropertyGroup>
- <Arch>$([System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture)</Arch>
- <IsLinux Condition="$([MSBuild]::IsOsPlatform('Linux'))">true</IsLinux>
- </PropertyGroup>
-
- <ItemGroup Condition=" $(IsLinux) And '$(Arch)' == X64 ">
- <Content Include="$(BuildDir)/linux-x64/libdjup.so">
- <TargetPath>runtimes/linux-x64/native/libdjup.so</TargetPath>
- <CopyToOutputDirectory>Always</CopyToOutputDirectory>
- </Content>
- </ItemGroup>
- </When>
- </Choose>
-
-</Project>