forked from shuruev/CCNet.Extensions
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDeploy.bat
More file actions
21 lines (18 loc) · 1.5 KB
/
Deploy.bat
File metadata and controls
21 lines (18 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
@ECHO OFF
SETLOCAL
SET ServerPath=\\rufrt-vxbuild\d$\CruiseControl.NET\Server
XCOPY "CCNet.Extensions.Plugin\bin\Debug\CCNet.Extensions.Plugin.dll" "%ServerPath%\" /Y
XCOPY "CCNet.ProjectAdapter\bin\Debug\CCNet.ProjectAdapter.exe" "%ServerPath%\CCNet.ProjectAdapter\" /Y
XCOPY "CCNet.ProjectAdapter\bin\Debug\CCNet.Common.dll" "%ServerPath%\CCNet.ProjectAdapter\" /Y
XCOPY "CCNet.ProjectChecker\bin\Debug\CCNet.ProjectChecker.exe" "%ServerPath%\CCNet.ProjectChecker\" /Y
XCOPY "CCNet.ProjectChecker\bin\Debug\CCNet.Common.dll" "%ServerPath%\CCNet.ProjectChecker\" /Y
XCOPY "CCNet.ProjectNotifier\bin\Debug\CCNet.ProjectNotifier.exe" "%ServerPath%\CCNet.ProjectNotifier\" /Y
XCOPY "CCNet.ProjectNotifier\bin\Debug\CCNet.Common.dll" "%ServerPath%\CCNet.ProjectNotifier\" /Y
XCOPY "CCNet.ServiceChecker\bin\Debug\CCNet.ServiceChecker.exe" "%ServerPath%\CCNet.ServiceChecker\" /Y
XCOPY "CCNet.ServiceChecker\bin\Debug\CCNet.Common.dll" "%ServerPath%\CCNet.ServiceChecker\" /Y
XCOPY "CCNet.ObsoleteCleaner\bin\Debug\CCNet.ObsoleteCleaner.exe" "%ServerPath%\CCNet.ObsoleteCleaner\" /Y
XCOPY "CCNet.ObsoleteCleaner\bin\Debug\CCNet.Common.dll" "%ServerPath%\CCNet.ObsoleteCleaner\" /Y
XCOPY "CCNet.ObsoleteCleaner\bin\Debug\CCNet.Releaser.Client.dll" "%ServerPath%\CCNet.ObsoleteCleaner\" /Y
XCOPY "CCNet.ObsoleteCleaner\bin\Debug\ReleaserInterfaces.dll" "%ServerPath%\CCNet.ObsoleteCleaner\" /Y
XCOPY "CCNet.ObsoleteCleaner\bin\Debug\CCNet.ObsoleteCleaner.exe.config" "%ServerPath%\CCNet.ObsoleteCleaner\" /Y
PAUSE