Re: [nant-dev]

2004-01-16 Thread Ian MacLean
Right now it doesn't support remote stylesheets and in fact with recent changes ( current cvs ) it will give the following error instead: 'http://www.agamura.com/quxo/stylesheets/current/html/chunk.xsl' is not a valid value for attribute 'style' of . The given path's format is not supported.

[nant-dev]

2004-01-16 Thread Giuseppe Greco
Hi all, Is there a way to get the

[nant-dev] Re: SolutionTask

2004-01-16 Thread Matthew Mastracci
Guids should be unique. The only way to get this is by copying a project and forgetting to change it. VS.NET doesn't warn you of this, but behaves badly in subtle ways. Ian MacLean wrote: Is this the right patch ? if it is possible to have two valid projects with an identical guid should we u

Re: [nant-dev] SolutionTask

2004-01-16 Thread Ian MacLean
I'm convinced. Committed. Ian I think Martins patch should go in and I love the error message, very describing giving both the problem and solution. /Nicke Is this the right patch ? if it is possible to have two valid projects with an identical guid should we use a different key for the hash

Re: [nant-dev] SolutionTask

2004-01-16 Thread Nicklas Norling
It is not possible to have two identical GUIDs, such a case is an indication of corruption in the csproj file and should not be allowed. VS tries to sort things out (give it a second try if you will) by trying to look at project names and se if that would give a valid and unique combination, that i

RE: [nant-dev] SolutionTask

2004-01-16 Thread Randy Regnier
It is possible to have duplicate guids, but only when one project was copied by hand. Visual Studio would never do this on its own, and I suspect if one tried to use project references in VS, it would choke, as it uses the guid to identify the project. COM theory has it that guids are unique to on

Re: [nant-dev] SolutionTask

2004-01-16 Thread Ian MacLean
Is this the right patch ? if it is possible to have two valid projects with an identical guid should we use a different key for the hash table - perhaps a combination of the guid and the projectname ? Ian Hi all, I found one very annoying feature/bug of task: Projects (.csproj) are loaded in

Re: [nant-dev] types merging

2004-01-16 Thread Ian MacLean
What do you think? Should I prepare patch for it? sure. I'd like to see it. Ian Martin --- This SF.net email is sponsored by: Perforce Software. Perforce is the Fast Software Configuration Management System offering advanced branching ca

[nant-dev] SolutionTask

2004-01-16 Thread Martin Aliger
Hi all, I found one very annoying feature/bug of task: Projects (.csproj) are loaded into hashtable regarding their guid. But if two projects with same guid are loaded, no error/warning is issued and one of those projects disappears! Such projects could be created by copying and renaming existin