[Mono-list] NAnt error with 03-Oct-01 snapshot
Brian Jepson
bjepson@oreilly.com
Thu, 4 Oct 2001 21:41:31 -0400 (EDT)
On Thu, 4 Oct 2001, Miguel de Icaza wrote:
> Brian, do you have any part of .NET on a networked share? If so,
> that is the reason for the failure, .NET refuses to load assemblies
> from the network
>
No, but I got it to work by downloaded NAnt, extracting it somewhere on my
hard drive, and changing class/makefile to:
NANT=/cygdrive/c/Downloads/nant/bin/NAnt.exe
all:
@echo "You must use 'make windows' or 'make linux'."
windows:
$(NANT) windows
unix: linux
linux:
$(NANT) linux
push:
scp lib/*.dll mono-cvs:libs
clean:
$(NANT) clean
Oh, wait - I've got it... I extracted the mono snapshot to a networked
drive, so the NAnt.exe packaged with Mono is running on the network!
Thanks,
Brian