An open API service indexing awesome lists of open source software.

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

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.