From npanday-users-return-29-apmail-incubator-npanday-users-archive=incubator.apache.org@incubator.apache.org Fri Jan 07 05:56:05 2011 Return-Path: Delivered-To: apmail-incubator-npanday-users-archive@minotaur.apache.org Received: (qmail 71461 invoked from network); 7 Jan 2011 05:56:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 7 Jan 2011 05:56:05 -0000 Received: (qmail 84882 invoked by uid 500); 7 Jan 2011 05:56:05 -0000 Delivered-To: apmail-incubator-npanday-users-archive@incubator.apache.org Received: (qmail 84840 invoked by uid 500); 7 Jan 2011 05:56:03 -0000 Mailing-List: contact npanday-users-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: npanday-users@incubator.apache.org Delivered-To: mailing list npanday-users@incubator.apache.org Received: (qmail 84827 invoked by uid 99); 7 Jan 2011 05:56:03 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 07 Jan 2011 05:56:03 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=RCVD_IN_DNSWL_LOW,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [209.85.160.47] (HELO mail-pw0-f47.google.com) (209.85.160.47) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 07 Jan 2011 05:55:56 +0000 Received: by pwi8 with SMTP id 8so2387639pwi.6 for ; Thu, 06 Jan 2011 21:55:34 -0800 (PST) Received: by 10.142.51.16 with SMTP id y16mr1490706wfy.57.1294379734851; Thu, 06 Jan 2011 21:55:34 -0800 (PST) Received: from [10.0.0.10] (CPE-203-51-91-252.lns11.cht.bigpond.net.au [203.51.91.252]) by mx.google.com with ESMTPS id p8sm2159274wff.4.2011.01.06.21.55.31 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 06 Jan 2011 21:55:33 -0800 (PST) Sender: Brett Porter Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Apple Message framework v1082) Subject: Re: NPanday dependency execution time doesn't work! From: Brett Porter In-Reply-To: Date: Fri, 7 Jan 2011 16:55:28 +1100 Content-Transfer-Encoding: quoted-printable Message-Id: References: <659129692.915.1292214689821.JavaMail.root@cell.g2ix.net>,<1387629453.923.1292214762824.JavaMail.root@cell.g2ix.net>, To: npanday-users@incubator.apache.org X-Mailer: Apple Mail (2.1082) X-Virus-Checked: Checked by ClamAV on apache.org Sorry for the late response. How are you building and installing the libraries? Through Maven on the = command line, or from the menu? Do the libraries appear as references in Visual Studio? - Brett On 16/12/2010, at 1:14 AM, RODRIGO LIBERAL wrote: >=20 > Hi, > Well... this is the full story. > First I created, built and then installed the ClassLibrary1 project. > Second I created ClassLibrary2, and add the dependecy (using add = maven artifact) to ClassLibrary1. then I built and installed the = ClassLibrary2 project. > Third I created ClassLibrary3, and add the dependecy (using add maven = artifact) to ClassLibrary2. then I built and installed the = ClassLibrary3 project. > Fourth I created ConsoleApplication1, and add the dependecy (using = add maven artifact) to ClassLibrary3. then I built and installed the = ConsoleApplication1 project. > After all of the process I press in VS2008 SP1 the F5 to start the = debuggin process but when the debugger starts the dependecy with = ClassLibrary2 Doesn't WORKS! > So the tree dependency doesn't works. > Honestly I do not find the error I'm generating. Please I need help. >=20 > Here are the sources. > ConsoleAplication1 Solution using System; using = System.Collections.Generic; using System.Linq; using System.Text; = namespace ConsoleApplication1 { class Program { = static void Main(string[] args) { = ClassLibrary3.Class1 a =3D new ClassLibrary3.Class1(); = Console.WriteLine(a.cadena); } } }=20 >=20 >=20 >=20 >=20 > ClassLibrary3 solution using System; using = System.Collections.Generic; using System.Linq; using System.Text; = namespace ClassLibrary3 { public class Class1 { = ClassLibrary2.Class1 a =3D new ClassLibrary2.Class1(); public = string cadena; public Class1() { cadena =3D "Lib3 = - " + a.cadena; } } }=20 >=20 >=20 >=20 >=20 > ClassLibrary2 solution using System; using = System.Collections.Generic; using System.Linq; using System.Text; > namespace ClassLibrary2 {=20 > public class Class1 { public String cadena =3D "LIB = 2"; public string getCadena() { return this.cadena; = } } } =20 >=20 >=20 >=20 >=20 > ClassLibrary1 solution using System; using = System.Collections.Generic; using System.Linq; using System.Text; = namespace ClassLibrary1 { public class Class1 { = int n =3D 1; } }=20 >=20 > If anything is missing please let me know > Thanks again. > See ya! >> Date: Sun, 12 Dec 2010 20:32:42 -0800 >> From: jocaba@maestrodev.com >> To: npanday-users@incubator.apache.org >> Subject: Re: NPanday dependency execution time doesn't work! >>=20 >> Hi are the 3 projects built on top of each other? like did you first = build=20 >>=20 >> ClassLibrary1 and then Build ClassLibrary2 after pointing to = ClassLibrary1, and so on?=20 >> Or are they built at the same time?=20 >>=20 >> NPanday can support this dependency tree build.=20 >>=20 >> It would be great if you can give us the scenario on how you built = the project so that we can have a better idea on what caused the error.=20= >>=20 >> Thanks,=20 >>=20 >>=20 >>=20 >> --=20 >> Joe Ocaba=20 >>=20 >=20 > =20 -- Brett Porter brett@apache.org http://brettporter.wordpress.com/ http://au.linkedin.com/in/brettporter