Using the examples available in the online docs for the 'zip' task as part of a build script. The ZIP file is created successfully and has the expected set of files except that the leading 2 characters of each of the filenames is missing.

 

        <zip zipfile="${build.dir}${project.name}Backup.zip">

            <fileset basedir="${src.dir}">

                <includes name="*.*"/>

            </fileset>

        </zip>

 

Expected file names:

AssemblyInfo.vb

HelloWorld.build

HelloWorld.chm

HelloWorld.ndoc

HelloWorld.sln

HelloWorld.vb

HelloWorld.vbproj

HelloWorld.vbproj.user

HelloWorld.xml

HelloWorldClass.vb

HelloWorldTest.vb

 

Actual file names:

semblyInfo.vb

lloWorld.build

lloWorld.chm

lloWorld.ndoc

lloWorld.sln

lloWorld.vb

lloWorld.vbproj

lloWorld.vbproj.user

lloWorld.xml

lloWorldClass.vb

lloWorldTest.vb

 

 

Reply via email to