Re: [nant-dev] Building VS2005 projects using NANT 8.5 rc4

2006-12-22 Thread Gert Driesen
> -Original Message-
> From: Martin Aliger [mailto:[EMAIL PROTECTED]
> Sent: donderdag 21 december 2006 16:36
> To: 'Abhilash Panickar'; 'Gert Driesen'
> Cc: nant-developers@lists.sourceforge.net
> Subject: RE: [nant-dev] Building VS2005 projects using NANT 8.5 rc4
> 
> The code is in place, I personally am using it in the production, but
> there
> was no official release of this feature yet. We are missing testcases,
> documentation at all. Not all parts of code passed the project
> administrator
> review so far.
> 
> Gert - how you see the patches now?

I've been working on it for a few hours now, and it's progressing nicely.
I'll probably have a little more time later, so I might get it committed
today.

For now, I've reverted it back to a flat directory structure, reduced the
public exposure of classes and made a few modifications to both NAnt.Core
and NAnt.VSNet to remove the need for a list of consumers (in PluginScanner)
and register plugins in TaskBuilder.CreateTask.

I will not yet enable the CustomProperties on SolutionTask. This needs more
discussion first.

Also, do you think we should move WhidbeySolutionProvider (and
WhidbeySolution) to NAnt.MSBuild ?

Are we planning to support multiple versions of MSBuild in NAnt.MSBuild (by
using a reflection-based API) ?

Gert


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
nant-developers mailing list
nant-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nant-developers


Re: [nant-dev] Building VS2005 projects using NANT 8.5 rc4

2006-12-21 Thread Martin Aliger
The code is in place, I personally am using it in the production, but there
was no official release of this feature yet. We are missing testcases,
documentation at all. Not all parts of code passed the project administrator
review so far.
 
Gert - how you see the patches now?


Regards,
Martin


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
nant-developers mailing list
nant-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nant-developers


Re: [nant-dev] Building VS2005 projects using NANT 8.5 rc4

2006-10-13 Thread Martin Aliger



Hi,
 
new solution task, which we work on, will solve all mentioned 
issues (hopefully). If you want to test the code, there'll be nightlies avaiable 
just after 0.85 RTM is out.
 
regarding asp.net application: there is new web site project, 
which is not the project compilable by NAnt. In fact, those project haven't be 
compiled at all :-). Then there is web application model, which is normal csproj 
(vbproj) and is completely compatible with NAnt (or msbuild or whatever). You 
could find more info about it around web.
 

  
  
 

    Ing. Martin 
  Aliger

  

   
  
 

  GORDIC spol. s. r.o., Erbenova 4, 586 01 JIHLAVATel: 567 309 
  136, 567 303 601
 
 

  
  
  From: 
  [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED] On Behalf Of 
  Ramprakash GopinathanSent: Wednesday, October 11, 2006 10:38 
  PMTo: Gary Feldman; 
  nant-developers@lists.sourceforge.netSubject: Re: [nant-dev] 
  Building VS2005 projects using NANT 8.5 rc4
  thanks for the response, I had looked at using msbuild task 
  from nant contrib, msbuild task basically works on project file, there is no 
  solution build concept in msbuild which makes it hard.The other thing is 
  solution task in nant allows you to specify output directory were the compiled 
  assemblies should be outputted and also configuration (debug/release or what 
  ever), solution tasks also allows you to specify assembly folder, which means 
  referenced assemblies could be in a completely different folder on build 
  server as is the case with us because we compile all assemblies into one 
  folder "bin" and we copy them into application bin directory as last step of 
  the buildmsbuild task does not allow you to specify an output 
  directory or config(debug/release), there 
  is also no way to specify reference paths, i guess some of the 
  project file settings could be set through xmlpeek task since the project 
  file is an xml file.  The other issue is how do 
  you automate asp.net application builds using nant, since asp.net apps are not 
  compiled into a dll anymore (dynamic compilation). 
  Thanks,
  
  > Date: Wed, 11 Oct 2006 15:07:51 -0400> From: 
  [EMAIL PROTECTED]> To: [EMAIL PROTECTED]> 
  Subject: Re: [nant-dev] Building VS2005 projects using NANT 8.5 rc4> 
  > Ramprakash Gopinathan wrote:> 
  >  > 
  > Is building vs2005 projects supported? Document says framework 2.0 is > 
  > supported.> 
  > I'm getting a project guid not found error when i build my vs2005 > 
  > project using nant 8.5 rc4> 
  You can use the msbuild task in NAntContrib to build vs2005 projects.  > 
  The NAnt solution task won't work.> > 
  Gary> 
-
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-developers mailing list
nant-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nant-developers


Re: [nant-dev] Building VS2005 projects using NANT 8.5 rc4

2006-10-11 Thread Ramprakash Gopinathan


thanks for the response, I had looked at using msbuild task from nant contrib, msbuild task basically works on project file, there is no solution build concept in msbuild which makes it hard.
The other thing is solution task in nant allows you to specify output directory were the compiled assemblies should be outputted and also configuration (debug/release or what ever), solution tasks also allows you to specify assembly folder, which means referenced assemblies could be in a completely different folder on build server as is the case with us because we compile all assemblies into one folder "bin" and we copy them into application bin directory as last step of the build
msbuild task does not allow you to specify an output directory or config(debug/release), there is also no way to specify reference paths, i guess some of the project file settings could be set through xmlpeek task since the project file is an xml file. 
 
The other issue is how do you automate asp.net application builds using nant, since asp.net apps are not compiled into a dll anymore (dynamic compilation). 
Thanks,




> Date: Wed, 11 Oct 2006 15:07:51 -0400> From: [EMAIL PROTECTED]> To: [EMAIL PROTECTED]> Subject: Re: [nant-dev] Building VS2005 projects using NANT 8.5 rc4> > Ramprakash Gopinathan wrote:> >  > > Is building vs2005 projects supported? Document says framework 2.0 is > > supported.> > I'm getting a project guid not found error when i build my vs2005 > > project using nant 8.5 rc4> You can use the msbuild task in NAntContrib to build vs2005 projects.  > The NAnt solution task won't work.> > Gary> 
-
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-developers mailing list
nant-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nant-developers


Re: [nant-dev] Building VS2005 projects using NANT 8.5 rc4

2006-10-11 Thread Gert Driesen








No, this will only be supported after the 0.85 release. We do
support.NET 2.0, but not (yet) VS 2005 solutions and project.

 

Gert

 







From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Ramprakash
Gopinathan
Sent: woensdag 11 oktober 2006 18:33
To: nant-developers@lists.sourceforge.net
Subject: [nant-dev] Building VS2005 projects using NANT 8.5 rc4





 

 
Is building vs2005 projects supported? Document says framework 2.0 is
supported.
I'm getting a project guid not found error when i build my vs2005 project using
nant 8.5 rc4
 
Thanks,









-
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-developers mailing list
nant-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nant-developers