Changes between Version 4 and Version 5 of Use
- Timestamp:
- 06/07/13 13:19:56 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Use
v4 v5 65 65 66 66 In 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. 68 68 69 69 With !MyProg.cobra containing 70 70 ... 71 72 {{{ 73 #!cobra 71 74 use Foo.Bar 75 }}} 76 72 77 73 78 Instead of compilation by 74 79 75 cobra -reference:Foo.Bar !MyProg.cobra 80 {{{ 81 cobra -reference:Foo.Bar MyProg.cobra 82 }}} 76 83 77 84 you can just say: 78 85 79 cobra !MyProg.cob 86 87 {{{ 88 cobra MyProg.cobra 89 }}} 90