c# - Create a folder after build using project.json in NET Core -


i know can use "copytooutput" in project.json copy files project's output directory, possible copy on entire folder?

you can add directories way add files. note empty directories ignored using approach.

"buildoptions": {     "copytooutput": {       "include": [ "somefile.json", "mydirectory" ],     }   } 

Comments

Popular posts from this blog

qt - QML MouseArea onWheel event not working properly when inside QML Scrollview -

java - is not an enclosing class / new Intent Cannot Resolve Constructor -

python - Error importing VideoFileClip from moviepy : AttributeError: 'PermissionError' object has no attribute 'message' -