zoukankan      html  css  js  c++  java
  • Prebuild Command line(Copy) . vc2008预生成事件和生成后事件的用法

    xcopy $(SolutionDir)/PreBuild/Share   $(SolutionDir)/Debug/ /s /e /c /y
    xcopy $(SolutionDir)/PreBuild/Debug   $(SolutionDir)/Debug/ /s /e /c /y


    xcopy $(SolutionDir)/PreBuild/Release   $(SolutionDir)/Release/  /s /e /c /y
    xcopy $(SolutionDir)/PreBuild/Share   $(SolutionDir)/Release/ /s /e /c /y

    if $(ConfigurationName) == Debug goto :debug
     :release
      xcopy $(SolutionDir)/PreBuild/Share   $(SolutionDir)/Release/ /s /e /c /y
      xcopy $(SolutionDir)/PreBuild/Release   $(SolutionDir)/Release/ /s /e /c /y
    goto :exit

    :debug
    xcopy $(SolutionDir)/PreBuild/Share   $(SolutionDir)/Debug/ /s /e /c /y
     xcopy $(SolutionDir)/PreBuild/Debug   $(SolutionDir)/Debug/ /s /e /c /y
    :exit

  • 相关阅读:
    Nuget:aliyun-openapi-sdk
    iptables简述
    openOffice安装
    bash:command not found
    linux nc命令
    linux命令帮助
    linux用户管理
    LDAP 后缀操作
    LDAP缓存命令
    LDAP索引及缓存优化
  • 原文地址:https://www.cnblogs.com/lidabo/p/2568643.html
Copyright © 2011-2022 走看看