How do I select the target framework of a CodeDom compiler using C#?
Asked Answered
H

2

9

So I have a CodeDOM compiler written in C# that's supposed to compile another application based on one of its resources. How would I change the target .NET framework of the resource (or of the outputted executable of the compiler)?

Hearth answered 28/8, 2011 at 16:51 Comment(1)
That depends on the compiler.Ance
T
7

You could pass options to the compiler using the following constructor:

var providerOptions = new Dictionary<string, string>();
providerOptions.Add("CompilerVersion", "v3.5");
var compiler = new CSharpCodeProvider(providerOptions);
...
Tightfisted answered 28/8, 2011 at 16:59 Comment(0)
S
3

You would need to specify it in a dictionary of settings for the compiler, such as:

var settings = new Dictionary<string,string>();
settings.Add("CompilerVersion", "v3.5");
var compiler = new CSharpCodeProvider(settings);  

Unsurprisingly, Google already brings up a couple of examples of this, too; here and here.

Segregate answered 28/8, 2011 at 17:0 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.