AnantLabs / fluent-build

Automatically exported from code.google.com/p/fluent-build
0 stars 0 forks source link

fb.exe not processing combiled build dlls #1

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Create a BuildFile
2. Compile the BuildFile into a dll.
3. Execute it with fb.exe mybuildfile.dll

What is the expected output? What do you see instead?
* Expected to execute the Default build class in mybuildfile.dll

Instead:
* It keeps coming back saying:
 [INIT] building task from sources

* This is likely due to a bug in CommandLineParser.ctor(string[]) where:

if (Path.GetExtension(args[0]).ToLower() != "dll")

Path.GetExtension() returns the ".dll" period. So, the line of code above is 
always true. Therefore, never executing ".dll" compiled build files.

Plz fix. :)

What version of the product are you using? On what operating system?
* 1.0 Beta

Please provide any additional information below.

Original issue reported on code.google.com by bcha...@gmail.com on 25 May 2011 at 6:30

GoogleCodeExporter commented 9 years ago

Original comment by DaveWood...@gmail.com on 15 Jun 2011 at 8:36

GoogleCodeExporter commented 9 years ago

Original comment by DaveWood...@gmail.com on 15 Jun 2011 at 8:54