Hello,
I have a few scenarios (described below) that I need some clarification on as I do not know how Nant handles it. I would really appreciate some help.
Thanks!

1. How do you deal with a project with a option strict option turned ON for a
few files and turned OFF for a few others.

2.  Here is a sample

sample1.vb

namespace AAA
 public class ABC

 end class
end namespace
----------------------------------------------
sample1a.vb

imports AAA.ABC [ Error: BC30466: Namespace or type ABC for imports AAA.ABC
cannot be found. ]
namespace AAA
  public class XYZ

  end class
end namespace


3.  Another sample

sample2.vb

namespace AAA
 public class ABC

 end class
end namespace

sample2a.vb

namespace ZZZ
 public class YYY
Dim obj As AAA.ABC [ Error: BC30002: Type AAA.ABC is not defined. ]
 end class
end namespace




-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
NAnt-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/nant-users

Reply via email to