Re: [NAnt-users] Solution format of file is not supported.

2011-05-26 Thread Bob Archer
Did you try it without passing any properties? Frankly I use the exec task to run MSBuild. Can you build with MSbuild from your command line? Be sure that works so you can rule this out as an issue. BOb From: Jed Padilla [mailto:jpadi...@flclerks.com] Sent: Thursday, May 26, 2011 4:01 PM To:

Re: [NAnt-users] Solution format of file is not supported.

2011-05-26 Thread Wilson, Brian
The platform specified in the error is BNB. Did you create this platform type? If it is supposed to be x86 or x64 or Any CPU, then you will want to add a property to include the platform. Something like this and you will probably have to include the overwrite attribute on the property like

Re: [NAnt-users] Solution format of file is not supported.

2011-05-26 Thread Jed Padilla
@Chris capitalizing the D gives the same error. The projects within the solution are all .Net Framework 3.5, with an output type of Class Library. Each project has its own subfolder within the parent, and the output should be going to each projects bin folder. Build order is important, but it is

Re: [NAnt-users] Solution format of file is not supported.

2011-05-26 Thread Chris Fouts
Try "Debug" instead of "debug," like this... From: Jed Padilla [mailto:jpadi...@flclerks.com] Sent: Thursday, May 26, 2011 4:01 PM To: Chris Fouts; 'Brass Tilde' Cc: nant-users@lists.sourceforge.n

Re: [NAnt-users] Solution format of file is not supported.

2011-05-26 Thread Wilson, Brian
First, is this a .NET 4.0 application? Lastly, what does your target look like that is calling msbuild? Brian Wilson Programmer Analyst, Associate Department of Human Resources Email: brian.wil...@dhr.alabama.gov From: Jed Padilla [mailto:jpadi...@flclerks.com] Sent: Thursday, May 26, 2011 3

Re: [NAnt-users] Solution format of file is not supported.

2011-05-26 Thread Jed Padilla
Somehow I managed to download NAnt .85 and not NAntContrib (I wondered why it looked exactly like the other binary I had, size and all). Now I am getting a better error message (I think) build.FACCBase: [msbuild] Build started 5/26/2011 3:57:55 PM. [msbuild] Project "C:\TESTTFS\FACCBa

Re: [NAnt-users] Solution format of file is not supported.

2011-05-26 Thread Chris Fouts
The installation instruction for nantcontrib say to copy the \bin files in the \bin folder. Did you do that? -chris From: Jed Padilla [mailto:jpadi...@flclerks.com] Sent: Thursday, May 26, 2011 3:49 PM To: 'Brass Tilde' Cc: nant-users@lists.sourceforge.net Subject: Re: [NAnt-users] Solution form

Re: [NAnt-users] Solution format of file is not supported.

2011-05-26 Thread Wilson, Brian
Use the loadtasks target before you call MSBuild. Brian Wilson Programmer Analyst, Associate Department of Human Resources Email: brian.wil...@dhr.alabama.gov From: Jed Padilla [mailto:jpadi...@flclerks.com] Sent: Thursday, May 26, 2011 2:49 PM To: 'Brass Tilde' Cc: nant-users@lists.sourcefor

Re: [NAnt-users] Solution format of file is not supported.

2011-05-26 Thread Jed Padilla
I guess I am missing something simple. I went out and downloaded nantcontrib 0.85. I tried adding the following to my build.FACCBase target And now I am getting the error I

Re: [NAnt-users] Solution format of file is not supported.

2011-05-26 Thread Wilson, Brian
BUILD FILE 1 {DO SOMETHING HERE} BUILD FILE 2 {

Re: [NAnt-users] Solution format of file is not supported.

2011-05-26 Thread Jed Padilla
The solution is indeed newer, it is VS2010. I will take a look at the link you gave below and see if that lets me do what I want. As a follow up question assuming I get this to work. Once I have all 10 .build files, can I make 1 .build file in the parent directory and invoke that to build all 10

Re: [NAnt-users] Solution format of file is not supported.

2011-05-26 Thread Brass Tilde
We've found that it's easiest to just use the MSBuild task, rather than the solution task, which calls out to MSBuild itself. On Thu, May 26, 2011 at 2:22 PM, Jed Padilla wrote: > I recently had a friend recommend NAnt to me. The project I am working on > has 10 different solutions to it, and e

Re: [NAnt-users] Solution format of file is not supported.

2011-05-26 Thread Wilson, Brian
Are any of the projects dependent on another project? Do you have this specified in the solution file? I have never used this tag, as my projects usually involve web sites and desktop applications. You might want to use something along these lines.

Re: [NAnt-users] Solution format of file is not supported.

2011-05-26 Thread Chris Fouts
The target is buggy, and I've never been able to make it work. I just use the devenv.com command line. From: Jed Padilla [mailto:jpadi...@flclerks.com] Sent: Thursday, May 26, 2011 2:23 PM To: nant-users@lists.sour

[NAnt-users] Solution format of file is not supported.

2011-05-26 Thread Jed Padilla
I recently had a friend recommend NAnt to me. The project I am working on has 10 different solutions to it, and each solution usually has multiple projects within that will output dll files for the final solution to use. I have a very simple .build file right now: