Skip to main content

netcorehost/bindings/
mod.rs

1extern crate coreclr_hosting_shared;
2
3/// Module for shared bindings for all hosting components.
4pub use coreclr_hosting_shared::*;
5
6/// Module containing the raw bindings for hostfxr.
7pub use hostfxr_sys as hostfxr;
8
9/// Module containing the raw bindings for nethost.
10#[cfg(feature = "nethost")]
11pub use nethost_sys as nethost;