-
Probably one of the most missed feature of wordpress is the possibility to post in the future. There are days when you have tons of ideas, but you simply avoid to blog just because you’ve already blogged a lot in the last days. One of the most interesting...
-
Un ora fa ho scritto una mail al mio fornitore di hardware, chiedendo alcuni prezzi di box esterni per RAID sata. Dopo un’oretta vado a rivedere gmail per vedere se mi ha risposto. La risposta non è arrivata, ma vedo questo. Secondo me è anche per questo...
-
At this point I explained how to setup a build, and how to fully customize it editing the msbuild file to execute some tasks, like open an issue when one or more test fail.
Another interesting stuff to explain is how to execute custom code during the...
-
In last post I show how to configure test run in a team foundation build, simply editing the msbuild file. The aim of the post was showing how to make the entire build fail when a single test fails. To achieve this result I simply override a target and...
-
Today I installed Tfs 2010 beta to look at new features; installation process of Tfs can be a complex operation but I must admit that in the 2010 version, the installer is more friendly. I installed sharepoint and sql server 2008 then I fired the installation...
-
I start to got this error from my Continuous integration machine, after I setup a project for deploy with clickonce the build begins to fail. I’m using CC.net with msbuild scripts and in detailed error I see a message like
The "ResolveKeySource"...
-
In previous post I showed how to setup a build in tfs that not only builds the solution, but also runs all the tests. The next step is to configure how tests are run and reacting to test result. The first thing I want is the ability to make the entire...
-
Ieri ho sostenuto e passato l'esame 70-562 , Microsoft .NET Framework 3.5 - ASP.NET Application Development. Gli argomenti spaziavano dall'utilizzo di ASP.NET Ajax, ai controlli per il mobile, al databing, i validators e tanto altro.. ed è stato...
-
The term “Build” is a complex one that does not only means “compile source files into final assemblies”, but it comprehends many other operations that are vital for the project. One of these operation is running unit tests during Tfs build. The reason...
-
These days I’m heavily working on NUnit to build some extensions to the testing framework we need on our projects. We need a simple way to launch our tests inside visual studio while developing. Our first solution was to use TestDriven.NET or the Reshaper...
-
In previous post I deal with file size in VS DB edition. To avoid this problem, (as my friend Lorenzo pointed me out), when you import the database structure, with the Database Project wizard, you must not select the “Import log and filegroup file size...
-
I use Database Edition on a legacy database that is very big, when I created the database project I simply ask to VS database edition to import the structure and everything is ok. Then I noticed that deploy operation when database does not exists on the...
-
I’m not a tests fanatic, but I use a lot of unit tests in during my development days. I do not aim to 100% coverage, and I do not believe that TDD can be used in every moment, and I use unit testing when it is necessary for me.
Sometimes it happens that...
-
When you begin to use Team Foundation Server, you will create different builds for all of your company’s projects. Since building complex products can be resource intensive, it is likely that your Team Foundation Server machine starts to perform slowly...
-
Data Transfer Objects, best known as Dto, are an essential part of projects that uses services or Domain Model. Dto are great, but the disadvantage is that maintaining Dto objects is a pain, because they are composed by repetitive code, and you have no...