Wiki

Changes between Version 4 and Version 5 of Use

Show
Ignore:
Timestamp:
06/07/13 13:19:56 (11 years ago)
Author:
hopscc
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Use

    v4 v5  
    6565 
    6666In most cases this syntax means you dont need to specify the commandline 
    67 -reference switch  
     67-reference switch as the dll can be found through the common naming of the use target and the dll. 
    6868 
    6969With  !MyProg.cobra containing 
    7070... 
     71 
     72{{{ 
     73#!cobra 
    7174    use Foo.Bar 
     75}}} 
     76 
    7277     
    7378Instead of compilation by 
    7479 
    75     cobra -reference:Foo.Bar !MyProg.cobra 
     80{{{ 
     81cobra -reference:Foo.Bar MyProg.cobra 
     82}}} 
    7683 
    7784you can just say: 
    7885 
    79     cobra !MyProg.cob 
     86 
     87{{{ 
     88cobra MyProg.cobra 
     89}}} 
     90