Embed dotnet core (.NET Core) in native Windows / Linux applications

Is it possible to embed dotnet kernel environments (.NET Core) in your own processes?

My use case would be an existing game server, where I want to offer the opportunity to extend the game using C # on .NET Core on both Windows and Linux.

Bonus question: is there also a AppDomain-conception, as in "oldschool" .NET?

+5
source share
2 answers

AppDomain dotnet. AppDomain api , , . , dotnet , dotnet.

0

, .

: .NET Core Hosting Tutorial

, " .NET Core".

AppDomains... , . CoreClrHost.h, AppDomain , , , AppDomain. . , AssemblyLoadContext .

0

Source: https://habr.com/ru/post/1662411/


All Articles