ThinkGeo.Dependency.FileGeoDatabase
15.0.0-beta002
See the version list below for details.
dotnet add package ThinkGeo.Dependency.FileGeoDatabase --version 15.0.0-beta002
NuGet\Install-Package ThinkGeo.Dependency.FileGeoDatabase -Version 15.0.0-beta002
<PackageReference Include="ThinkGeo.Dependency.FileGeoDatabase" Version="15.0.0-beta002" />
<PackageVersion Include="ThinkGeo.Dependency.FileGeoDatabase" Version="15.0.0-beta002" />
<PackageReference Include="ThinkGeo.Dependency.FileGeoDatabase" />
paket add ThinkGeo.Dependency.FileGeoDatabase --version 15.0.0-beta002
#r "nuget: ThinkGeo.Dependency.FileGeoDatabase, 15.0.0-beta002"
#:package ThinkGeo.Dependency.FileGeoDatabase@15.0.0-beta002
#addin nuget:?package=ThinkGeo.Dependency.FileGeoDatabase&version=15.0.0-beta002&prerelease
#tool nuget:?package=ThinkGeo.Dependency.FileGeoDatabase&version=15.0.0-beta002&prerelease
ThinkGeo.Dependency.FileGeoDatabase
A wrapper around Esri's File Geodatabase API v1.5.x for Windows. This is a foundational dependency of ThinkGeo.FileGeoDatabase and is not intended to be referenced directly by application projects.
The package enables ThinkGeo's File Geodatabase integration to read and write Esri File Geodatabase (.gdb) feature classes, tables, and rasters without requiring an ArcGIS installation on the target machine.
Supported platforms
- Architecture: Windows x64 (Esri's prebuilt File Geodatabase API ships only as x64 — there is no x86 build)
- Minimum OS: Windows 10 / Windows Server 2016 (aligned with the Microsoft Visual C++ 2015–2022 Runtime requirements pulled in via ThinkGeo.Dependency.MicrosoftVisualCRunTime140)
- Target frameworks: .NET Framework 4.6.2+ and .NET Standard 2.1 (which covers .NET Core 3.1 / .NET 5 / 6 / 7 / 8 / 9 …)
The native FileGDBAPI binaries are deployed app-locally during dotnet build and dotnet publish by the bundled MSBuild .targets file: the DLLs are copied next to your application executable so the managed wrapper can P/Invoke into them.
No separate ArcGIS or File Geodatabase API install is required — the FileGDBAPI native DLL ships inside this NuGet package and is deployed app-locally. Likewise, no manual VC++ Redistributable install is required on the target machine; the Microsoft Visual C++ 2015–2022 Runtime DLLs flow in via the transitive ThinkGeo.Dependency.MicrosoftVisualCRunTime140 dependency.
What's inside
Managed wrapper, under lib/<tfm>/:
- Esri.FileGDBAPI.dll — Esri's official C# wrapper around the native FileGDB API (built for net462 and netstandard2.1)
Native binaries, under buildTransitive/win-x64/:
- FileGDBAPI.dll — Esri File Geodatabase API native runtime (release)
- FileGDBAPID.dll — Esri File Geodatabase API native runtime (debug)
- FileGDB_API_license.txt — Apache License, Version 2.0 (verbatim copy as distributed by Esri)
The native binaries are sourced from the official Esri/file-geodatabase-api project.
Licensing
Both the Esri File Geodatabase API binaries and the Esri.FileGDBAPI managed wrapper are released by Esri under the Apache License, Version 2.0. The ThinkGeo packaging metadata and bundled MSBuild .targets are likewise Apache 2.0. The full license text is included alongside the native binaries (FileGDB_API_license.txt) and is also available through the Esri repository linked above.
This package depends transitively on ThinkGeo.Dependency.MicrosoftVisualCRunTime140, which redistributes the Microsoft Visual C++ 2015–2022 Runtime under Microsoft's separate distributable code license; see that package's LICENSE.txt for details.
Reporting issues
This package is part of the ThinkGeo product line. Please report issues through ThinkGeo support channels rather than to Esri.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
| .NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.1 is compatible. |
| .NET Framework | net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
- ThinkGeo.Dependency.MicrosoftVisualCRunTime140 (>= 15.0.0-beta006)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on ThinkGeo.Dependency.FileGeoDatabase:
| Package | Downloads |
|---|---|
|
ThinkGeo.FileGeoDatabase
ThinkGeo.FileGeoDatabase is a layer extension to ThinkGeo.Core that reads Esri File Geodatabase (.gdb) datasets and renders them as feature layers on the map. Built on Esri's official File Geodatabase API v1.5. Capabilities: - Read feature classes, tables, and rasters from a .gdb folder. - Filter via spatial / attribute queries that flow into GDB indexes. - No ArcGIS desktop install required — the FileGDB native binaries ship inside the dependency package. Targets: .NET Framework 4.6.2+ and .NET Standard 2.1 (covers .NET Core 3.1, .NET 5 / 6 / 7 / 8 / 9). Platforms: Windows x64. (Esri's prebuilt FileGDB API ships only as x64.) Depends on ThinkGeo.Core plus ThinkGeo.Dependency.FileGeoDatabase for the native binaries. Pair with a UI package for your platform — see ThinkGeo.Core for the full list. Commercial product with a free 30-day evaluation. Sign up at https://helpdesk.thinkgeo.com/register and download ProductCenter to start. Documentation: https://docs.thinkgeo.com/ |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 15.0.0-beta003 | 32 | 5/4/2026 |
| 15.0.0-beta002 | 37 | 5/4/2026 |
| 15.0.0-beta001 | 38 | 5/4/2026 |
| 14.2.0 | 1,522 | 3/30/2026 |
| 14.2.0-beta002 | 2,593 | 1/30/2026 |
| 14.2.0-beta001 | 2,545 | 11/1/2025 |
| 14.0.0 | 18,356 | 4/30/2024 |
| 13.1.0 | 1,224 | 4/11/2024 |
| 13.0.0 | 13,326 | 11/19/2022 |