ZZZ_copySersStatic.bat 980 B

1234567891011121314151617181920212223242526272829
  1. @echo "copy PublishFile"
  2. xcopy "..\PublishFile\SersPublish" "SersPublish" /e /i /r /y
  3. @echo "copy ServiceCenter wwwroot"
  4. xcopy "..\..\netcore\ServiceCenter\App.Gover.Gateway\wwwroot" "SersPublish\ServiceCenter\wwwroot" /e /i /r /y
  5. @echo "copy Gover wwwroot"
  6. xcopy "..\..\netcore\ServiceCenter\App.Gover.Gateway\wwwroot" "SersPublish\Gover\wwwroot" /e /i /r /y
  7. @echo "copy Robot wwwroot"
  8. xcopy "..\..\netcore\Station\App.Robot.Station\wwwroot" "SersPublish\Robot\wwwroot" /e /i /r /y
  9. @echo "copy xml of ServiceCenter"
  10. xcopy "..\..\netcore\ServiceCenter\App.ServiceCenter\bin\Debug\netcoreapp2.1\*.xml" "SersPublish\ServiceCenter" /i /r /y
  11. @echo "copy xml of Robot"
  12. xcopy "..\..\netcore\Station\App.Robot.Station\bin\Debug\netcoreapp2.1\*.xml" "SersPublish\Robot" /i /r /y
  13. @echo "copy xml of Demo"
  14. xcopy "..\..\StationDemo\SersLoader\Did.SersLoader.Demo\bin\Debug\netcoreapp2.1\*.xml" "SersPublish\Demo" /i /r /y
  15. @echo succeed