Problem with compiler in Web.Config for generating xml doc
- by asksuperuser
I have several problems when putting code below in Web.Config to be able to generate xml doc with website (not webproject):
<compiler language="c#;cs;csharp" extension=".cs" warningLevel="0"
type="Microsoft.CSharp.CSharpCodeProvider, System, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=b77a5c561934e089"
compilerOptions="/doc:c:\doc\WebDocs.xml">
How do I put a directory with spaces instead of /doc:c:\doc\WebDocs.xml?
How do I put a directory that is a subdirectory of current project?
Why my xml file output is nearly empty? Is it because some properties, methods, ... have no xml comment?