.NET工具集合
工具
(1) 代码分析
.NET Memory Profiler - http://memprofiler.com/
ANTS Profiler - http://www.red-gate.com/code_profiling.htm
dotTrace Profiler - http://www.jetbrains.com/profiler/
FxCop - http://www.gotdotnet.com/team/fxcop/
NDepend - http://www.ndepend.com/
(2) 编译发布
CCNet - http://ccnet.thoughtworks.com/
Draco.NET - http://draconet.sourceforge.net/
(3) 编译器
CS-Script - http://www.members.optusnet.com.au/~olegshilo/
Mono - http://www.mono-project.com/
Portable.NET - http://www.dotgnu.org/
SSCLI - http://www.microsoft.com/downloads/details.aspx?FamilyId=8C09FD61-3F26-4555-AE17-3121B4F51D4D&displaylang=en
(4) 调试器
WinDBG - http://www.microsoft.com/whdc/devtools/debugging/installx86.mspx
(5) 打包发布
Thinstall - http://www.thinstall.com/
(6) 反编译/破解
Lutz Roeder Reflector - http://www.aisto.com/roeder/dotnet/
.NET Reflector Add-Ins - http://www.codeplex.com/reflectoraddins
Asmex - http://www.jbrowse.com/products/asmex/
Dis# - .NET decompiler - http://www.netdecompiler.com/
Dotnet IL Editor - http://sourceforge.net/projects/dile
(7) 文档帮助
Sandcastle - http://www.codeplex.com/Sandcastle
Sandcastle Help File Builder - http://www.codeplex.com/SHFB
SandcastleGUI - http://www.inchl.nl/SandcastleGUI/
GhostDoc - http://www.roland-weigelt.de/ghostdoc/
(8) IDE 扩展
ReSharper - http://www.jetbrains.com/resharper/index.html
Visual Assit X - http://www.wholetomato.com/
(9) MSIL
(10) 混淆保护
.NET Reactor - http://www.eziriz.com/
.NETZ - http://madebits.com/netz/index.php
CliSecure - http://www.secureteam.net/
CodeVeil - http://www.xheo.com/products/codeveil/
DNGuard HVM - http://www.dnguard.cn/
MaxtoCode .NET - http://www.jinheng.net.cn/maxtocode/
Obfuscator.NET - http://www.macrobject.com/en/obfuscator/index.htm
Salamander - http://www.remotesoft.com/salamander/
Skater .NET Obfuscator - http://rustemsoft.com/Skater.htm
XenoCode - http://www.xenocode.com/
(11) 单元测试
MbUnit - http://www.mbunit.com/
NUnit - http://www.nunit.org/
TestDriven.NET - http://www.testdriven.net/
xUnit.net - http://www.codeplex.com/xunit
.NET工具集合的更多相关文章
- 统计和分析系统性能【IO CPU 内存】的工具集合
统计和分析系统性能[IO CPU 内存]的工具集合 blktrace http://www.oschina.net/p/blktrace 获取磁盘写入的信息 root@demo:~/install/p ...
- sublime开发php必备工具集合(mac)
sublime开发php必备工具集合(Mac) 相关链接:http://benmatselby.github.io/sublime-phpcs/ 目标: 直接在sublime中运行php代码 按PSR ...
- linux shell工具集合
1)判断进程是否存在,如果不存在再执行启动命令,可以避免一个脚本同时启动多份 if [ $(ps -ef |grep bastion_account.sh|grep -v grep|wc -l) - ...
- andorid 开放工具集合
1.开放工具集合 http://www.androiddevtools.cn/
- python爬虫工具集合
python爬虫工具集合 大家一起来整理吧!强烈建议PR.这是初稿,总是有很多问题,而且考虑不全面,希望大家支持! 源文件 主要针对python3 常用库 urllib Urllib是python提供 ...
- 一些日常工具集合(C++代码片段)
一些日常工具集合(C++代码片段) ——工欲善其事,必先利其器 尽管不会松松松,但是至少维持一个比较小的常数还是比较好的 在此之前依然要保证算法的正确性以及代码的可写性 本文依然会持久更新,因为一次写 ...
- Android开发免费类库和工具集合
用于Android开发的免费类库和工具集合,按目录分类. Action Bars ActionBarSherlock Extended ActionBar FadingActionBar GlassA ...
- 压力测试工具集合(ab,webbench,Siege,http_load,Web Application Stress)
压力测试工具集合(ab,webbench,Siege,http_load,Web Application Stress) 1 Apache附带的工具ab ab的全称是ApacheBench,是Apac ...
- ETH&EOS开发资源及工具集合(完整汇总版)
ETH&EOS开发资源及工具集合(完整汇总版) 3113 ETH开发资源篇 一.开发语言 · Solidity - 官方推荐以太坊智能合约开发语言,也是目前最为主流的智能合约语 ...
- 前端进阶(8) - 前端开发需要了解的工具集合:webpack, eslint, prettier, ...
前端开发需要了解的工具集合:webpack, eslint, prettier, ... 前端开发需要了解的一些工具,这些工具能够帮助你在项目开发中事半功倍. 1. nrm: npm registry ...
随机推荐
- Java中的sun.misc.Unsafe包
chronicle项目:https://github.com/peter-lawrey/Java-Chronicle 这个项目是利用mmap机制来实现高效的读写数据,号称每秒写入5到20百万条数据. ...
- Python3 串口模块移植并使用。
想通过 Python去控制串口模块,直接上层就使用一门语言,这样虽然执行效率低一些,但是开发速度加快 通过 buildroot 先移植 Python-serial 模块 x Symbol: BR2_P ...
- 接口与virtual,override,new关键字
一,类继承接口 1,首先我们定义一个简单的ITeacher接口,并定义一个Professor类继承它. public interface ITeacher { void Print(); } publ ...
- C#获取MySql 数据常用的代码
1.读取 public DataTable ExecuteDataTable(string SQLString) { using (MySqlConnection connection = new M ...
- TiKV 源码解析系列 - Raft 的优化
本系列文章主要面向 TiKV 社区开发者,重点介绍 TiKV 的系统架构,源码结构,流程解析.目的是使得开发者阅读之后,能对 TiKV 项目有一个初步了解,更好的参与进入 TiKV 的开发中.本文是本 ...
- springmvc搭建环境时报No mapping found for HTTP request with URI [/exam3/welcome] in DispatcherServlet with name 'spring2'
项目是使用spring MVC (1)在浏览器中访问,后台总报错: No mapping found for HTTP request with URI [/exam3/welcome] in Dis ...
- 微信小程序——极点日历使用方法
极点日历github项目地址 添加至自己的小程序方法 极点日历属性接口文档 代码实例: xml: <calendar calendar-style="calendar" he ...
- Qt安装过程中: configure 时发生的经典出错信息之”Basic XLib functionality test failed!”(Z..z..) 之 MySQL support cannot be enabled due to functionality test!
整出错信息是在./configure阶段Basic XLib functionality test failed!You might need to modify the include and li ...
- hashMap 根据已有知识知道的
public V put(K key, V value) { //假如table为空 if (table == EMPTY_TABLE) { inflateTable(threshold); } // ...
- C语言课程设计-保安值班系统支持任意输入保安值班时间
//.cpp : Defines the entry point for the console application. // #include "string.h" #incl ...