You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After I build my project I have the following directory structure
ci\build\project1 (contains all files for project 1)
ci\build\project2 (contains all files for project 2)
ci\build\project3\sub\dir (contains all files for project 3)
Now I want to create a zip file named project-version.zip with directories projec1 and project2
However, this would place all files from project 1 in the zip folder ci\build\project1 instead of project1
The CreateZip function contains a parameter working dir /// - workingDir - The relative dir of the zip files. Use this parameter to influence directory structure within zip file. which I would need to change this behaviour but ZipOfIncludes doesn't . It would be great to allow to define this per include (since project 3 in this example is even in a deeper structure.
http://fsharp.github.io/FAKE/apidocs/fake-ziphelper.html
After I build my project I have the following directory structure
Now I want to create a zip file named project-version.zip with directories projec1 and project2
However, this would place all files from project 1 in the zip folder
ci\build\project1
instead ofproject1
The
CreateZip
function contains a parameter working dir/// -
workingDir- The relative dir of the zip files. Use this parameter to influence directory structure within zip file.
which I would need to change this behaviour butZipOfIncludes
doesn't . It would be great to allow to define this per include (since project 3 in this example is even in a deeper structure.So I want to write this:
The text was updated successfully, but these errors were encountered: