Unit testing with NUnit and Visual Studio 2005 (MSUnit)
On my current project we are developing a windows forms application in Visual Studio 2005. We are still using CruiseControl.NET for continuous integration and unit testing, because setting up a team...
View ArticleVisual Studio 2005 SP1
Microsoft announces on the msdn site that service pack 1 for Visual Studio 2005 will appear around Q3 of 2006.
View ArticleVisual Studio DSL/GAT – How to load a DSL model
On IStaySharp.NET I created an article that shows you, how you can load a DSL file. This is necessary if you need to access your model from GAT, a Visual Studio AddIn, custom library, etc. The last...
View ArticleVisual Studio .NET Macro for nesting project items
This macro enables you to nest project items inside Visual Studio .NET. Until now, there is no easy way to nest project items through the Visual Studio IDE, you can only do it by manipulating the...
View ArticleVisual Studio 2008 Released
Jihaaa, Visual Studio 2008 has been released on MSDN. If you want to have a nice overview of the new features in VS2008, take a look at this post from ScottGu. Take a look at the following downloads...
View ArticleRunning MSTest without Visual Studio – Gallio to the rescue
In some cases it can be useful to quickly run your Microsoft unit tests on a machine where Visual Studio is not installed. For example on an end-user machine and/or during acceptance testing. Microsoft...
View ArticleOrganize your NHibernate mapping files inside Visual Studio
NHibernate uses an xml file to describe the mapping. Typically it is embedded as a resource file inside your project and it has a consistent filename convention, namely <classname>.hbm.xml....
View ArticleVisual Studio 2010 and .NET 4.0 CTP Available
With the PDC 08 going on you can download a CTP of Visual Studio 2010.
View ArticleEnumerating project items in a Visual Studio solution
Often you have the need to iterate through a collection and most of the time the iteration logic is weaved with the action that need to be done. This is because we are used to program in an imperative...
View ArticleCode coverage with Visual Studio
Code coverage is used to determine how effectively your tests exercise the code in your application. This way you can identify sections of code that are covered, not covered or partially covered by...
View Article