Skip to content

Instantly share code, notes, and snippets.

@BurstX
Last active July 19, 2022 11:42
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 BurstX/4b464d5e8595abe4f6949bad6f516f1f to your computer and use it in GitHub Desktop.
Save BurstX/4b464d5e8595abe4f6949bad6f516f1f to your computer and use it in GitHub Desktop.
Windows command line to copy repo with a Visual Studio solution (without compilation artifacts and temporary IDE files)
xcopy $srcPath $destPath /E /H /Q /EXCLUDE:vs.excl
<#
vs.excl file:
--------------
\obj\
\bin\
\.vs\
\.vscode\
\.idea\
#>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment