lundi 20 décembre 2004

.NET reinstallation forcée

Hint & Tips :

Perform Repair Installation of the .NET Framework 1.1
  1. Insert your Visual Studio .NET 2003 Professional Prerequisites disk
  2. Cancel any dialog boxes that appear (Choose Yes to run setup from Disk 1)
x:\dotnetframework\dotnetfx.exe /t:c:\windows\temp /c:"msiexec.exe /i 
c:\windows\temp\netfx.msi REINSTALL=ALL REINSTALLMODE=vacmus"
Perform Repair Installation of Visual Studio .NET 2003 Professional
  1. Insert your Visual Studio .NET 2003 Professional Setup Disk 1
  2. Cancel any dialog boxes that appear
x:\vs_setup.msi REINSTALL=ALL REINSTALLMODE=vacmus
mercredi 15 décembre 2004

Library log4net

This post is the start of a series which will present some really cool libraries that we can use in .NET. Let's start with a really cool one.

log4net

log4net is a tool to help the programmer output log statements to a variety of output targets. log4net is a port of the excellent log4j framework to the .NET runtime. We have kept the framework as similar to the original log4j as possible while taking advantage of new features in the .NET runtime. For more information on log4net see the features document.

Official website : http://logging.apache.org/log4net/