<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>SharpToolbox Latest Updates</title>
    <link>http://sharptoolbox.com/</link>
    <description>List of the latest updated tools on SharpToolbox.com</description>
    <managingEditor>info@NOSharpToolboxSPAM.com</managingEditor>
    <webMaster>info@NOSharpToolboxSPAM.com</webMaster>
    <language>en</language>
    <copyright>Fabrice Marguerie</copyright>
    <pubDate>Thu, 21 Aug 2008 13:30:33 GMT</pubDate>
    <lastBuildDate>Thu, 21 Aug 2008 13:30:33 GMT</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>http://sharptoolbox.com/App_Themes/Theme1/LogoForRss.png</url>
      <title>SharpToolbox Latest Updates</title>
      <link>http://sharptoolbox.com/</link>
    </image>
    <item>
      <title>StyleCop</title>
      <link>http://sharptoolbox.com/tools/source-analysis-for-csharp</link>
      <guid>http://sharptoolbox.com/tools/source-analysis-for-csharp</guid>
      <category>Code analysis - Standards verifiers</category>
      <pubDate>Thu, 21 Aug 2008 11:43:21 GMT</pubDate>
      <description>&lt;p&gt;StyleCop, also known as Source Analysis, analyzes C# source code to enforce a set of best practice style and consistency rules.
&lt;br /&gt;&lt;br /&gt;Source Analysis is similar in many ways to FxCop, but FxCop performs its analysis on compiled binaries, while Source Analysis analyzes the source code directly. For this reason, FxCop focuses more on the design of the code, while Source Analysis focuses on layout, readability and documentation. Most of that information is stripped away during the compilation process, and thus cannot be analyzed by FxCop.
&lt;br /&gt;&lt;br /&gt;Source Analysis comes with a set of default rules analyzers covering approximately 200 best practice rules. These rules are full compatible with the default layout settings in Visual Studio 2005 and Visual Studio 2008.
&lt;br /&gt;&lt;br /&gt;Specifically, these rules cover the following, in no particular order:
&lt;br /&gt;- Layout of elements, statements, expressions, and query clauses
&lt;br /&gt;- Placement of curly brackets, parenthesis, square brackets, etc
&lt;br /&gt;- Spacing around keywords and operator symbols
&lt;br /&gt;- Line spacing
&lt;br /&gt;- Placement of method parameters within method declarations or method calls
&lt;br /&gt;- Standard ordering of elements within a class
&lt;br /&gt;- Formatting of documentation within element headers and file headers
&lt;br /&gt;- Naming of elements, fields and variables
&lt;br /&gt;- Use of the built-in types
&lt;br /&gt;- Use of access modifiers
&lt;br /&gt;- Allowed contents of files
&lt;br /&gt;- Debugging text
&lt;br /&gt;&lt;br /&gt;After installation, Source Analysis can be run from within the Visual Studio IDE, and can also be integrated into MSBuild-based command line builds.&lt;/p&gt;&lt;p&gt;
          Categories:
          &lt;ul&gt;&lt;li&gt;&lt;a href="http://sharptoolbox.com/categories/code-analysers-standards-verifiers"&gt;Code analysis - Standards verifiers&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://sharptoolbox.com/tools/source-analysis-for-csharp"&gt;more about StyleCop&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>FxCop</title>
      <link>http://sharptoolbox.com/tools/fxcop</link>
      <guid>http://sharptoolbox.com/tools/fxcop</guid>
      <category>Code analysis - Standards verifiers</category>
      <pubDate>Thu, 21 Aug 2008 10:47:37 GMT</pubDate>
      <description>&lt;p&gt;Code analysis tool that checks .NET assemblies for conformance to the Microsoft .NET Framework Design Guidelines.
&lt;br /&gt;FxCop uses MSIL parsing, and callgraph analysis to inspect assemblies for more than 200 defects in the following areas: library design, globalization, naming conventions, performance, interoperability and portability, security and usage.
&lt;br /&gt;&lt;br /&gt;Features include:
&lt;br /&gt;- GUI and command line versions
&lt;br /&gt;- SDK to create your own rules
&lt;br /&gt;- Supports analyzing .NET 1.x, .NET 2.0 and .NET 3.x components
&lt;br /&gt;- Provides support for .NET 3.5 SP1&lt;/p&gt;&lt;p&gt;
          Categories:
          &lt;ul&gt;&lt;li&gt;&lt;a href="http://sharptoolbox.com/categories/code-analysers-standards-verifiers"&gt;Code analysis - Standards verifiers&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://sharptoolbox.com/tools/fxcop"&gt;more about FxCop&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Typemock Isolator</title>
      <link>http://sharptoolbox.com/tools/typemock-net</link>
      <guid>http://sharptoolbox.com/tools/typemock-net</guid>
      <category>Testing</category>
      <pubDate>Thu, 21 Aug 2008 10:40:17 GMT</pubDate>
      <description>&lt;p&gt;Mocking framework that enables any .NET type to be isolated for being unit tested and functionally verified. In addition, any already written legacy code or third party component can be isolated and consequently complex and cross components logic and can be performed.
&lt;br /&gt;&lt;br /&gt;Features include:
&lt;br /&gt;- Ability to mock any concrete class and all members: public, protected, private, virtual, non-virtual, constructors and sealed
&lt;br /&gt;- Mocking takes place on the fly, working on your production assemblies
&lt;br /&gt;- Expectation recording
&lt;br /&gt;- Refactoring and IntelliSense support using Natural Mocks
&lt;br /&gt;- Built-in argument checks
&lt;br /&gt;- Supports ref and out arguments
&lt;br /&gt;- Allows arbitrary calls, or reject any method calls that weren't explicitly expected
&lt;br /&gt;- Enables you to specify sequenced and default return values and exceptions
&lt;br /&gt;- Support for properties and indexes
&lt;br /&gt;- Verify mode, to verify arguments without mocking the code
&lt;br /&gt;- Ability to specify dynamic return values based on passed arguments
&lt;br /&gt;- Enables you to validate the arguments passed to the mocked types
&lt;br /&gt;- Specify custom checking of arguments
&lt;br /&gt;- Arrange Act Assert API (AAA)
&lt;br /&gt;- Supports .NET 1.1, 2.0, 3.0 and 3.5
&lt;br /&gt;- Synergy with Finalbuilder and DotTracer
&lt;br /&gt;&lt;br /&gt;Previous name: TypeMock.NET&lt;/p&gt;&lt;p&gt;
          Categories:
          &lt;ul&gt;&lt;li&gt;&lt;a href="http://sharptoolbox.com/categories/tests"&gt;Testing&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://sharptoolbox.com/tools/typemock-net"&gt;more about Typemock Isolator&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>CodeSmith</title>
      <link>http://sharptoolbox.com/tools/codesmith</link>
      <guid>http://sharptoolbox.com/tools/codesmith</guid>
      <category>Code generation</category>
      <pubDate>Wed, 20 Aug 2008 13:09:25 GMT</pubDate>
      <description>&lt;p&gt;Template based code generator for any ASCII-based language.
&lt;br /&gt;CodeSmith templates use a syntax nearly identical to ASP.NET. The code generated can be customized by the use of properties. CodeSmith comes with an integrated template development environment, an extensible metadata system that includes database schema and XML sources standard, and statement completion to help building custom templates.
&lt;br /&gt;&lt;br /&gt;Features include:
&lt;br /&gt;- Execute custom templates
&lt;br /&gt;- Extensible metadata
&lt;br /&gt;- SchemaExplorer schema discovery API
&lt;br /&gt;- XML support
&lt;br /&gt;- Sub-template support; Sample templates; Template caching
&lt;br /&gt;- Console client
&lt;br /&gt;- CodeSmith Explorer GUI client; CodeSmith Studio IDE
&lt;br /&gt;- Visual Studio 2003, 2005 and 2008 integration
&lt;br /&gt;- CodeSmith API
&lt;br /&gt;- Merging support
&lt;br /&gt;- Batch code generation
&lt;br /&gt;- MSBuild support
&lt;br /&gt;- ActiveSnippets: like Visual Studio 2005 snippets, but with the power of CodeSmith available to execute any logic or access any metadata to control the output of your snippets
&lt;br /&gt;- CodeSmith Maps: allows you to create dictionary style maps of things like SQL to C# data type mappings
&lt;br /&gt;- Templates for .netTiers, NHibernate, PLINQO, NuSoft Framework&lt;/p&gt;&lt;p&gt;
          Categories:
          &lt;ul&gt;&lt;li&gt;&lt;a href="http://sharptoolbox.com/categories/code-generators"&gt;Code generation&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://sharptoolbox.com/tools/codesmith"&gt;more about CodeSmith&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>RGreatEx</title>
      <link>http://sharptoolbox.com/tools/rgreatex</link>
      <guid>http://sharptoolbox.com/tools/rgreatex</guid>
      <category>Refactoring</category>
      <category>Localization</category>
      <category>IDEs - IDE add-ins</category>
      <pubDate>Sat, 16 Aug 2008 12:32:49 GMT</pubDate>
      <description>&lt;p&gt;Extends ReSharper with a number of features related to application localization, globalization and resources.
&lt;br /&gt;RGreatEx provides resource refactorings like "Move string to resource" and "Rename resource", analyzes string literal usages and suggests moving them to resources, adds context actions for string manipulation, generates safer resx code wrapper, and more.
&lt;br /&gt;&lt;br /&gt;Features include:
&lt;br /&gt;- Context actions
&lt;br /&gt;- Highlightings
&lt;br /&gt;- Refactoring methods
&lt;br /&gt;- Custom tools
&lt;br /&gt;- Options
&lt;br /&gt;- Supported languages: C#, VB.NET, ASP.NET&lt;/p&gt;&lt;p&gt;
          Categories:
          &lt;ul&gt;&lt;li&gt;&lt;a href="http://sharptoolbox.com/categories/refactoring"&gt;Refactoring&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://sharptoolbox.com/categories/localization"&gt;Localization&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://sharptoolbox.com/categories/ide-add-ins"&gt;IDEs - IDE add-ins&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://sharptoolbox.com/tools/rgreatex"&gt;more about RGreatEx&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>SmartInspect</title>
      <link>http://sharptoolbox.com/tools/smartinspect</link>
      <guid>http://sharptoolbox.com/tools/smartinspect</guid>
      <category>Tracing - Logging - Monitoring</category>
      <pubDate>Sat, 16 Aug 2008 12:26:09 GMT</pubDate>
      <description>&lt;p&gt;Logging tool for debugging and monitoring .NET, Java, and Delphi applications.
&lt;br /&gt;SmartInspect helps you to identify bugs, find solutions to customer problems and gives you an understanding of how your software works in different environments and under different circumstances.
&lt;br /&gt;&lt;br /&gt;Features include:
&lt;br /&gt;- Native logging libraries for .NET, Java, and Delphi
&lt;br /&gt;- Log messages, errors, objects, source code, files and more
&lt;br /&gt;- Full source code of libraries included
&lt;br /&gt;- Viewer application for analyzing the logging information
&lt;br /&gt;- Monitor multiple threads, multiple processes and distributed systems
&lt;br /&gt;- Support for TCP/IP and log files
&lt;br /&gt;- Support for log rotation
&lt;br /&gt;- Redistributable console
&lt;br /&gt;- Enable and disable logging per session
&lt;br /&gt;- Code templates and snippets
&lt;br /&gt;- Integration with Visual Studio 2002/2003/2005/2008, Delphi 6/7/8/2005/2006/2007, C++Builder 2006/2007, C#Builder 1/2006, JBuilder X/2005/2007, Eclipse 3.0/3.1/3.2/3.3&lt;/p&gt;&lt;p&gt;
          Categories:
          &lt;ul&gt;&lt;li&gt;&lt;a href="http://sharptoolbox.com/categories/tracing-logging-monitoring"&gt;Tracing - Logging - Monitoring&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://sharptoolbox.com/tools/smartinspect"&gt;more about SmartInspect&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>ANTS Profiler</title>
      <link>http://sharptoolbox.com/tools/ants-profiler</link>
      <guid>http://sharptoolbox.com/tools/ants-profiler</guid>
      <category>Profiling - Debugging</category>
      <pubDate>Thu, 07 Aug 2008 16:41:07 GMT</pubDate>
      <description>&lt;p&gt;Identifies performance bottlenecks in applications written in any of the languages available on the .NET Framework.
&lt;br /&gt;To code profile your application, you use your application as normal, while running ANTS Profiler. ANTS Profiler then records the frequency and time spent in each line of your code, as you are using your application, and displays the results in a variety of formats.
&lt;br /&gt;&lt;br /&gt;Features include:
&lt;br /&gt;- Profile application memory use
&lt;br /&gt;- Profile both .NET desktop applications and ASP.NET web applications
&lt;br /&gt;- Memory profiling
&lt;br /&gt;- Snapshots and resetting the profiler
&lt;br /&gt;- Save results to HTML or XML
&lt;br /&gt;- Ready for Windows Vista&lt;/p&gt;&lt;p&gt;
          Categories:
          &lt;ul&gt;&lt;li&gt;&lt;a href="http://sharptoolbox.com/categories/profilers-debuggers"&gt;Profiling - Debugging&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://sharptoolbox.com/tools/ants-profiler"&gt;more about ANTS Profiler&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>IntelliCommands</title>
      <link>http://sharptoolbox.com/tools/smarties-2008</link>
      <guid>http://sharptoolbox.com/tools/smarties-2008</guid>
      <category>Refactoring</category>
      <category>IDEs - IDE add-ins</category>
      <pubDate>Tue, 29 Jul 2008 23:41:59 GMT</pubDate>
      <description>&lt;p&gt;Add-in for Visual Studio 2005 and 2008 with features such as Refactor Commands, Region Commands, Data Commands, and Interfaces.
&lt;br /&gt;&lt;br /&gt;Features include:
&lt;br /&gt;- Region Commands: organises members within designated #region directives
&lt;br /&gt;- Refactorings: Proxy Type, Comparer Type, Sortable Collection Type, Field Encapsulations, and more
&lt;br /&gt;- Data Commands: Business Object Generator, Virtual Business Object Generator, Xmlize Type
&lt;br /&gt;- Interfaces: IDisposable, ISerializable, ICloneable, IComparer, IComparable
&lt;br /&gt;- Miscellaneous tools: Hex Tool, Encryption Key Tool...
&lt;br /&gt;- Support for C# and VB
&lt;br /&gt;&lt;br /&gt;Previous name: Smarties 2008&lt;/p&gt;&lt;p&gt;
          Categories:
          &lt;ul&gt;&lt;li&gt;&lt;a href="http://sharptoolbox.com/categories/refactoring"&gt;Refactoring&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://sharptoolbox.com/categories/ide-add-ins"&gt;IDEs - IDE add-ins&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://sharptoolbox.com/tools/smarties-2008"&gt;more about IntelliCommands&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>LightSpeed</title>
      <link>http://sharptoolbox.com/tools/lightspeed</link>
      <guid>http://sharptoolbox.com/tools/lightspeed</guid>
      <category>Object-relational mapping</category>
      <pubDate>Wed, 23 Jul 2008 11:56:21 GMT</pubDate>
      <description>&lt;p&gt;Convention-over-configuration based domain model framework.
&lt;br /&gt;LightSpeed employs patterns from domain-driven design such as Repository, Unit of Work and Value Object.
&lt;br /&gt;&lt;br /&gt;Features include:
&lt;br /&gt;- Convention over configuration: no mapping files and minimal attributes
&lt;br /&gt;- Supports idiomatic .NET domain models: Validation, data binding, property change notification
&lt;br /&gt;- Uses LCG instead of reflection and smart query batching for performance
&lt;br /&gt;- Employs best practice patterns: Session-per-request, Unit of Work, etc.
&lt;br /&gt;- Supports caching including memcached
&lt;br /&gt;- Supports single table inheritance, value objects, generics, nullable types, optimistic concurrency and System.Transactions
&lt;br /&gt;- Database support for SQL Server, Oracle, MySQL, PostgreSQL and SQLite
&lt;br /&gt;- Full LINQ support to all supported databases
&lt;br /&gt;- Designed with testability in mind
&lt;br /&gt;- Soft Delete so that data is never deleted, just marked as deleted
&lt;br /&gt;- Polymorphic querying: querying types in your inheritance hierarchy made easier
&lt;br /&gt;- Support for nested units of work
&lt;br /&gt;- Debug Visualizer to aid generated SQL inspection
&lt;br /&gt;- Support for projections
&lt;br /&gt;- Visual Studio 2008 designer for modeling entities with database round tripping support
&lt;br /&gt;&lt;br /&gt;A free express version of LightSpeed is available.&lt;/p&gt;&lt;p&gt;
          Categories:
          &lt;ul&gt;&lt;li&gt;&lt;a href="http://sharptoolbox.com/categories/object-relational-mappers"&gt;Object-relational mapping&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://sharptoolbox.com/tools/lightspeed"&gt;more about LightSpeed&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Iron Speed Designer</title>
      <link>http://sharptoolbox.com/tools/iron-speed-designer</link>
      <guid>http://sharptoolbox.com/tools/iron-speed-designer</guid>
      <category>RAD - Dev automation</category>
      <category>Persistence - Data-tier</category>
      <pubDate>Thu, 17 Jul 2008 23:01:48 GMT</pubDate>
      <description>&lt;p&gt;Application generator for building n-tier .NET web applications.
&lt;br /&gt;Iron Speed Designer works by translating a declarative description of your application into a working n-tier application with well-partitioned service layers including: the presentation layer, the application layer, the database layer.
&lt;br /&gt;Iron Speed Designer guides you through all the steps: selecting database tables, creating Web pages, adding page controls, and customizing the resulting application.
&lt;br /&gt;&lt;br /&gt;Features include:
&lt;br /&gt;- Web page editing and customization
&lt;br /&gt;- Support for third-party controls
&lt;br /&gt;- Code customization
&lt;br /&gt;- Support for Visual Studio 2003, 2005 and 2008
&lt;br /&gt;- Support for C# and VB.NET
&lt;br /&gt;- Support for Microsoft Access, SQL Server 7/2000/2005, MSDE 2000, Oracle 9i and 10g, MySQL 5.0 and 5.1
&lt;br /&gt;&lt;br /&gt;Features for generated applications:
&lt;br /&gt;- Custom page layout
&lt;br /&gt;- Filtering, sorting and navigation
&lt;br /&gt;- Internationalization &amp;amp; Localization
&lt;br /&gt;- Source code generation&lt;/p&gt;&lt;p&gt;
          Categories:
          &lt;ul&gt;&lt;li&gt;&lt;a href="http://sharptoolbox.com/categories/rad-dev-automation"&gt;RAD - Dev automation&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://sharptoolbox.com/categories/persistence-data-tier"&gt;Persistence - Data-tier&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://sharptoolbox.com/tools/iron-speed-designer"&gt;more about Iron Speed Designer&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>VisualSVN</title>
      <link>http://sharptoolbox.com/tools/visualsvn</link>
      <guid>http://sharptoolbox.com/tools/visualsvn</guid>
      <category>Code versioning - Source control</category>
      <pubDate>Sat, 05 Jul 2008 21:08:58 GMT</pubDate>
      <description>&lt;p&gt;Subversion (SVN) integration for Visual Studio 2003, 2005 and 2008.
&lt;br /&gt;&lt;br /&gt;Features include:
&lt;br /&gt;- Transparent file operations: VisualSVN catches add, rename and delete operations in Visual Studio and translates them into correct Subversion commands transparently.
&lt;br /&gt;- Status icons: VisualSVN shows the status of your files and folders inside Visual Studio's Solution Explorer.
&lt;br /&gt;- Subversion commands: VisualSVN provides access to the most useful Subversion commands at places you need them.&lt;/p&gt;&lt;p&gt;
          Categories:
          &lt;ul&gt;&lt;li&gt;&lt;a href="http://sharptoolbox.com/categories/code-versioning-source-control"&gt;Code versioning - Source control&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://sharptoolbox.com/tools/visualsvn"&gt;more about VisualSVN&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>moq</title>
      <link>http://sharptoolbox.com/tools/moq</link>
      <guid>http://sharptoolbox.com/tools/moq</guid>
      <category>Testing</category>
      <pubDate>Sat, 05 Jul 2008 13:20:58 GMT</pubDate>
      <description>&lt;p&gt;Mocking library for developed from scratch to take advantage of .NET 3.5 (e.g. LINQ expression trees) and C# 3.0 features (e.g. lambda expressions).
&lt;br /&gt;&lt;br /&gt;Features include:
&lt;br /&gt;- Strongly-typed: no strings for expectations, no object-typed return values or constraints
&lt;br /&gt;- VS intellisense integration: everything supports full VS intellisense, from setting expectations, to specifying method call arguments, return values, etc.
&lt;br /&gt;- No Record/Reply idioms to learn. Just construct your mock, set your expectations, use it and optionally verify them.
&lt;br /&gt;- Granular control over mock behavior with a simple enumeration.
&lt;br /&gt;- Mock both interfaces and classes.
&lt;br /&gt;- Override expectations: can set default expectations in a fixture setup, and override as needed on tests.
&lt;br /&gt;- Pass constructor arguments for mocked classes.
&lt;br /&gt;- Deep MarshalByRefObject support: constructs underlying proxied object, and passes calls down to it if there are no expectations overriding them. Useful for Windows Forms controls and other System.ComponentModel.Component-derived classes.&lt;/p&gt;&lt;p&gt;
          Categories:
          &lt;ul&gt;&lt;li&gt;&lt;a href="http://sharptoolbox.com/categories/tests"&gt;Testing&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://sharptoolbox.com/tools/moq"&gt;more about moq&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Tree Surgeon</title>
      <link>http://sharptoolbox.com/tools/tree-surgeon</link>
      <guid>http://sharptoolbox.com/tools/tree-surgeon</guid>
      <category>RAD - Dev automation</category>
      <pubDate>Tue, 01 Jul 2008 16:57:11 GMT</pubDate>
      <description>&lt;p&gt;.NET development tree generator.
&lt;br /&gt;Tree Surgeon sets up development trees using a set of best practices. Just give it the name of your project, and it will set up a development tree for you.
&lt;br /&gt;A development tree is a folder preconfigured for the development of a new project with Visual Studio (2003, 2005, 2008) solution and projects, as well as projects for builds (NAnt), unit tests (NUnit), code coverage (NCover), etc.&lt;/p&gt;&lt;p&gt;
          Categories:
          &lt;ul&gt;&lt;li&gt;&lt;a href="http://sharptoolbox.com/categories/rad-dev-automation"&gt;RAD - Dev automation&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://sharptoolbox.com/tools/tree-surgeon"&gt;more about Tree Surgeon&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>ReSharper</title>
      <link>http://sharptoolbox.com/tools/resharper</link>
      <guid>http://sharptoolbox.com/tools/resharper</guid>
      <category>Testing</category>
      <category>Refactoring</category>
      <category>IDEs - IDE add-ins</category>
      <pubDate>Wed, 11 Jun 2008 16:59:24 GMT</pubDate>
      <description>&lt;p&gt;Add-in for Visual Studio that provides C# and VB.NET coding assistance, on-the-fly error highlighting and quick error correction, as well as support for code refactoring or unit testing features.
&lt;br /&gt;&lt;br /&gt;Features include:
&lt;br /&gt;- Syntax and error highlighting
&lt;br /&gt;- Error quick-fixes
&lt;br /&gt;- Refactoring
&lt;br /&gt;- Navigation
&lt;br /&gt;- Code assistance, code completion, code formatting
&lt;br /&gt;- Code generation
&lt;br /&gt;- Search
&lt;br /&gt;- Live templates
&lt;br /&gt;- ASP.NET editing
&lt;br /&gt;- NAnt and MSBuild scripts editing
&lt;br /&gt;- Supports Visual Studio 2008/2005/2003, C# (up to version 3), VB.NET (up to version 8)&lt;/p&gt;&lt;p&gt;
          Categories:
          &lt;ul&gt;&lt;li&gt;&lt;a href="http://sharptoolbox.com/categories/tests"&gt;Testing&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://sharptoolbox.com/categories/refactoring"&gt;Refactoring&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://sharptoolbox.com/categories/ide-add-ins"&gt;IDEs - IDE add-ins&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://sharptoolbox.com/tools/resharper"&gt;more about ReSharper&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>BizBlox</title>
      <link>http://sharptoolbox.com/tools/bizblox</link>
      <guid>http://sharptoolbox.com/tools/bizblox</guid>
      <category>Object-relational mapping</category>
      <pubDate>Tue, 03 Jun 2008 09:18:30 GMT</pubDate>
      <description>&lt;p&gt;Toolkit for object/relational mapping.
&lt;br /&gt;&lt;br /&gt;Features include:
&lt;br /&gt;- Bundled BizBlox Builder tool reads your SQL Scripts to create your data (entity) classes and finder classes. SQL scripts can be generated from the SQL Server 2000 Enterprise Manager or hand written.
&lt;br /&gt;- Code synchronization so you can import changes to your schema back in to the code without affecting your code changes or finder methods.
&lt;br /&gt;- Uses ADO.NET with caching techniques.
&lt;br /&gt;- Provides support for transactions.
&lt;br /&gt;- Query library and built in multi language - multi character-set search engine. No need to write SQL again.
&lt;br /&gt;- Includes NUnit test suite source code for validation and code examples.&lt;/p&gt;&lt;p&gt;
          Categories:
          &lt;ul&gt;&lt;li&gt;&lt;a href="http://sharptoolbox.com/categories/object-relational-mappers"&gt;Object-relational mapping&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://sharptoolbox.com/tools/bizblox"&gt;more about BizBlox&lt;/a&gt;&lt;/p&gt;</description>
    </item>
  </channel>
</rss>