Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/LADSoft/DotNetPELib
A C++11 library used to create a managed program (CIL) and dump to either .IL, .EXE, or .DLL format
https://github.com/LADSoft/DotNetPELib
assembly c-plus-plus library managed msil
Last synced: 3 months ago
JSON representation
A C++11 library used to create a managed program (CIL) and dump to either .IL, .EXE, or .DLL format
- Host: GitHub
- URL: https://github.com/LADSoft/DotNetPELib
- Owner: LADSoft
- License: other
- Created: 2016-10-29T08:56:25.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2024-05-05T13:19:02.000Z (6 months ago)
- Last Synced: 2024-05-05T14:29:08.406Z (6 months ago)
- Topics: assembly, c-plus-plus, library, managed, msil
- Language: C++
- Homepage:
- Size: 11.9 MB
- Stars: 53
- Watchers: 8
- Forks: 10
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog.txt
- License: copying
Awesome Lists containing this project
README
# DotNetPELib
DotNetPELib is a library which abstracts managed information such as namespaces, classes, fields, methods, properties, and instructions. The information can then be used to generate intermediate language source files, or PE executables or DLLs.
Build Status
[![Build status](https://ci.appveyor.com/api/projects/status/rtuxe2ef8w7udjda?svg=true)](https://ci.appveyor.com/project/LADSoft/dotnetpelib)The library has been tested as the backend for the OCCIL compiler, and is reasonably functional. That said this version of the library does have various limitations; not all aspects of the managed environment are enabled at this time.
In addition to being able to generate .net programs, version 2.0 of the library has support for importing managed assemblies, and strong names. See 'changelog.txt' for a full description of the changes.
Version 2.2 of the library introduces read/write of a simple object file format in the familiar object-file-per-module paradigm, along with a linker.
A simple test program is included which generates several example executables in both IL and EXE format.
The project files are for Visual Studio 2017 community edition. This source code does use some of the new features in C++11.