Lokad.ILPack
0.2.0
Prefix Reserved
dotnet add package Lokad.ILPack --version 0.2.0
NuGet\Install-Package Lokad.ILPack -Version 0.2.0
<PackageReference Include="Lokad.ILPack" Version="0.2.0" />
paket add Lokad.ILPack --version 0.2.0
#r "nuget: Lokad.ILPack, 0.2.0"
// Install Lokad.ILPack as a Cake Addin #addin nuget:?package=Lokad.ILPack&version=0.2.0 // Install Lokad.ILPack as a Cake Tool #tool nuget:?package=Lokad.ILPack&version=0.2.0
Exports a .NET type to a serialized assembly, with support for dynamic
assemblies (i.e. custom IL generation). This library is intended as a
drop-in replacement for the AssemblyBuilder.Save
method which existed
since .NET 1.1 but that has not been ported to .NET Core 3.0.
var assembly = Assembly.GetAssembly(t);
var generator = new Lokad.ILPack.AssemblyGenerator();
// for ad-hoc serialization
var bytes = generator.GenerateAssemblyBytes(assembly);
// direct serialization to disk
generator.GenerateAssembly(assembly, "/path/to/file");
Released under the MIT license.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- System.Reflection.Emit (>= 4.7.0)
- System.Reflection.Emit.Lightweight (>= 4.7.0)
- System.Reflection.Metadata (>= 6.0.1)
NuGet packages (11)
Showing the top 5 NuGet packages that depend on Lokad.ILPack:
Package | Downloads |
---|---|
aqlaserializer
AqlaSerializer is intended to serialize objects, not just data. What the difference? Data serializers don't care much about language runtime specifics like references, inheritance, etc. In contrast, an object serializer should take such things into account. AqlaSerializer primary goal is to support important .NET features like nested collections, multi-dimensional arrays, references, etc. And it still supports Google Protocol Buffers format. Like protobuf-net AqlaSerializer makes possible to store objects as a small in size binary data (far smaller than xml). And it's more CPU effective than BinaryFormatter and other core .NET serializers (which could be unavailable on your target platform). Its format is designed to be: small in size - efficient data storage (far smaller than xml) cheap to process - both at the client and server platform independent - portable between different programming architectures extensible - to add new data to old messages. The implementation is compatible with most of the .NET family, including .NET 3.5/4.0/4.5, .NET Standard 2.1 (.NET Core 3/3.1, .NET 5, .NET 6), Windows Phone 8, Silverlight 5, Android, iOS, UAP. The code is heavily based on Marc Gravell's protobuf-net but there are a lot of improvements and fixes. The original protobuf-net project contains many "red" unit tests but I managed to fix a lot of them. Some build configurations may be not available through nuget, you can download their binaries manually from github (use Project Site link). |
|
h5.Compiler.Service
C# to JavaScript compiler-as-a-service 🚀 |
|
aqla.runsharp
RunSharp is a runtime IL generator based on Reflection.Emit and IKVM which allows you to emit IL in a way similar to writing normal C# code. It's a layer above the standard .NET Reflection.Emit API, allowing to generate/compile dynamic code at runtime very quickly and efficiently (unlike using CodeDOM and invoking the C# compiler). Platforms: * .NET Standard 2.1 (including .NET Core 3 and .NET 5) * .NET 2.0 and higher including .NET 4 (also IKVM version available) * Windows Phone 8 * Silverlight 5 The IKVM version has also an ability to emit NET 2.0 and .NET 4.0 assemblies (while running on, for example, .NET 3.0). This package is a fork of TriAxis.RunSharp (the original is now abandoned). |
|
Ultz.SuperInvoke.AOT
SuperTools is an advanced set of libraries to aid low-level development in C#. This package provides extension methods for saving SuperInvoke implementations to disk. |
|
Khaos.Avalanche
Package Description |
GitHub repositories (5)
Showing the top 5 popular GitHub repositories that depend on Lokad.ILPack:
Repository | Stars |
---|---|
pardeike/Harmony
A library for patching, replacing and decorating .NET and Mono methods during runtime
|
|
BepInEx/HarmonyX
Harmony built on top of MonoMod.RuntimeDetours with additional features
|
|
mcneel/rhino.inside-revit
This is the open-source repository for Rhino.Inside®.Revit
|
|
curiosity-ai/h5
🚀 The next generation C# to JavaScript compiler
|
|
Kation/ComBoost
ComBoost是一个领域驱动的快速开发框架
|