Bugs item #838111, was opened at 2003-11-07 20:56
Message generated for change (Comment added) made by drieseng
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=474851&aid=838111&group_id=54790

Category: None
Group: None
>Status: Closed
>Resolution: Out of Date
Priority: 5
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: Mishandles resource file names - fixes inline

Initial Comment:
My example project is an asp.net with codebehind, so 
there are multiple default.aspx.resx files.

Slingshot wants to create multiple occurrences of file 
RootNamespace.default.aspx.resources which produces 
errors: "error CS1508: Resource 
identifier 'EPIC.default.aspx.resources' has already been 
used in this assembly"

Changes to 4 files to use the VS.NET behavior of naming 
the files after their path solves the problem:

SLiNgshoT.Core\Driver.cs(326)
  string path = file.ResourceName + ".resources";

SLiNgshoT.Core\NAntWriter.cs(326)
  writer.WriteAttributeString("output",
    "${build.dir}\" + file.ResourceName + ".resources");

SLiNgshoT.Core\NAntWriter.cs(537)
   string path = file.ResourceName + ".resources";

SLiNgshoT.Core\NMakeWriter.cs(256)
  writer.WriteLine("\tresgen " +
    file.RelativePathFromSolutionDirectory +
    " $(" + GetProjectName(project) + "_DIRECTORY)\" +
    file.ResourceName + ".resources");

Dave Goldstein
[EMAIL PROTECTED]


----------------------------------------------------------------------

>Comment By: Gert Driesen (drieseng)
Date: 2004-08-02 14:50

Message:
Logged In: YES 
user_id=707851

slingshot has been deprecated

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=474851&aid=838111&group_id=54790


-------------------------------------------------------
This SF.Net email is sponsored by OSTG. Have you noticed the changes on
Linux.com, ITManagersJournal and NewsForge in the past few weeks? Now,
one more big change to announce. We are now OSTG- Open Source Technology
Group. Come see the changes on the new OSTG site. www.ostg.com
_______________________________________________
NAntContrib-Developer mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nantcontrib-developer

Reply via email to