From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Thomas Tomiczek
Sent: donderdag 12 mei 2005 17:32
To: nant-users@lists.sourceforge.net
Subject: [Nant-users] Bug report - nant solutions task blowing on "odd" file names........does not work if an item has a special char in it's path.
In our case we just blew on a ressource named "topic-pinned&locked.gif".
The entry in the csproj looked like this:
<File
RelPath = "Resources\topic-pinned&locked.gif"
BuildAction = "EmbeddedResource"
/>
<File
RelPath = "Resources\topic-pinned&locked_notread.gif"
BuildAction = "EmbeddedResource"
/>And this is the nant error:
Error loading project 'C:\Work\PowerNodes\PowerNodes\01.1\Solutions\PowerNodes\P
owerNodes.Msg\PowerNodes.Msg.csproj'.
An error occurred while parsing EntityName. Line 334, position 55.Total time: 5 seconds.
Note that this IS an issue with the project file, but VS.NET has no issue with this.
Thomas
Title: Bug report - nant solutions task blowing on "odd" file names....
Thomas,
This is by design. We always expect the project files to be
valid XML. This is also mentioned on the <solution> task doc page (http://nant.sourceforge.net/release/latest/help/tasks/solution.html).
Gert