zuki.tools.llvm.clang 1.1.380.6003

There is a newer version of this package available.
See the version list below for details.

Requires NuGet 2.5 or higher.

dotnet add package zuki.tools.llvm.clang --version 1.1.380.6003
NuGet\Install-Package zuki.tools.llvm.clang -Version 1.1.380.6003
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="zuki.tools.llvm.clang" Version="1.1.380.6003" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add zuki.tools.llvm.clang --version 1.1.380.6003
#r "nuget: zuki.tools.llvm.clang, 1.1.380.6003"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install zuki.tools.llvm.clang as a Cake Addin
#addin nuget:?package=zuki.tools.llvm.clang&version=1.1.380.6003

// Install zuki.tools.llvm.clang as a Cake Tool
#tool nuget:?package=zuki.tools.llvm.clang&version=1.1.380.6003

Provides a comprehensive object model that exposes the entire libclang API including static indexing, event driven indexing, code completion, build system, compilation database, and documentation parsing. Requires Microsoft.NET version 4.5 or higher.

Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on zuki.tools.llvm.clang:

Package Downloads
zuki.tools.llvm.clang.Samples

This package contains samples that demonstrate the use of the zuki.tools.llvm.clang library

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.2.390.6115 1,452 9/29/2016
1.1.381.6036 1,335 7/12/2016
1.1.380.6003 1,093 6/9/2016
1.0.380.5974 1,780 5/10/2016

Version 1.1 (libclang v3.8.0)
* GitHub Issue #1: Added overload to CursorKind.ToString() that accepts a format string of "S" or "s" to return the short value type name rather than the generized name provided by the clang API.  This is useful when strings without embedded spaces or special characters are required.
* GitHub Issue #2: Modified Cursor.Extent property to expose a new extent based on the specific file locations rather than relying upon the cursor extent supplied by the clang API.  The internal representation of the extent may differ from what is externally reported which causes unexpected results with operations like Extent.GetTokens().
* GitHub Issue #3: Modified Extent.GetTokens() so that exclusion of a trailing token as part of the workaround for clang bug 9069 is based on the source extent being a bounding range rather than an inclusive range.  This prevents unexpected trailing punctuation tokens from being returned as part of the token collection.
* Removed CursorKind.GCCAsmStmt and CursorKind.MacroInstantiation values.  These are duplicates of CursorKind.AsmStmt and CursorKind.MacroExpansion and became problematic during resolution of GitHub Issue #1.