“the outputpath property is not set for this project” error

Usually this happens when the OutputPath property of the project file is blank. Project files are just MSBuild files. To edit in Visual Studio: Right click on the project, pick “Unload project” then right click on the unloaded project and select “Edit …”. Look for the Release-Versionincrement property group. It should look something like <PropertyGroup … Read more

Visual Studio log file

From the documentation of the /Log command line switch: If LogFile is not specified, two files will be written to the current user’s non-localized application data folder. The non-localized application data folder for Visual Studio can be found from the APPDATA environment variable. For example, for Visual Studio 2008, the folder is %APPDATA%\Microsoft\VisualStudio\9.0, where %APPDATA% … Read more

download and install visual studio 2008 [closed]

Visual Studio 2008: (3,30 GB) http://download.microsoft.com/download/8/1/d/81d3f35e-fa03-485b-953b-ff952e402520/VS2008ProEdition90dayTrialENUX1435622.iso MSDN Library 2008: (2,15 GB) http://www.microsoft.com/downloads/info.aspx?na=90&p=&SrcDisplayLang=en&SrcCategoryId=&SrcFamilyId=7bbe5eda-5062-4ebb-83c7-d3c5ff92a373&u=http%3a%2f%2fdownload.microsoft.com%2fdownload%2f1%2ff%2f0%2f1f07c259-7ff2-4902-9205-ad1dfb87ccab%2fVS2008SP1MSDNENUX1506188.iso To upgrade from trial version to Pro version, check: http://msdn.microsoft.com/en-us/library/ms246600%28VS.80%29.aspx

log4net – Appenders not working in IIS7.5

You can enable log4net internal debugging by adding the key log4net.Internal.Debug to your application configuration file. <appSettings> <add key=”log4net.Internal.Debug” value=”true”/> </appSettings> This will write debug messages to the console and the System.Diagnostics.Trace system. You can then log these messages to a text file by adding a trace listener to you configuration file. Make sure the … Read more