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
DnnPackager is not using the intermediate output directory (/obj/ folder) for its packaging location, instead its doing it directly in the project dir. This means it leaves the zip file there. The zip file is not produced in your bin/debug or bin/release directpry (output dir) as you'd expect either.
The text was updated successfully, but these errors were encountered:
This issue has been fixed by the work carried out for #15. Once I merge that from my branch this will be closed.
The improvements are:
Packaging now happens in the Intermediate Output Folder - which is by default under the /obj directory.
When you do a clean, the /obj folder is cleaned meaning all the files produced by dnn packager during packaging are cleaned.
The install zip file is now placed in your OutDir i.e typically this is bin/release or bin/debug but it's whatever you have configured for your current build configuration.
The install zip file is now automatically cleaned when you would expect it to be cleaned - i.e if you do a Rebuild, or a Clean, then the zip file will be removed from the output dir just like other build output is.
DnnPackager is not using the intermediate output directory (/obj/ folder) for its packaging location, instead its doing it directly in the project dir. This means it leaves the zip file there. The zip file is not produced in your bin/debug or bin/release directpry (output dir) as you'd expect either.
The text was updated successfully, but these errors were encountered: