Re: [nant-dev] Re: Visual Studio.NET Addin initial thoughs

2002-07-18 Thread Jayme Edwards
Understood. I agree being able to reflect the Tasks to know how to show stuff would be nice. Unfortunately you still have to use the raw DOM API for things like cut/copy/paste and such. I've noticed with the NAnt Task API, anything other than a file set (as child XML elements) you have to write

RE: [nant-dev] FTP Task

2002-07-18 Thread Scott Hernandez
Nope, but there is a simple SCPTask in NAntContrib. It is far from done, but does work. It would be nice if in the end they work similarly. I'd say go for it. If possible it would be even better if there were a native .net ftp client library we could use. You could take a look at this

[nant-dev] Problem with embeded resources

2002-07-18 Thread Browning, Don
Title: Problem with embeded resources Currently, my build script works fine, it runs start to finish compiling my app (1 exe, 18 dll's), but once I run the main executable, the get the following error: An unhandled exception of type 'System.Resources.MissingManifestResourceException'

Re: [nant-dev] Problem with embeded resources

2002-07-18 Thread Ian MacLean
Don, What does your vbc task look like ? Are you adding the resources properly using the arg element ? - see below an example of how to do this. You can examine what resources have been added to an assembly using ildsam - open the double-click on the MANIFEST node. 1) resgen the resx file

Re: [nant-dev] XML Logging?

2002-07-18 Thread Ian MacLean
[EMAIL PROTECTED] wrote: Hi All, I have this sinking feeling that this is going to in fact be very difficult as each task/target formats their log messages individually so that targets have their name prefixed with a : and targets are wrapped like this [task] at the point of log message

RE: [nant-dev] Problem with embeded resources

2002-07-18 Thread Browning, Don
Title: RE: [nant-dev] Problem with embeded resources Wow, That's my problem, I didn't realize you couldn't embed the resx files, but I see that they are only a design time thing and they must be compiled down themselves. Now my only other question is this: I can't seem to find a resgen task.

RE: [nant-dev] Problem with embeded resources

2002-07-18 Thread Kevin Miller
There is a resgen task in the NAntContrib project. I faked out and did exec path. echo message=Creating Error Messages Resource / exec program=resgen.exe commandline=quot;${src.dir}\ErrorMsgs.txtquot; ${build.dir}\ErrorMsgs.resources / $quot : are important if there are spaces in your paths.

Re: [nant-dev] Problem with embeded resources

2002-07-18 Thread Ian MacLean
Kevin Miller wrote: Word is there will be a release soon with a nice installer for both NAnt and NAntContrib. Kevin Miller - you can get the current version of the installer at http://www26.brinkster.com/ianm74/ it's from cvs as of last week. It has a working NAntContrib dll with