Rank: Newbie Groups: New
Joined: 7/27/2010 Posts: 1 Points: 3 Location: USA
|
I downloaded the plugins source code from the TargetProcess Plugins page. Unzipped the file. Double-clicked the Hd.sln file in the Tp.HelpDesk folder. This opened the HelpDesk solution in VS2010. I removed the Hd.Tests project (I do not have the required TeamSystem assembly). Changed the build type to "Release". Rebuild the solution. I get the following errors:
The type or namespace name 'log4net' could not be found (are you missing a using directive or an assembly reference?) c:\Download\TargetProcess\TP-source\TP-2.19.6.15362-source\Clients\Tp.HelpDesk\Hd.Web\Global.asax Line:3 Column:1 Project: Hd.Installation
The type or namespace name 'log4net' could not be found (are you missing a using directive or an assembly reference?) c:\Download\TargetProcess\TP-source\TP-2.19.6.15362-source\Clients\Tp.HelpDesk\Hd.Web\Global.asax Line:2 Column:1 Project: Hd.Installation
The type or namespace name 'ILog' could not be found (are you missing a using directive or an assembly reference?) c:\Download\TargetProcess\TP-source\TP-2.19.6.15362-source\Clients\Tp.HelpDesk\Hd.Web\Global.asax Line:7 Column:1 Project: Hd.Installation
If I edit the above referenced Global.asax file I also get the following errors:
The type or namespace name 'ILog' could not be found (are you missing a using directive or an assembly reference?) c:\Download\TargetProcess\TP-source\TP-2.19.6.15362-source\Clients\Tp.HelpDesk\Hd.Web\Global.asax Line:7 Column:29 Project: Hd.Web
The name 'LogManager' does not exist in the current context c:\Download\TargetProcess\TP-source\TP-2.19.6.15362-source\Clients\Tp.HelpDesk\Hd.Web\Global.asax Line:7 Column:40 Project: Hd.Web
The name 'XmlConfigurator' does not exist in the current context c:\Download\TargetProcess\TP-source\TP-2.19.6.15362-source\Clients\Tp.HelpDesk\Hd.Web\Global.asax Line:12 Column:9 Project: Hd.Web
It seems that the "Imports" for the log4net namespace is not actually importing. How do I fix this?
|