2
votes
5answers
173 views
Dynamic code generation
I am currently developing an application where you can create "programs" with it without writing source code, just click&play if you like.
Now the question is how do I generat …
0
votes
3answers
75 views
F# Asp.Net CodeDom ProviderOptions Issue
I'm creating an ASP.NET MVC application using F# on IIS 7.
When I attempt to run it from the browser, I'm met with a YSOD containing the following:
[ArgumentNullException: Val …
0
votes
6answers
228 views
Analyzing code structure using CodeDom??
Hi,
I recently wrote a post here on Stackoverflow asking for some C# libraries that calculate metrics, mainly CC...unfortunately with no success. So I'm going to write it myself. …
0
votes
0answers
8 views
How to test a BuildProvider
I have created a simple BuildProvider as a starting point, and althogh I get no errors, I don't have access to the generated class either. In fact, i don't know wether my BuildProv …
0
votes
2answers
90 views
Are there differences between EnvDTE or CodeDom when generating Code
I have the requirement to generate and read some CS classes with a DSL, I have adopted one method for reading the CS files using EnvDTE and my colleague has used CodeDom to produce …
0
votes
1answer
27 views
CodeDom.compiler memory
I am generating assembly on runtime . Problem is that i cant get rid-of it after i am done with it. I need to destroy this assambly what i have created
string _Errors = "" …
2
votes
1answer
266 views
How to debug/break in codedom compiled code.
I have an application which loads up c# source files dynamically and runs them as plugins. When I am running the main application in debug mode, is it possible to debug into the d …
1
vote
3answers
77 views
Programmatically Format Generated CodeDom Code
How can I make sure the CS generated from code like the following is formatted nicely, i.e as if we pressed CTRL-K D? It is C#
We are doing something along the lines of:
…
1
vote
5answers
206 views
How to programmatically parse and modify C# code
What I want to do is to read C# code, parse it, insert some method calls and compile it finally.
Now. Is it possible to convert C# source code (a list of strings) to CodeDOM objec …
0
votes
1answer
65 views
System.CodeDom.CodeCompileUnit from System.Reflection.Emit.AssemblyBuilder instance
I'm looking at CodePlex code for TLBImp2 and want to generate C# source code from the IL emitted.
Is there a way to get a System.CodeDom.CodeCompileUnit from a System.Reflection.E …
0
votes
1answer
600 views
How to add #pragma warning disable 1591 using CodeDom
A portion of our app uses code generated using CodeDom. This code does not need Xml Comments and so we would like to add a
#pragma warning disable 1591
to those generated files …
0
votes
0answers
6 views
CodeDOM support DataTable?
Hi,
Does anyone know how to serialize a DataTable to CodeDOM?
my use case is like below:
object.DataSource = new DataTable()....;
But this line seems not to be serialized in fi …
2
votes
1answer
78 views
Unload CodeDom-compiled assembly
I have some C# code (let's call it "script") I am compiling at runtime. It uses an interface in my main program that I use to access its functions. Once compiling is done I have …
1
vote
2answers
68 views
How do I create a class that inherits from another and passes a type parameter in CodeDom?
Here's what I want the resulting class declaration to look like:
public sealed partial class Refund : DataObjectBase<Refund>
{
}
}
This code (snipped):
targetClass = ne …
0
votes
2answers
45 views
Defining/Creating classes/objects at runtime
I am looking to defining and creating a class and its instances at run-time with fields ( no complex methods/properties ) based on various criteria, I have some rough outlines in m …
