use netcorehost::{nethost, pdcstr};
fn main() {
let hostfxr = nethost::load_hostfxr().unwrap();
let context = hostfxr
.initialize_for_dotnet_command_line(pdcstr!(
"examples/run-app/ExampleProject/bin/Debug/net10.0/ExampleProject.dll"
))
.unwrap();
context.run_app().as_hosting_exit_code().unwrap();
}