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

相关文章:

  • 2022-12-23
  • 2022-01-31
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-03-09
猜你喜欢
  • 2021-11-21
  • 2022-12-23
  • 2022-01-10
  • 2022-12-23
  • 2021-09-04
  • 2022-12-23
  • 2021-09-21
相关资源
相似解决方案