All Projects → SharpGenTools → Sharpgentools

SharpGenTools / Sharpgentools

Licence: mit
Accurate and high performance C++ interop code generator for C#.

Programming Languages

c
50402 projects - #5 most used programming language
cpp
1120 projects

Projects that are alternatives of or similar to Sharpgentools

rust-to-ios
Example project for building a library for iOS in Rust.
Stars: ✭ 66 (-76%)
Mutual labels:  interoperability
Objective-CPP
C++ compatibility library for Objective-C - Objective-CPP is a library intended to ease software development using Objective-C++. It declares categories on Objective-C classes, to work with the STL C++ types, such as std::string, std::vector, etc.
Stars: ✭ 37 (-86.55%)
Mutual labels:  interoperability
speckle-server
The Speckle Server, Frontend, 3D Viewer, & other JS utilities.
Stars: ✭ 224 (-18.55%)
Mutual labels:  interoperability
linkedresearch.org
🌐 linkedresearch.org
Stars: ✭ 32 (-88.36%)
Mutual labels:  interoperability
speckle-qgis
QGIS Connector for Speckle 2.0
Stars: ✭ 17 (-93.82%)
Mutual labels:  interoperability
bnbridge.exchange
https://bnbridge.exchange
Stars: ✭ 43 (-84.36%)
Mutual labels:  interoperability
hashport-validator
Official repository containing the source code of the Hashport validators
Stars: ✭ 19 (-93.09%)
Mutual labels:  interoperability
syscoin
Syscoin is a crypto currency that is universally merge-mineable and offers a unique variety of services including decentralized identities, asset token issuance platform capabilities directly on the blockchain and trustless 0-counterparty interoptibility with the Ethereum blockchain
Stars: ✭ 152 (-44.73%)
Mutual labels:  interoperability
SEPA
Get notifications about changes in your SPARQL endpoint.
Stars: ✭ 21 (-92.36%)
Mutual labels:  interoperability
jni
V wrapper around the C Java Native Interface
Stars: ✭ 15 (-94.55%)
Mutual labels:  interoperability
force-bridge-eth
Decentralized, trustless bridge between Ethereum and Nervos.
Stars: ✭ 32 (-88.36%)
Mutual labels:  interoperability
speckle-unity
AEC Interoperability for Unity through Speckle
Stars: ✭ 28 (-89.82%)
Mutual labels:  interoperability
hxtsdgen
TypeScript declaration file generator for Haxe JavaScript output target
Stars: ✭ 60 (-78.18%)
Mutual labels:  interoperability
opendata
Finland national open data portal (avoindata.fi) source code.
Stars: ✭ 27 (-90.18%)
Mutual labels:  interoperability
keep-core
The smart contracts and reference client behind the Keep network
Stars: ✭ 87 (-68.36%)
Mutual labels:  interoperability
ethrelay
Ethereum smart contracts that enable the verification of transactions of a "target" blockchain on a different "verifying" blockchain in a trustless and decentralized way
Stars: ✭ 34 (-87.64%)
Mutual labels:  interoperability
NetteAdapterForSymfonyBundles
[DEPRECATED due to only 20 downloads per 2 years] Read an article about this idea
Stars: ✭ 15 (-94.55%)
Mutual labels:  interoperability
nxtp
Nxtp is a lightweight protocol for generalized crosschain transfers.
Stars: ✭ 129 (-53.09%)
Mutual labels:  interoperability
elements
Lovingly crafted ui components based on web components. Works well with all Frameworks - including Angular, React and Vue.
Stars: ✭ 42 (-84.73%)
Mutual labels:  interoperability
promise
Common interface for simple asynchronous placeholders.
Stars: ✭ 66 (-76%)
Mutual labels:  interoperability

SharpGenTools

Build Status MyGet Pre Release NuGet Docs codecov CodeFactor

Accurate and high performance C++ interop code generator for C#.

Features

  • Accurate, fast code-gen for C++ and COM interfaces from their C++ headers.
  • No dependencies on .NET Runtime COM support
  • Supports passing code-gen information through MSBuild project and package references
  • Pluggable Runtime Library Name and runtime support type names (default library is SharpGen.Runtime)
    • Projects that implement their own SharpGenTools runtime support classes can add mapping rules to ensure that their generated code uses their runtime support library.

Components in this Repo

  • SharpGen
    • The code-gen engine that runs CastXML to parse the C++ and then generates the C# interop code.
    • API for SharpGen SDK plugins, e.g. documentation providers.
  • SharpGenTools.Sdk
    • MSBuild tooling to integrate SharpGen directly into projects.
    • Build-time code generation plugin platform.
  • SharpGen.Runtime
    • Runtime support classes for code generated by SharpGen.

Requirements

To Use

  • SDK-style (CPS) MSBuild projects
  • .NET environment, at least one of the following:
    • .NET SDK (5 or newer)
    • .NET Core SDK (2.1 or newer)
    • Visual Studio 2017.3 with desktop .NET workload, .NET Framework 4.7.2 SDK or newer
  • Make any mapping files a SharpGenMapping item in your .csproj.

To Build

  • .NET SDK: 5.0 or newer.
  • CMake: 3.0 or newer.
  • SDK tests require x64 Windows, VS2019 with x86 and x64 C++ compilers, recent PowerShell version.

Nightly (CI) builds

Add SharpGenTools MyGet feed to your NuGet.config:

<configuration>
  <packageSources>
    <!-- ... -->
    <add key="SharpGenTools" value="https://www.myget.org/F/sharpgentools/api/v3/index.json" />
  </packageSources>
</configuration>
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].