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

c++ - CPP, 'X' button listener -

.net - Bulk insert via Dapper is slower than inserting rows one-by-one -

shared memory - gstreamer shmsrc and shmsink with h264 data -