Skip to content

Instantly share code, notes, and snippets.

@0xlitf
Created March 31, 2016 05:44
Show Gist options
  • Save 0xlitf/d3eea448e74279dbebd55bf57163c188 to your computer and use it in GitHub Desktop.
Save 0xlitf/d3eea448e74279dbebd55bf57163c188 to your computer and use it in GitHub Desktop.
vs编译完成自动拷贝dll
@echo copy dlls to bin
if $(PlatformTarget)==x64 (
xcopy "$(SolutionDir)built\$(ProjectName)\$(Platform)\$(Configuration)\*.dll" "$(SolutionDir)$(Platform)\$(Configuration)\bin" /y
)
if $(PlatformTarget)==x86 (
xcopy "$(SolutionDir)built\$(ProjectName)\$(Platform)\$(Configuration)\*.dll" "$(SolutionDir)$(Platform)\$(Configuration)\bin" /y
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment