forked from continuoustests/ContinuousTests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstandalone_package.bat
144 lines (123 loc) · 7.63 KB
/
standalone_package.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
@echo off
SET DIR=%~d0%~p0%
SET SOURCEDIR="%DIR%src"
SET BINARYDIR="%DIR%build_output"
SET OBFUSCATEDDIR="%DIR%ReleaseBinaries"
SET DEPLOYDIR="%DIR%ReleaseBinaries\Installer\Standalone"
IF NOT EXIST %DEPLOYDIR% (
mkdir %DEPLOYDIR%
) ELSE (
del %DEPLOYDIR%\* /Q
)
IF NOT EXIST %DEPLOYDIR%\en-US (
mkdir %DEPLOYDIR%\en-US
) ELSE (
del %DEPLOYDIR%\en-US\* /Q
)
IF NOT EXIST %DEPLOYDIR%\Icons (
mkdir %DEPLOYDIR%\Icons
) ELSE (
del %DEPLOYDIR%\Icons\* /Q
)
IF NOT EXIST %DEPLOYDIR%\TestRunners (
mkdir %DEPLOYDIR%\TestRunners
) ELSE (
del %DEPLOYDIR%\TestRunners\* /Q
)
IF NOT EXIST %DEPLOYDIR%\TestRunners\NUnit (
mkdir %DEPLOYDIR%\TestRunners\NUnit
) ELSE (
del %DEPLOYDIR%\TestRunners\NUnit\* /Q
)
IF NOT EXIST %DEPLOYDIR%\TestRunners\XUnit (
mkdir %DEPLOYDIR%\TestRunners\XUnit
) ELSE (
del %DEPLOYDIR%\TestRunners\XUnit\* /Q
)
IF NOT EXIST %DEPLOYDIR%\TestRunners\MSTest (
mkdir %DEPLOYDIR%\TestRunners\MSTest
) ELSE (
del %DEPLOYDIR%\TestRunners\MSTest\* /Q
)
IF NOT EXIST %DEPLOYDIR%\TestRunners\MSpec (
mkdir %DEPLOYDIR%\TestRunners\MSpec
) ELSE (
del %DEPLOYDIR%\TestRunners\MSpec\* /Q
)
IF NOT EXIST %DEPLOYDIR%\TestRunners\MbUnit (
mkdir %DEPLOYDIR%\TestRunners\MbUnit
) ELSE (
del %DEPLOYDIR%\TestRunners\MbUnit\* /Q
)
IF NOT EXIST %DEPLOYDIR%\TestRunners\SimpleTesting (
mkdir %DEPLOYDIR%\TestRunners\SimpleTesting
) ELSE (
del %DEPLOYDIR%\TestRunners\SimpleTesting\* /Q
)
copy %DIR%lib\AutoTest.Net\AutoTest.Messages.dll %DEPLOYDIR%\AutoTest.Messages.dll
copy %DIR%lib\AutoTest.Net\AutoTest.Core.dll %DEPLOYDIR%\AutoTest.Core.dll
copy %DIR%lib\AutoTest.Net\AutoTest.UI.dll %DEPLOYDIR%\AutoTest.UI.dll
copy %DIR%lib\AutoTest.Net\AutoTest.TestRunner.exe %DEPLOYDIR%\AutoTest.TestRunner.exe
copy %DIR%lib\AutoTest.Net\AutoTest.TestRunner.exe.config %DEPLOYDIR%\AutoTest.TestRunner.exe.config
copy %DIR%lib\AutoTest.Net\AutoTest.TestRunner.v4.0.exe %DEPLOYDIR%\AutoTest.TestRunner.v4.0.exe
copy %DIR%lib\AutoTest.Net\AutoTest.TestRunner.v4.0.exe.config %DEPLOYDIR%\AutoTest.TestRunner.v4.0.exe.config
copy %DIR%lib\AutoTest.Net\AutoTest.TestRunner.x86.exe %DEPLOYDIR%\AutoTest.TestRunner.x86.exe
copy %DIR%lib\AutoTest.Net\AutoTest.TestRunner.x86.exe.config %DEPLOYDIR%\AutoTest.TestRunner.x86.exe.config
copy %DIR%lib\AutoTest.Net\AutoTest.TestRunner.x86.v4.0.exe %DEPLOYDIR%\AutoTest.TestRunner.x86.v4.0.exe
copy %DIR%lib\AutoTest.Net\AutoTest.TestRunner.x86.v4.0.exe.config %DEPLOYDIR%\AutoTest.TestRunner.x86.v4.0.exe.config
copy %DIR%lib\AutoTest.Net\AutoTest.TestRunners.Shared.dll %DEPLOYDIR%\AutoTest.TestRunners.Shared.dll
copy %DIR%lib\AutoTest.Net\progress.gif %DEPLOYDIR%\progress.gif
copy %DIR%lib\AutoTest.Net\progress-light.gif %DEPLOYDIR%\progress-light.gif
copy %DIR%lib\AutoTest.Net\Worst.Testing.Framework.Ever.dll %DEPLOYDIR%\Worst.Testing.Framework.Ever.dll
copy %DIR%lib\AutoTest.Net\Worst.Testing.Framework.Ever.License.txt %DEPLOYDIR%\Worst.Testing.Framework.Ever.License.txt
copy %DIR%lib\AutoTest.Net\NUnit.License.txt %DEPLOYDIR%\NUnit.License.txt
copy %DIR%lib\AutoTest.Net\TestRunners\NUnit\AutoTest.TestRunners.NUnit.dll %DEPLOYDIR%\TestRunners\NUnit\AutoTest.TestRunners.NUnit.dll
copy %DIR%lib\AutoTest.Net\TestRunners\NUnit\nunit.core.dll %DEPLOYDIR%\TestRunners\NUnit\nunit.core.dll
copy %DIR%lib\AutoTest.Net\TestRunners\NUnit\nunit.core.interfaces.dll %DEPLOYDIR%\TestRunners\NUnit\nunit.core.interfaces.dll
copy %DIR%lib\AutoTest.Net\TestRunners\NUnit\nunit.util.dll %DEPLOYDIR%\TestRunners\NUnit\nunit.util.dll
copy %DIR%lib\AutoTest.Net\TestRunners\XUnit\AutoTest.TestRunners.XUnit.dll %DEPLOYDIR%\TestRunners\XUnit\AutoTest.TestRunners.XUnit.dll
copy %DIR%lib\AutoTest.Net\TestRunners\XUnit\xunit.runner.utility.dll %DEPLOYDIR%\TestRunners\XUnit\xunit.runner.utility.dll
copy %DIR%lib\AutoTest.Net\TestRunners\MSTest\AutoTest.TestRunners.MSTest.dll %DEPLOYDIR%\TestRunners\MSTest\AutoTest.TestRunners.MSTest.dll
copy %DIR%lib\AutoTest.Net\TestRunners\MSTest\celer.Core.dll %DEPLOYDIR%\TestRunners\MSTest\celer.Core.dll
copy %DIR%lib\AutoTest.Net\TestRunners\MSpec\AutoTest.TestRunners.MSpec.dll %DEPLOYDIR%\TestRunners\MSpec\AutoTest.TestRunners.MSpec.dll
copy %DIR%lib\AutoTest.Net\TestRunners\MbUnit\AutoTest.TestRunners.MbUnit.dll %DEPLOYDIR%\TestRunners\MbUnit\AutoTest.TestRunners.MbUnit.dll
copy %DIR%lib\AutoTest.Net\TestRunners\MbUnit\Gallio.dll %DEPLOYDIR%\TestRunners\MbUnit\Gallio.dll
copy %DIR%lib\AutoTest.Net\TestRunners\MbUnit\Gallio.XmlSerializers.dll %DEPLOYDIR%\TestRunners\MbUnit\Gallio.XmlSerializers.dll
copy %DIR%lib\AutoTest.Net\TestRunners\MbUnit\mbunit.config %DEPLOYDIR%\TestRunners\MbUnit\mbunit.config
copy %DIR%lib\AutoTest.Net\TestRunners\SimpleTesting\AutoTest.TestRunners.SimpleTesting.dll %DEPLOYDIR%\TestRunners\SimpleTesting\AutoTest.TestRunners.SimpleTesting.dll
copy %DIR%lib\AutoTest.Net\TestRunners\SimpleTesting\Simple.Testing.Framework.dll %DEPLOYDIR%\TestRunners\SimpleTesting\Simple.Testing.Framework.dll
copy %DIR%lib\AutoTest.Net\TestRunners\SimpleTesting\Simple.Testing.ClientFramework.dll %DEPLOYDIR%\TestRunners\SimpleTesting\Simple.Testing.ClientFramework.dll
copy %DIR%lib\AutoTest.Net\TestRunners\SimpleTesting\PowerAssert.dll %DEPLOYDIR%\TestRunners\SimpleTesting\PowerAssert.dll
copy %DIR%lib\AutoTest.Net\FSWatcher.dll %DEPLOYDIR%\FSWatcher.dll
copy %DIR%lib\AutoTest.Net\Castle.Core.dll %DEPLOYDIR%\Castle.Core.dll
copy %DIR%lib\AutoTest.Net\Castle.Facilities.Logging.dll %DEPLOYDIR%\Castle.Facilities.Logging.dll
copy %DIR%lib\AutoTest.Net\Castle.license.txt %DEPLOYDIR%\Castle.license.txt
copy %DIR%lib\AutoTest.Net\Castle.Windsor.dll %DEPLOYDIR%\Castle.Windsor.dll
copy %DIR%lib\AutoTest.Net\Icons\* %DEPLOYDIR%\Icons
copy %DIR%License.txt %DEPLOYDIR%\License.txt
copy "%DIR%lib\cecil deploy\Mono.Cecil.Rocks.dll" %DEPLOYDIR%\Mono.Cecil.Rocks.dll
copy %DIR%\lib\Rhino.Licensing\acknowledgements.txt %DEPLOYDIR%\Rhino.Licensing.acknowledgements.txt
copy %DIR%\lib\Rhino.Licensing\license.txt %DEPLOYDIR%\Rhino.Licensing.license.txt
copy %DIR%\lib\Rhino.Licensing\Rhino.Licensing.dll %DEPLOYDIR%\Rhino.Licensing.dll
copy %DIR%\lib\Rhino.Licensing\log4net.dll %DEPLOYDIR%\log4net.dll
copy %DIR%\lib\Rhino.Licensing\log4net.license.txt %DEPLOYDIR%\log4net.license.txt
rem copy %BINARYDIR%\Microsoft.msagl.GraphViewerGDI.dll %DEPLOYDIR%\Microsoft.msagl.GraphViewerGDI.dll
rem copy %BINARYDIR%\Microsoft.msagl.dll %DEPLOYDIR%\Microsoft.msagl.dll
rem copy %BINARYDIR%\Microsoft.msagl.drawing.dll %DEPLOYDIR%\Microsoft.msagl.drawing.dll
copy %BINARYDIR%\AutoTest.Minimizer.dll %DEPLOYDIR%\AutoTest.Minimizer.dll
copy %BINARYDIR%\ContinuousTests.exe %DEPLOYDIR%\ContinuousTests.exe
copy %BINARYDIR%\ContinuousTests.ExtensionModel.dll %DEPLOYDIR%\ContinuousTests.ExtensionModel.dll
copy %BINARYDIR%\Mono.Cecil.dll %DEPLOYDIR%\Mono.Cecil.dll
copy %BINARYDIR%\AutoTest.VM.exe %DEPLOYDIR%\AutoTest.VM.exe
copy %BINARYDIR%\AutoTest.VM.Messages.dll %DEPLOYDIR%\AutoTest.VM.Messages.dll
copy %BINARYDIR%\AutoTest.Graphs.dll %DEPLOYDIR%\AutoTest.Graphs.dll
copy %BINARYDIR%\AutoTest.Client.dll %DEPLOYDIR%\AutoTest.Client.dll
rem copy %BINARYDIR%\AutoTest.VS.dll %DEPLOYDIR%\AutoTest.VS.dll
rem copy %BINARYDIR%\AutoTest.VS.Util.dll %DEPLOYDIR%\AutoTest.VS.Util.dll
rem copy %BINARYDIR%\AutoTest.VS.RiskClassifier.dll %DEPLOYDIR%\AutoTest.VS.RiskClassifier.dll
rem copy %BINARYDIR%\AutoTest.VS.2008.Addin %DEPLOYDIR%\AutoTest.VS.2008.Addin
rem copy %BINARYDIR%\AutoTest.VS.2010.Addin %DEPLOYDIR%\AutoTest.VS.2010.Addin
rem copy %DIR%src\AutoTest.VS.RiskClassifier\RiskClassifier\source.extension.vsixmanifest %DEPLOYDIR%\extension.vsixmanifest
copy %BINARYDIR%\AutoTest.Profiler.dll %DEPLOYDIR%\AutoTest.Profiler.dll
copy %DIR%lib\Profiler\MMProfiler32.dll %DEPLOYDIR%\MMProfiler32.dll
copy %DIR%lib\Profiler\MMProfiler64.dll %DEPLOYDIR%\MMProfiler64.dll