https://github.com/kodraus/csharp-aot
Some examples of compiling C# ahead-of-time
https://github.com/kodraus/csharp-aot
csharp example
Last synced: 7 months ago
JSON representation
Some examples of compiling C# ahead-of-time
- Host: GitHub
- URL: https://github.com/kodraus/csharp-aot
- Owner: KodrAus
- License: mit
- Created: 2019-08-04T03:10:49.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-08-21T21:30:09.000Z (over 6 years ago)
- Last Synced: 2025-03-05T00:46:48.612Z (11 months ago)
- Topics: csharp, example
- Language: C#
- Size: 23.4 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# C# Ahead-of-time
Some examples of compiling C# ahead-of-time.
## `CoreCLR.JIT`
Just-in-time (JIT) compilation. This is what you get when you install the `dotnet` SDK and call `dotnet build`.
## `CoreCLR.ReadyToRun`
Pre-JIT compilation. The JIT is run ahead-of-time so there's less work to do when first starting your app, but uses the same [CoreCLR](https://github.com/dotnet/coreclr) runtime.
## `CoreRT.AOT`
Full ahead-of-time compilation with a specially optimized runtime called [CoreRT](https://github.com/dotnet/corert).
## `Startup`
A motivating example for ahead-of-time compilation using serverless workloads.