<Date: 2010-05-14>
<Author: medcl>
<Category: .NET, 资源分享>

Sandcastle, created by Microsoft, is a tool used for creating MSDN-style documentation from .NET assemblies and their associated XML comments files. The current version is the May 2008 release. It is command line based and has no GUI front-end, project management features, or an automated build process like those that you can find in NDoc. The Sandcastle Help File Builder was created to fill in the gaps, provide the missing NDoc-like features that are used most often, and provide graphical and command line based tools to build a help file in an automated fashion.
Base: http://sandcastle.codeplex.com/
GUI: http://shfb.codeplex.com/
第一步,设置

第二步,我build

第三步,查看结果了



本文来自: .net api文档生成工具,Sandcastle
<Date: 2010-05-12>
<Author: medcl>
<Category: .NET>
Eazfuscator.NET是一个免费的NET混淆工具。
Eazfuscator.NET is a free obfuscator for .NET platform. The main purpose of obfuscator is to protect intellectual property of the software
最新版:Version 2.8 released on April 13, 2010
Download setup

本文来自: Eazfuscator.NET
<Date: 2010-03-10>
<Author: medcl>
<Category: .NET>
CCNET build报的错
D:\WINDOWS\Microsoft.NET\Framework\v3.5\Microsoft.Common.targets (1783,7): errorMSB3323: Unable to find manifest signing certificate in the certificate store.
解决办法,如下,工程属性,singing选项卡,去掉ClickOne的钩即可。


本文来自: errorMSB3323: Unable to find manifest signing certificate in the certificate store.
<Date: 2010-01-04>
<Author: medcl>
<Category: 小道消息>
WebClient wc =new WebClient();
wc.Proxy =WebRequest.GetSystemWebProxy();
HttpWebRequest req = (HttpWebRequest)WebRequest.CreateDefault(newUri("http://medcl.net/"));
req.Proxy =WebRequest.GetSystemWebProxy();

本文来自: .net 使用浏览器代理设置