├── .gitignore ├── ILProj.sln ├── ILProj ├── Class.il ├── ILProj.ilproj └── include │ ├── netcoreapp │ └── coreassembly.h │ └── netstandard │ └── coreassembly.h ├── LICENSE ├── NuGet.config ├── README.md └── global.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konard/ILProj/HEAD/.gitignore -------------------------------------------------------------------------------- /ILProj.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konard/ILProj/HEAD/ILProj.sln -------------------------------------------------------------------------------- /ILProj/Class.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konard/ILProj/HEAD/ILProj/Class.il -------------------------------------------------------------------------------- /ILProj/ILProj.ilproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konard/ILProj/HEAD/ILProj/ILProj.ilproj -------------------------------------------------------------------------------- /ILProj/include/netcoreapp/coreassembly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konard/ILProj/HEAD/ILProj/include/netcoreapp/coreassembly.h -------------------------------------------------------------------------------- /ILProj/include/netstandard/coreassembly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konard/ILProj/HEAD/ILProj/include/netstandard/coreassembly.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konard/ILProj/HEAD/LICENSE -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konard/ILProj/HEAD/NuGet.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konard/ILProj/HEAD/README.md -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konard/ILProj/HEAD/global.json --------------------------------------------------------------------------------