netcorehost 0.20.1

A Rust library for hosting the .NET Core runtime.
Documentation
1
2
3
4
5
6
7
8
9
10
11
extern crate coreclr_hosting_shared;

/// Module for shared bindings for all hosting components.
pub use coreclr_hosting_shared::*;

/// Module containing the raw bindings for hostfxr.
pub use hostfxr_sys as hostfxr;

/// Module containing the raw bindings for nethost.
#[cfg(feature = "nethost")]
pub use nethost_sys as nethost;