Bugs item #1546758, was opened at 2006-08-25 18:26
Message generated for change (Comment added) made by drieseng
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=402868&aid=1546758&group_id=31650

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: Tasks
Group: 0.85
Status: Open
Resolution: None
Priority: 5
Submitted By: Changsu Go (flynhigh)
Assigned to: Nobody/Anonymous (nobody)
Summary: Problem with making publisher policy dll with nant "al" task

Initial Comment:
NAnt has al task that wraps al.exe, the assembly linker
for the .NET Framework.
However, the publisher policy dll that this task is
generating is different from the one that al.exe is
generating.
Basically, it will not work.

I tried below al task.
<al output="policy.name.dll" target="lib"
keyfile="key.file.snk" version="current.version"
title="Publisher Policy for current.version.major.minor">
<sources>
<include name="policy.name.txt" />
</sources>
</al>

And I tried this exec task.
<exec program="al" commandline="/link:policy.name.txt
/out:policy.name.dll /keyfile:key.file.snk
/version:current.version /title:"Publisher Policy for
current.version.major.minor"" />

Note that target attribute in al task is required.

The former one is not working while the latter one
works fine.
Anyone has any idea?  



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

>Comment By: Gert Driesen (drieseng)
Date: 2006-08-26 18:42

Message:
Logged In: YES 
user_id=707851

Changsu,

The <al> task treats all sources as embbedded resources, 
not linked resources.

I've been meaning to add support for linked sources for a 
while, but I'd like to come to a good design that supports 
both pattern matching (which is what we have right now for 
embedded resources), and explicit (manifest) naming of 
resources.

Also, we need to decide whether we want to allow the 
accessibility of resources to be set on the resource-level 
or only on the container (eg. fileset) level.

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

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=402868&aid=1546758&group_id=31650

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
nant-developers mailing list
nant-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nant-developers

Reply via email to