[Nant-users] NAnt latest nightly can't find assembly referenced on network sha re

2005-05-27 Thread John Debay
Hi, The latest nightly of NAnt is having trouble finding a DLL reference in one of our projects. The DLL resides on a network share. Here is the error: --- [solution] Building 'Order Entry Interface' [Release] ... Build Error: NAnt.Core.BuildException Couldn't find referenced assembly

[Nant-users] D2036 or C1083, depending on your point of view (C++)

2005-05-17 Thread John Debay
Hi, If you specify an Intermediate Directory in a C++ project (right-click the project, click Properties, click General), you seem to run into trouble. In my real project, I received this error when specifying an intermediate directory with a trailing slash (e.g. $(ProjectDir)..\..\build\debug\

[Nant-users] LNK1181 error when specifying output file in VC++ solution

2005-05-17 Thread John Debay
Hi, It appears that if you change the name of an object file from "filename.obj" to something else in a Visual Studio 2003 project, NAnt cannot find that .obj file at link time. The build fails as a result. For example, if you have a file "foo.cpp", and you right-click on foo.cpp in the project

Re: [Nant-users] "Property name 'sys.env.;PATH' is invalid." error with sysinfo.

2004-10-25 Thread John Debay
on 10/22/2004 7:30 PM Merrill Cornish wrote: John, I don't know if this is a typo, but 'sys.env.;PATH' has an illegal character in it: the semi-colon. Also, from the DOS prompt, issue a "set" to see _exactly_ what capitalization of "PATH" is on your machine. For example, on my Windows XP Pro,

[Nant-users] "Property name 'sys.env.;PATH' is invalid." error with sysinfo.

2004-10-22 Thread John Debay
Hi, When I use sysinfo in my build script on my machine, everything works fine. When I run the same file on a different machine, NAnt reports the following error: $ nant -buildfile:test.build NAnt 0.85 (Build 0.85.1724.0; net-1.0.win32; nightly; 9/20/2004) Copyright (C) 2001-2004 Gerry Shaw http:

RE: [Nant-users] Solution Task and C++ Project configuration -- E Hsc

2004-09-17 Thread John Debay
This is a really nice fix to have. How many other options are not being sent to the compiler and linker through Nant? John > -Original Message- > From: Jeff McMahon [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 15, 2004 8:04 AM > To: 'Gert Driesen'; [EMAIL PROTECTED] > Subject: R

[Nant-users] Problems with CruiseControl.NET detecting C++ code changes

2004-09-15 Thread John Debay
Hi, I am using CruiseControl.NET to get the latest version of my C++ project and build it with NAnt. Right now, my project is a simple "Hello, world" application. The build process works fine, except for the fact that my code is not actually recompiled. The object files of my program currently hav

[Nant-users] NAnt fails to include standard C++ headers

2004-09-13 Thread John Debay
Hi, I am trying to compile a trivial source file with NAnt, but am having difficulty. I have one solution, which contains one project. The code is in C++. I am trying to use the solution task for the build. My code is as follows: #include int main(int argc, char * argv[]) { std::cout << "He

RE: [Nant-users] Debug or release builds, or both

2004-09-03 Thread John Debay
Vittoria [mailto:[EMAIL PROTECTED] > Sent: Thursday, September 02, 2004 9:10 PM > To: John Debay; [EMAIL PROTECTED] > Subject: RE: [Nant-users] Debug or release builds, or both > > John, > > I'm not sure how your script it setup but this *is* possible. > > For one, I wou

[Nant-users] Debug or release builds, or both

2004-09-02 Thread John Debay
Hi, I want to create a NAnt build script that can easily handle either debug or release builds, or both. In other words, from the command line, I want to be able to do any of: nant debug // creates debug build nant release// creates release build nant all/