System.CodeDom DLL

  • Thread starter Thread starter Raja
  • Start date Start date
R

Raja

Have both .Net framework 1.1 and Framework 2.0 installed in my machine But,
am unable to find out system.codedom.dll in my machine, one which, my
application needs. Am not finding this dll in entire machine.

Can anybody help me in getting this dll?

Advance Thanks,

Raja
 
Can anybody help me in getting this dll?

There's no System.Codedom.dll assembly in the framework. The CodeDom
classes are implemented in System.dll.


Mattias
 
How do I refer this class in my program?

Here is the error

Error 1 The type or namespace name 'GeneratedCodeAttribute' does not exist
in the namespace 'System.CodeDom.Compiler' (are you missing an assembly
reference?) D:\Documents and Settings\rajas\My
Documents\MSDN\TaskManager_CS\TaskListManager\TasksDataSet.Designer.cs 17 30
TaskListManager

Raja

Mattias Sjögren said:
Can anybody help me in getting this dll?

There's no System.Codedom.dll assembly in the framework. The CodeDom
classes are implemented in System.dll.


Mattias

--
Mattias Sjögren [C# MVP] mattias @ mvps.org
http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
Please reply only to the newsgroup.


---
avast! Antivirus: Inbound message clean.
Virus Database (VPS): 0550-3, 12/15/2005
Tested on: 12/29/2005 7:18:13 PM
avast! - copyright (c) 1988-2005 ALWIL Software.
http://www.avast.com
 
Hi,

GeneratedCodeAttribute does not exist in the Compiler namespace (and nowhere
else according to msdn)


--
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation


Raja said:
How do I refer this class in my program?

Here is the error

Error 1 The type or namespace name 'GeneratedCodeAttribute' does not exist
in the namespace 'System.CodeDom.Compiler' (are you missing an assembly
reference?) D:\Documents and Settings\rajas\My
Documents\MSDN\TaskManager_CS\TaskListManager\TasksDataSet.Designer.cs 17
30 TaskListManager

Raja

Mattias Sjögren said:
Can anybody help me in getting this dll?

There's no System.Codedom.dll assembly in the framework. The CodeDom
classes are implemented in System.dll.


Mattias

--
Mattias Sjögren [C# MVP] mattias @ mvps.org
http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
Please reply only to the newsgroup.


---
avast! Antivirus: Inbound message clean.
Virus Database (VPS): 0550-3, 12/15/2005
Tested on: 12/29/2005 7:18:13 PM
avast! - copyright (c) 1988-2005 ALWIL Software.
http://www.avast.com
 
Raja said:
How do I refer this class in my program?

Error 1 The type or namespace name 'GeneratedCodeAttribute' does not exist
in the namespace 'System.CodeDom.Compiler' (are you missing an assembly
reference?)

The System.CodeDom.Compiler.GeneratedCodeAttribute does not exist in
Framework 2.0 Beta 2. The attribute was added in the RTM.

I stumpled upon the same error while developing a project on two machines
one with vs2005rtm and the other with c#2005b2. The resource designer adds
the attribute to its generated code. As a workaround, you could just delete
the attribute declaration from the source code.

Mark
 
Back
Top