Hi guys,
I'm using Net projects for the first time due a customer need.
Now, I installaed IIS 7 with IIS 6 Metadata compatibility
Enabled the Execute permissions on IIS for the folder.
I run Composer as Administrator (right click Execute As) but saw that when composer deploys the App it does as IIS Application and for what I have read it should be a Virtual Directory...
What happens is the following, prompts do work, branches etc, it fails when does a call to include/getWebRequestData.aspx file.
Something about the log4net.dll file. I enabled logs on the application and it complains about :
[code]
e:\workspace\Test\include\getWebRequestData.aspx(9,11): error CS0246: The type or namespace name 'log4net' could not be found (are you missing a using directive or an assembly reference?)
e:\workspace\Test\include\getWebRequestData.aspx(6,11): error CS0246: The type or namespace name 'Newtonsoft' could not be found (are you missing a using directive or an assembly reference?)
e:\workspace\Test\include\getWebRequestData.aspx(7,11): error CS0246: The type or namespace name 'Newtonsoft' could not be found (are you missing a using directive or an assembly reference?)
e:\workspace\Test\include\getWebRequestData.aspx(12,18): error CS0246: The type or namespace name 'ILog' could not be found (are you missing a using directive or an assembly reference?)
e:\workspace\Test\include\getWebRequestData.aspx(26,55): error CS0246: The type or namespace name 'JObject' could not be found (are you missing a using directive or an assembly reference?)
e:\workspace\Test\include\getWebRequestData.aspx(26,78): error CS0246: The type or namespace name 'JToken' could not be found (are you missing a using directive or an assembly reference?)
e:\workspace\Test\include\getWebRequestData.aspx(194,49): error CS0246: The type or namespace name 'JsonTextReader'
[/code]
Has anyone seen this before? And fixed?
Thanks