The current code version produces some warnings when being compiled in Visual Studio 2005. Of course, warnings are not errors, but there are lots of them, so it would be much better if they also will be corrected. Some of them are listed below.
1. ConfigurationSettings.AppSettings is said to be obsolete, ConfigurationManager.AppSettings is recommended to use instead.
If the second variant is supported on Mono, could you change this?
2. 'Brettle.Web.NeatUpload.InputFile.TmpFile' is obsolete: 'This property is obsolete and will be removed in a future version. Instead use other members like InputFile.MoveTo(), InputFile.HasFile, and InputFile.ContentLength.'
3. Some "usings" are duplicate:
- 'System' in \mojoPortal.Business.WebHelpers\IndexItem.cs
- 'mojoPortal.Web' in \Web\Setup\Default.aspx.cs
- 'mojoPortal.Business.WebHelpers' in \Web\ForumView.aspx.cs
There are also some "unreachable code detected" and "variable never used".