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
Post a Comment