[Nant-users] How to use mono as a target framework on windows ?
Hi, I would like to compile my project on windows with mcs (mono compiler) but nant offers me only .net framework. command nant -t:mono-1.0 fails with possible values include: net-1.1 I have installed mono 1.1.10 (http://www.go-mono.com/archive/1.1.10/windows-installer/0/mono-1.1.10-gtksharp-2.4.0-win32-0.exe) and nant 0.85 My environment variable PATH includes mono/bin and nant/bin directory. Has anybody an idea ? Best regards Filip --- This SF.Net email is sponsored by the JBoss Inc. Get Certified Today Register for a JBoss Training Course. Free Certification Exam for All Training Attendees Through End of 2005. For more info visit: http://ads.osdn.com/?ad_idv28&alloc_id845&op=click ___ Nant-users mailing list Nant-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nant-users
Re: [Nant-users] How to use mono as a target framework on windows ?
Thank you for the quick response! Latest build works fine. Recognizes mono-1.0, mono-2.0 as well as net.1.1 and net.2.0 Filip On 16/11/05, Gert Driesen <[EMAIL PROTECTED]> wrote: > Filip, > > Can you try using a recent nightly build of NAnt > (http://nant.sourceforge.net/nightly/latest) and report back the result ? > > Thanks ! > > Gert > - Original Message - > From: "Filip" <[EMAIL PROTECTED]> > To: > Sent: Wednesday, November 16, 2005 1:00 PM > Subject: [Nant-users] How to use mono as a target framework on windows ? > > > Hi, > > I would like to compile my project on windows with mcs (mono compiler) > but nant offers me only .net framework. > > command nant -t:mono-1.0 fails with possible values include: net-1.1 > > I have installed mono 1.1.10 > (http://www.go-mono.com/archive/1.1.10/windows-installer/0/mono-1.1.10-gtksh > arp-2.4.0-win32-0.exe) > and nant 0.85 > > My environment variable PATH includes mono/bin and nant/bin directory. > > Has anybody an idea ? > > Best regards > Filip > > > --- > This SF.Net email is sponsored by the JBoss Inc. Get Certified Today > Register for a JBoss Training Course. Free Certification Exam > for All Training Attendees Through End of 2005. For more info visit: > http://ads.osdn.com/?ad_idv28&alloc_id845&op=ick > ___ > Nant-users mailing list > Nant-users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nant-users > --- This SF.Net email is sponsored by the JBoss Inc. Get Certified Today Register for a JBoss Training Course. Free Certification Exam for All Training Attendees Through End of 2005. For more info visit: http://ads.osdn.com/?ad_idv28&alloc_id845&op=click ___ Nant-users mailing list Nant-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nant-users
[Nant-users] NDoc and Nant 0.85RC2
Hello, I’m new at all this, but I was trying the ndoc task and I verified my build file against the xsd I got the error that the tags and are invalid. Any ideas? Using xsd: http://nant.sf.net/release/0.85-rc2/nant.xsd Build File: <project name="test" basedir="." default="build" xmlns="http://nant.sf.net/release/0.85-rc2/nant.xsd"> <tstamp property="build.date" pattern="MMdd_HHmmss" verbose="true" /> <property name="output" value="BUILD\HelloWorld-${build.date}.exe"/> <target name="clean"> <delete dir="BUILD" failonerror="false"/> <mkdir dir="BUILD"/> <delete dir="DOC" failonerror="false"/> <mkdir dir="DOC"/> target> <target name="build" depends="clean"> <vbc main="Form1" target="winexe" output="${output}"> <sources> <include name="Form1.vb"/> sources> <references> <include name="System.dll"/> <include name="System.Data.dll"/> <include name="System.Drawing.dll"/> <include name="System.Windows.Forms.dll"/> <include name="System.XML.dll"/> references> <resources prefix ="Form1" dynamicprefix="true"> <include name="**/*.resx"/> resources> vbc> target> <ndoc> <assemblies> <include name="${output}" /> assemblies> <summaries basedir=".."> <include name="Project2.xml" /> summaries> <documenters> documenters> ndoc> <target name="run" depends="build"> <exec program="${project::get-buildfile-path}/${output}"/> target> project> The bold blue text is where it gets wrong… Don’t mind the HelloWorld, as I said I’m just testing in preparation for my internship in two weeks. Regards, Filip Stas
[Nant-users] overwriting properties when calling anothe build script
I need to overwrite property when calling another nant build script but failing to do so. I have a master build file thet has a target with task in it. Within the nant task I'm declaring this property has the same name as property in my slave build file, however the property in the slave file doesn't get overwritten and keeps it default value. I tried including 'readonly=false' and the property in the slave file and 'overwrite=true' in the master file, but still no luck. Can anyone suggest how to do this? Thanks in advance --- This SF.Net email is sponsored by the JBoss Inc. Get Certified Today * Register for a JBoss Training Course Free Certification Exam for All Training Attendees Through End of 2005 Visit http://www.jboss.com/services/certification for more information ___ Nant-users mailing list Nant-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nant-users
[NAnt-users] Visual Studio projects
Hi all, after beeing frustrated by the way VS handles its projects I decided to go for NAnt (since I knew ant from my Java experiences before). Now my only Problem is that we are still using Visual Studio to create our code. So here's my questions: 1. Is there any kind of useful VS integration for NAnt? 2. Can I create a VS project or solution file using NAnt so it gets updated in case I had new stuff in CVS? Thank you in advance, Filip - Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier. Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___ NAnt-users mailing list NAnt-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nant-users
Re: [NAnt-users] Visual Studio projects
Hi, thank you very much. This solves one of my problems already :) 2007/2/8, Adrian Lazea <[EMAIL PROTECTED]>: Hi Filip, Filip Polsakiewicz wrote: > Hi all, > > after beeing frustrated by the way VS handles its projects I decided to > go for NAnt (since I knew ant from my Java experiences before). Now my > only Problem is that we are still using Visual Studio to create our > code. So here's my questions: > > 1. Is there any kind of useful VS integration for NAnt? Please see this article: http://weblogs.asp.net/bsimser/archive/2006/06/06/Simple-NAnt-integration-with-Visual-Studio.aspx In the past, there was a tool for this purpose, called NAntRunner (http://nantrunner.sourceforge.net/), but it hasn't been maintained for some time and I don't think it's compatible with Visual Studio 2005. Best regards, /Adrian. -- Adrian Lazea Team Lead Windows Development and Quality Assurance Departments Schlund + Partner AG 18 Mircea Eliade St. 012015, Bucharest, Romania > 2. Can I create a VS project or solution file using NAnt so it gets > updated in case I had new stuff in CVS? > > Thank you in advance, > > Filip > > > > > - > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier. > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > > > > > ___ > NAnt-users mailing list > NAnt-users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nant-users - Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier. Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___ NAnt-users mailing list NAnt-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nant-users
[NAnt-users] Generating NDoc documentation erro
Hi, as always when starting new things i fell over another problem. When trying to generate the NDoc documentation for my assembly I get the following error: Error building documentation. Could not load file or assembly 'log4net, Version=1.2.10.0, Culture=neutral, PublicKeyToken=1b44e1d426115821' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040) Could not load file or assembly 'log4net, Version=1.2.10.0, Culture=neutral, PublicKeyToken=1b44e1d426115821' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040) I have the newest log4net in my GAC. Is there any way to generate the nodc without getting this error? Thanks, Filip - Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier. Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___ NAnt-users mailing list NAnt-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nant-users
Re: [NAnt-users] Visual Studio projects
Hi, thanks. Great tool. Just like the good old eclipse ant integration (almost). But still the intellisense in build files does not work for me. I've done everything as describes in the faq but it does not show up with Intellisense at all. Any ideas? Thanks, Filip 2007/2/8, Erich Eichinger <[EMAIL PROTECTED]>: Hi, for VS2005 there is a nice tool similar to nantrunner called "NAntAddin" at sourceforge: http://sourceforge.net/projects/nantaddin Since the sourceforge version has some small bugs, I created my own version which you can fínd at http://opensource.atlassian.com/confluence/spring/display/NET/Developer+Toolchest hope this helps, Erich -- *From:* [EMAIL PROTECTED] [mailto: [EMAIL PROTECTED] *On Behalf Of *Filip Polsakiewicz *Sent:* Thursday, February 08, 2007 1:01 PM *To:* Adrian Lazea *Cc:* NAnt Users List *Subject:* Re: [NAnt-users] Visual Studio projects Hi, thank you very much. This solves one of my problems already :) 2007/2/8, Adrian Lazea <[EMAIL PROTECTED]>: > > > Hi Filip, > > > Filip Polsakiewicz wrote: > > Hi all, > > > > after beeing frustrated by the way VS handles its projects I decided > to > > go for NAnt (since I knew ant from my Java experiences before). Now my > > > only Problem is that we are still using Visual Studio to create our > > code. So here's my questions: > > > > 1. Is there any kind of useful VS integration for NAnt? > > Please see this article: > > http://weblogs.asp.net/bsimser/archive/2006/06/06/Simple-NAnt-integration-with-Visual-Studio.aspx > > In the past, there was a tool for this purpose, called NAntRunner > (http://nantrunner.sourceforge.net/), but it hasn't been maintained for > some time and I don't think it's compatible with Visual Studio 2005. > > Best regards, > /Adrian. > > -- > Adrian Lazea > > Team Lead > Windows Development and > Quality Assurance Departments > > Schlund + Partner AG > 18 Mircea Eliade St. > 012015, Bucharest, Romania > > > 2. Can I create a VS project or solution file using NAnt so it gets > > updated in case I had new stuff in CVS? > > > > Thank you in advance, > > > > Filip > > > > > > > > > > > > - > > Using Tomcat but need to do more? Need to support web services, > security? > > Get stuff done quickly with pre-integrated technology to make your job > easier. > > Download IBM WebSphere Application Server v.1.0.1 based on Apache > Geronimo > > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > > > > > > > > > > > > ___ > > NAnt-users mailing list > > NAnt-users@lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/nant-users > - Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier. Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___ NAnt-users mailing list NAnt-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nant-users
Re: [NAnt-users] Generating NDoc documentation erro
Hi, would it help to remove Log4Net from my GAC? Thanks, Filip 2007/2/8, Daniel Blendea <[EMAIL PROTECTED]>: On 2/8/07, Filip Polsakiewicz <[EMAIL PROTECTED]> wrote: > Hi, > > as always when starting new things i fell over another problem. When trying > to generate the NDoc documentation for my assembly I get the following > error: > > Error building documentation. > > Could not load file or assembly 'log4net, Version= 1.2.10.0, > Culture=neutral, PublicKeyToken=1b44e1d426115821' or one of > its dependencies. The located assembly's manifest definition does not match > the assembly reference. (Exception from HRESULT: 0x80131040) > Could not load file or assembly 'log4net, Version=1.2.10.0, Culture=neutral, > PublicKeyToken=1b44e1d426115821' or one of its > dependencies. The located assembly's manifest definition does not match the > assembly reference. (Exception from HRESULT: 0x80131040) > > I have the newest log4net in my GAC. Is there any way to generate the nodc > without getting this error? > Most likely ndoc was compiled with a different version of log4net than the one you have installed. Daniel - Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier. Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___ NAnt-users mailing list NAnt-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nant-users