Bugs item #1642266, was opened at 2007-01-23 17:33
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=1642266&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: Core
Group: 0.85
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Birkir A. Barkarson (birkirb)
Assigned to: Nobody/Anonymous (nobody)
Summary: vbc task doesn't generate target files with period in name

Initial Comment:
A vbc task fails to generate the target file when there is a period in the DLL 
name,

Example:

output="${path}\My.Library.dll" will not output a dll file even though the 
compile succeeds while
output=${path}\MyLibrary.dll" will work correctly.

The same procedure works correctly for the CSC.

All the task info is like this:

<property name="outdirTest" value="My.Test/obj/Release" />
<property name="nsTest" value="My.Test" />

<target name="compile.Test" description="My.Test Compile">
        <mkdir dir="${outdirTest}" />
        <vbc
        target="library" 
        output="${outdirTest}/${nsTest}" 
        debug="${debug}" 
        
define="CONFIG=Release,TRACE=-1,_MyType=Windows,PLATFORM=AnyCPU,WindowsCE=TRUE"
        nostdlib="true"
        optionoptimize="true"
        rootnamespace="${nsTest}"
        >
                <sources>
                        <include name="${nsTest}/**/*.vb" />
                </sources>
                <resources dynamicprefix="true">
                        <include name="${nsTest}/**/*.resx" />
                </resources>
                <references>
                        <include 
name="${CompactFrameworkPath}\System.Data.dll"/>
                        <include name="${CompactFrameworkPath}\System.dll"/>
                        <include 
name="${CompactFrameworkPath}\System.Drawing.dll"/>
                        <include 
name="${CompactFrameworkPath}\System.Windows.Forms.dll"/>
                        <include name="${CompactFrameworkPath}\System.Xml.dll"/>
                </references>
                <imports>
                        <import namespace="Microsoft.VisualBasic" />
                        <import namespace="System" />
                        <import namespace="System.Collections" />
                        <import namespace="System.Collections.Generic" />
                        <import namespace="System.Drawing" />
                        <import namespace="System.Diagnostics" />
                        <import namespace="System.Diagnostics" />
                        <import namespace="System.Windows.Forms" />
                </imports>
                <nowarn>
                        <warning number="42016"/>
                        <warning number="41999"/>
                        <warning number="42017"/>
                        <warning number="42018"/>
                        <warning number="42019"/>
                        <warning number="42032"/>
                        <warning number="42036"/>
                        <warning number="42020"/>
                        <warning number="42021"/>
                        <warning number="42022"/>
                </nowarn>
                <arg line="/netcf /filealign:512 /noconfig  
/sdkpath:&quot;${CompactFrameworkPath}&quot;" />
        </vbc>
</target>



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

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

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
nant-developers mailing list
nant-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nant-developers

Reply via email to