All Projects → segrived → Msiler

segrived / Msiler

Licence: MIT license
CIL (MSIL) Code Viewer Extension for Visual Studio 2017

Programming Languages

C#
18002 projects

Projects that are alternatives of or similar to Msiler

Graphql Rover
🚀 GraphQL + Vue.js + D3.js schema viewer, powered by introspection.
Stars: ✭ 239 (+856%)
Mutual labels:  viewer
goobi-viewer-core
Goobi viewer - Presentation software for digital libraries, museums, archives and galleries. Open Source.
Stars: ✭ 18 (-28%)
Mutual labels:  viewer
WindowTextExtractor
WindowTextExtractor allows you to get a text from any window of an operating system including asterisk passwords
Stars: ✭ 128 (+412%)
Mutual labels:  viewer
Vscode Data Preview
Data Preview 🈸 extension for importing 📤 viewing 🔎 slicing 🔪 dicing 🎲 charting 📊 & exporting 📥 large JSON array/config, YAML, Apache Arrow, Avro, Parquet & Excel data files
Stars: ✭ 245 (+880%)
Mutual labels:  viewer
ts3admin.class
The ts3admin.class is a powerful api for communication with Teamspeak 3 Servers from your website! Your creativity knows no bounds!
Stars: ✭ 107 (+328%)
Mutual labels:  viewer
pointcloud viewer
No description or website provided.
Stars: ✭ 16 (-36%)
Mutual labels:  viewer
Bootstrap Listr
Beautiful, responsive directory listings built upon Bootstrap
Stars: ✭ 231 (+824%)
Mutual labels:  viewer
models.autodesk.io
Authorization and file translation demo in Node.js : Translates your 2D/3D models online for the Forge Viewer without programming at all
Stars: ✭ 43 (+72%)
Mutual labels:  viewer
rPBR
Physically based rendering (PBR) for raylib
Stars: ✭ 72 (+188%)
Mutual labels:  viewer
D3hex
The first dataflow based Hex-Editor!
Stars: ✭ 45 (+80%)
Mutual labels:  viewer
vim-webgl-viewer
An easy to use online 3D model viewer based on Three.JS.
Stars: ✭ 41 (+64%)
Mutual labels:  viewer
viewer-javascript-extract.spreadsheet
Extract Revit Properties into Excel: This sample uses Model Derivative API endpoints to read a Revit project properties and create a XLSX Excel file with one sheet for each type/category with all objects on it
Stars: ✭ 35 (+40%)
Mutual labels:  viewer
react-viewer
Online EPUB/Comics viewer
Stars: ✭ 52 (+108%)
Mutual labels:  viewer
Quick Picture Viewer
🖼️ Lightweight, versatile desktop image viewer for Windows. The best replacement for the default Windows photo viewer.
Stars: ✭ 237 (+848%)
Mutual labels:  viewer
Simple-Data-Explorer
Simple Data Explorer
Stars: ✭ 37 (+48%)
Mutual labels:  viewer
Jquery Viewer
A jQuery plugin wrapper for Viewer.js.
Stars: ✭ 235 (+840%)
Mutual labels:  viewer
CilTools
A set of tools to work with CIL in .NET applications
Stars: ✭ 19 (-24%)
Mutual labels:  msil
android-3d-model-viewer
Android app to load 3D models in obj, stl, dae & gltf format using pure OpenGL ES 2.0. Published on Play Store https://play.google.com/store/apps/details?id=org.andresoviedo.dddmodel2
Stars: ✭ 150 (+500%)
Mutual labels:  viewer
oculante
A minimalistic crossplatform image viewer written in rust
Stars: ✭ 169 (+576%)
Mutual labels:  viewer
niivue
a WebGL2 based NIFTI volume viewer
Stars: ✭ 84 (+236%)
Mutual labels:  viewer

Msiler: CIL (MSIL) Code Viewer

CIL (MSIL) code viewer extension for Visual Studio 2017.

AppVeyor MyGet License Issues

Screenshot

Screenshot

Installation

You can install extension from Visual Studio Gallery or download from releases section and install manually.

Get latest build for Visual Studio 2017 (can be unstable)

Last build for Visual Studio 2012/2013/2015

Usage

Open tool window using menu item "Tools Msiler: MSIL Code Viewer" and build/rebuild project.

Options

Global options

  • Update listing only if toolbox is visible - if enabled, bytecode listing will be updated, only if Msiler windows is visible. It can be useful, because hidden Msiler window will not perform any actions. This feature should be disabled, if you has Msiler as background tab (for example), because in this case bytecode content will not be updated. (default: true)

User interface

  • Font name: Bytecode listing font name (default: Consolas)
  • Font size: Bytecode listing font size (default: 12)
  • Show line numbers: if enabled line numbers will be displayed (default: true)
  • VS Color theme: Visual studio color theme, bytecode listing highlighting will be adjusted based on this value (default: Auto)

Excluded methods

Some methods now can be excluded from method list:

  • Exclude getters/setters - if true, generated getters/setters (methods started with get_ or set_) will be excluded from method list (default: false)
  • Exclude anonymous methods - if true, anonymous methods (methods contains < and > characters in names) will be excluded from method list (default: false)
  • Exclude constructors - if true, contructors (.ctor methods) will be excluded from method list (default: false)

Listing generation options

  • Ignore NOPs - if true, extension will ignore all NOP instructions (0x00 bytes) (default: false)
  • Display numbers as HEX values - if true, numbers in listing will be displayed as hex values (for example 123 will be displayed as 0x7B) (default: false)
  • Display offsets as decimal numbers - if true, offsets in listing will be displayed as decimal numbers instead of HEX representation (IL_0427 will be shown as IL_01AB) (default: false)
  • Simplify function names - if true, function names will be simplified (experimental) (default: false)
  • Upcase OpCodes - if true, all OpCode names will be upcased (ldarg.0 will be displayed as LDARG.0) (default: false)
  • Align listing - if true, all instructions in listing will be aliged (default: false)

Example: With disabled option

IL_0010 brtrue.s IL_0026
IL_0012 call WTManager.ConfigManager.get_Preferences
IL_0017 callvirt WTManager.Preferences.get_EditorPath
IL_001C call System.IO.File.Exists
IL_0021 ldc.i4.0

With enabled option

IL_0010 brtrue.s   IL_0026
IL_0012 call       WTManager.ConfigManager.get_Preferences
IL_0017 callvirt   WTManager.Preferences.get_EditorPath
IL_001C call       System.IO.File.Exists
IL_0021 ldc.i4.0

Pull requests

Feel free to send pull requests.

Changelog

Version history

License

The MIT License (MIT)

Copyright (c) 2015-2018 segrived

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Credits

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].