aqla.runsharp
0.2.0.1
See the version list below for details.
dotnet add package aqla.runsharp --version 0.2.0.1
NuGet\Install-Package aqla.runsharp -Version 0.2.0.1
<PackageReference Include="aqla.runsharp" Version="0.2.0.1" />
paket add aqla.runsharp --version 0.2.0.1
#r "nuget: aqla.runsharp, 0.2.0.1"
// Install aqla.runsharp as a Cake Addin #addin nuget:?package=aqla.runsharp&version=0.2.0.1 // Install aqla.runsharp as a Cake Tool #tool nuget:?package=aqla.runsharp&version=0.2.0.1
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).
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).
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net30 is compatible. |
This package has no dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on aqla.runsharp:
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). |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.23 | 817 | 1/1/2021 |
1.0.22 | 6,731 | 12/26/2020 |
1.0.21 | 418 | 12/26/2020 |
1.0.0.20 | 563 | 12/26/2020 |
1.0.0.19 | 3,895 | 5/30/2016 |
1.0.0.18 | 4,193 | 5/28/2016 |
1.0.0.17 | 2,056 | 5/6/2016 |
1.0.0.16 | 2,151 | 3/23/2016 |
1.0.0.15 | 1,058 | 3/6/2016 |
1.0.0 | 424 | 12/26/2020 |
0.2.0.5 | 1,232 | 1/14/2016 |
0.2.0.4 | 1,278 | 1/13/2016 |
0.2.0.3 | 1,088 | 1/13/2016 |
0.2.0.2 | 1,120 | 10/25/2015 |
0.2.0.1 | 1,636 | 10/25/2015 |
* 0.2.0.0 - initial fork release:
- added IKVM support
- examples converted to tests
- added peverify checks
- fixed multiple bugs