Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. problem with CSharpCodeProvider

problem with CSharpCodeProvider

Scheduled Pinned Locked Moved C#
csharphelpquestion
2 Posts 1 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • C Offline
    C Offline
    CWIZO
    wrote on last edited by
    #1

    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!

    C 1 Reply Last reply
    0
    • C CWIZO

      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!

      C Offline
      C Offline
      CWIZO
      wrote on last edited by
      #2

      problem solved, I need to add asembly refrences. But, why didn't I get any exceptions?? Q:What does the derived class in C# tell to it's parent? A:All your base are belong to us!

      1 Reply Last reply
      0
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Don't have an account? Register

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • World
      • Users
      • Groups