Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
0c36a4c
Start writing an MSBuild script that creates NuGet packages for the c…
teo-tsirpanis Nov 14, 2022
1d7d3b0
Support creating the native packages.
teo-tsirpanis Nov 14, 2022
61b5178
Support creating the metapackage.
teo-tsirpanis Nov 15, 2022
2a06a80
(REMOVE BEFORE MERGE) Add a temporary MyGet feed for the TileDB nativ…
teo-tsirpanis Nov 15, 2022
b72b8dc
Use the TileDB Embedded page for the project URL in the native packages.
teo-tsirpanis Nov 15, 2022
cad8b05
Use the `TileDB.Native` NuGet package and remove the nuspec of `TileD…
teo-tsirpanis Nov 15, 2022
74a1520
Set `UseCurrentRuntimeIdentifier` in the executable projects.
teo-tsirpanis Nov 15, 2022
2ec7fe9
Restore the template packages.
teo-tsirpanis Nov 15, 2022
287a4ac
Remove the ValueSeparator hack.
teo-tsirpanis Nov 15, 2022
0e4ca34
Remove the "Install/Download tiledb" steps from CI.
teo-tsirpanis Nov 15, 2022
c14741d
Remove all CI jobs except of Run-Tests.
teo-tsirpanis Nov 16, 2022
3c33ffe
Remove RollForward from TileDB.CSharp.
teo-tsirpanis Nov 16, 2022
e655b26
Update package metadata and move them to a dedicated file.
teo-tsirpanis Nov 17, 2022
d0764a6
Add support for generating development editions of the native packages.
teo-tsirpanis Nov 17, 2022
4d85390
Enable Central Package Management with package source mapping.
teo-tsirpanis Nov 17, 2022
f848e09
Add release notes in the packages.
teo-tsirpanis Nov 17, 2022
8869749
Refactor the nightly build workflow to use native development NuGet p…
teo-tsirpanis Nov 17, 2022
fffdd3c
Update the repository README and add a package README.
teo-tsirpanis Nov 17, 2022
4f3601f
Require `Version` and `VersionTag` to be specified.
teo-tsirpanis Nov 17, 2022
f787a3c
Add a README describing the native NuGet package generator.
teo-tsirpanis Nov 17, 2022
abf0603
Demand Core version 2.12.x.
teo-tsirpanis Nov 23, 2022
e456ae3
Warn when building an RID-agnostic executable that uses `TileDB.CSharp`.
teo-tsirpanis Nov 24, 2022
ec1ddab
Remove the RID-specific build instructions in the metapackage's descr…
teo-tsirpanis Nov 24, 2022
24b425d
Remove the MyGet feed; we are now using the official TileDB binaries …
teo-tsirpanis Dec 1, 2022
dd9213a
Use MSBuild's custom item separator feature instead of a `string.Repl…
teo-tsirpanis Dec 1, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Use the TileDB.Native NuGet package and remove the nuspec of `TileD…
…B.CSharp`.
  • Loading branch information
teo-tsirpanis committed Nov 15, 2022
commit cad8b057fe315d88778aafd8f2d65151adde0556
15 changes: 11 additions & 4 deletions sources/TileDB.CSharp/TileDB.CSharp.csproj
Original file line number Diff line number Diff line change
@@ -1,18 +1,25 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Nullable>enable</Nullable>
<RollForward>Major</RollForward>
<RootNamespace>TileDB.CSharp</RootNamespace>
<Version>5.3.0</Version>
<NuspecFile>TileDB.CSharp.nuspec</NuspecFile>
<NuspecProperties>version=$(Version)</NuspecProperties>
<Authors>TileDB Inc</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>logo.png</PackageIcon>
<PackageProjectUrl>https://tiledb.com/products/tiledb-embedded/</PackageProjectUrl>
<Description>C# wrapper of the TileDB Embedded universal data engine.</Description>
<PackageTags>tiledb</PackageTags>
</PropertyGroup>

<PropertyGroup>
<OutputPath>./lib</OutputPath>
</PropertyGroup>

<Import Project="TileDB.CSharp.targets" />
<ItemGroup>
<None Include="../../art/logo.png" Pack="true" PackagePath="" />
<PackageReference Include="TileDB.Native" Version="2.12.2" />
</ItemGroup>
</Project>
29 changes: 0 additions & 29 deletions sources/TileDB.CSharp/TileDB.CSharp.nuspec

This file was deleted.

29 changes: 0 additions & 29 deletions sources/TileDB.CSharp/TileDB.CSharp.targets

This file was deleted.

1 change: 0 additions & 1 deletion sources/TileDB.CSharp/runtimes/linux-x64/native/README.md

This file was deleted.

1 change: 0 additions & 1 deletion sources/TileDB.CSharp/runtimes/osx-x64/native/README.md

This file was deleted.

1 change: 0 additions & 1 deletion sources/TileDB.CSharp/runtimes/win-x64/native/README.md

This file was deleted.