Skip to content

Instantly share code, notes, and snippets.

@tkMageztik
Created October 25, 2020 22:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tkMageztik/4a2878f0aad42de5b4469b413c20560a to your computer and use it in GitHub Desktop.
Save tkMageztik/4a2878f0aad42de5b4469b413c20560a to your computer and use it in GitHub Desktop.
Create directorys using prebuild, postbuild config
https://stackoverflow.com/questions/33067769/how-to-add-a-pre-build-step-to-project-via-the-visual-studio-ide
Some code example:
if not exist DirToCreate mkdir DirToCreate
mkdir $(TargetDir)\Design
//$(TargetDir) put all the path of your bin folder of your project, so is unnecesary if you just want to create in bing folder.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment