Bugs item #1546758, was opened at 2006-08-25 11:26
Message generated for change (Tracker Item Submitted) made by Item Submitter
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?  



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

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