forked from TileDB-Inc/TileDB-CSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTileDB.CSharp.csproj
25 lines (24 loc) · 1.27 KB
/
TileDB.CSharp.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="../NuGet.props" />
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<IsPackable Condition="$(DevelopmentBuild) == true OR '$(LocalLibraryFile)' != ''">false</IsPackable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Nullable>enable</Nullable>
<RootNamespace>TileDB.CSharp</RootNamespace>
<Version>5.9.0</Version>
<Description>C# wrapper of the TileDB Embedded universal data engine.</Description>
<PackageReadmeFile>README.md</PackageReadmeFile>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<EnablePackageValidation>true</EnablePackageValidation>
<PackageValidationBaselineVersion>5.8.0</PackageValidationBaselineVersion>
<NoWarn>$(NoWarn);TILEDB0012;TILEDB0013;TILEDB0014</NoWarn>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="True" PackagePath="" />
<None Include="build/TileDB.CSharp.targets" Pack="True" PackagePath="build" />
<None Include="buildTransitive/TileDB.CSharp.targets" Pack="True" PackagePath="buildTransitive" />
<None Include="$(LocalLibraryFile)" CopyToOutputDirectory="PreserveNewest" />
<PackageReference Condition="'$(LocalLibraryFile)' == ''" Include="$(TileDBNativePackageName)" />
</ItemGroup>
</Project>