[Nant-users] Embedded Resource Problem

2005-08-12 Thread Joshua Belden
Not sure what's going on. I'm trying to compile a project that has resx files created by visual studio. I'm using the following target. I am using the .NET 2.0 Framework and it's barfing on the resgen when it runs the csc task. I get the foll

Re: [Nant-users] Why is NAnt skipping my web project?

2005-08-12 Thread Célio Cidral Junior
Hi Gert! I downloaded and executed it, but still skips the web project. I changed my script for it to compile the web project alone and then executed it, and I got an error message: C:\projetos\GDQ>nant compile NAnt 0.85 (Build 0.85.2031.0; nightly; 24/7/2005) Copyright (C) 2001-2005 Gerry Shaw h

RE: [Nant-users] Why is NAnt skipping my web project?

2005-08-12 Thread Gert Driesen
Celio, The project is probably skipped because the name of the project configuration does not match the name of the solution configuration. This issue was fixed since. Try using a recent nightly build : http://nant.sourceforge.net/nightly/latest Gert > -Original Message- > From: [EMAI

[Nant-users] Why is NAnt skipping my web project?

2005-08-12 Thread Célio Cidral Junior
Hi! I have a solution containing four projects, and one of them is a web project. When I run my build script, the web project is being skipped. I checked everything and seems to be all right. The solution configuration is also ok, all projects are marked to be compiled. Does anyone know why it is

RE: [Nant-users] Query process

2005-08-12 Thread Bill_Martin
Even simpler, why not use: Process[] procs = Process.GetProcessByName("Flash"); if (procs.Length > 0) {     //One or more instances running - Do whatever } "Martin Thornalley" <[EMAIL PROTECTED]> Sent by: [EMAIL PROTECTED] 12/08/2005 14:50                 To:                 cc:        

RE: [Nant-users] Query process

2005-08-12 Thread Martin Thornalley
Here’s a short script I’ve written to query if a process called ‘Flash’ is running.  It’s very complex but just for completeness I thought I’d post it back.   Martin.