problem with CSharpCodeProvider
-
Hi, I have this code:
private void BuildMaterialsAssembly ( string MaterialsSourceFile ) { // read the file containing the source StreamReader srcReader = new StreamReader ( MaterialsSourceFile ); string materialSource = srcReader.ReadToEnd (); srcReader.Close (); // build code provider CSharpCodeProvider codeProvider = new CSharpCodeProvider (); ICodeCompiler icc = codeProvider.CreateCompiler (); CompilerParameters parameters = new CompilerParameters (); parameters.GenerateExecutable = true; //parameters.OutputAssembly = Varibles.Instance["base_path"] + Varibles.Instance["materials_path"] + "Materials.dll"; parameters.OutputAssembly = "e:\\jan\\mat\\dllll.exe"; // foer development only! // compile the darn thing CompilerResults results = icc.CompileAssemblyFromSource ( parameters, materialSource ); }
The problem is that this code refuses to compile an assembly (DLL), it does nothing. It dosen't matter if the soruce is a regular text file with no C# code what so ever, or a perfectly vaild C# (library) code. I copied this from MSDN and did a few changes. What coudl possibly be wrong? Q:What does the derived class in C# tell to it's parent? A:All your base are belong to us! -
Hi, I have this code:
private void BuildMaterialsAssembly ( string MaterialsSourceFile ) { // read the file containing the source StreamReader srcReader = new StreamReader ( MaterialsSourceFile ); string materialSource = srcReader.ReadToEnd (); srcReader.Close (); // build code provider CSharpCodeProvider codeProvider = new CSharpCodeProvider (); ICodeCompiler icc = codeProvider.CreateCompiler (); CompilerParameters parameters = new CompilerParameters (); parameters.GenerateExecutable = true; //parameters.OutputAssembly = Varibles.Instance["base_path"] + Varibles.Instance["materials_path"] + "Materials.dll"; parameters.OutputAssembly = "e:\\jan\\mat\\dllll.exe"; // foer development only! // compile the darn thing CompilerResults results = icc.CompileAssemblyFromSource ( parameters, materialSource ); }
The problem is that this code refuses to compile an assembly (DLL), it does nothing. It dosen't matter if the soruce is a regular text file with no C# code what so ever, or a perfectly vaild C# (library) code. I copied this from MSDN and did a few changes. What coudl possibly be wrong? Q:What does the derived class in C# tell to it's parent? A:All your base are belong to us!