uppercutbuild 1.0.4.0 → 1.0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- data/docs/README +3 -0
- data/lib/build/UppercuT.xml +1 -1
- data/lib/build/compile.step +27 -24
- data/lib/build/uppercut.dll +0 -0
- data/lib/build/uppercut.tasks.dll +0 -0
- data/lib/settings/UppercuT.config +1 -1
- metadata +4 -4
data/docs/README
CHANGED
@@ -59,6 +59,9 @@ It helps keep to the product updated, pays for site hosting, etc. https://www.pa
|
|
59
59
|
* Adding in support for xUnit.
|
60
60
|
* Adding in support for StorEvil.
|
61
61
|
|
62
|
+
=1.0.5.0=
|
63
|
+
* Now builds mono correctly on windows. (365)
|
64
|
+
|
62
65
|
=1.0.4.0=
|
63
66
|
* Gems builds default to not using the build date as part of the version. A new setting has been added to the uppercut.config: <property name="use.gem.build_date" value="false" overwrite="false" /> (364)
|
64
67
|
* Gems builds now include a version suffix so you can be in prerelease mode or dev mode when using semantic versioning. A new setting has been added to the uppercut.config: <property name="version.gem.suffix" value="" overwrite="false" /> (364)
|
data/lib/build/UppercuT.xml
CHANGED
data/lib/build/compile.step
CHANGED
@@ -13,6 +13,7 @@
|
|
13
13
|
<property name="dirs.build_scripts_custom" value="${dirs.current}${path.separator}${path.to.toplevel}${path.separator}${folder.build_scripts_custom}" />
|
14
14
|
<property name="folder.code_build" value="build_output" overwrite="false" />
|
15
15
|
<property name="dirs.build" value="${dirs.current}${path.separator}${path.to.toplevel}${path.separator}${folder.code_build}" />
|
16
|
+
<property name="dirs.build.windows.mono" value="${string::replace(dirs.build,'\','/')}" />
|
16
17
|
<property name="folder.documentation" value="docs" overwrite="false" />
|
17
18
|
<property name="dirs.docs" value="${dirs.current}${path.separator}${path.to.toplevel}${path.separator}${folder.documentation}" />
|
18
19
|
<property name="folder.database" value="__DATABASE_FOLDER_NAME__" overwrite="false" />
|
@@ -25,11 +26,13 @@
|
|
25
26
|
<property name="msbuild.platform" value="Any CPU" overwrite="false" />
|
26
27
|
<property name="msbuild.override_output_path" value="true" overwrite="false" />
|
27
28
|
<property name="msbuild.outputpath" value="${dirs.build}${path.separator}${folder.app.drop}" overwrite="false" />
|
29
|
+
<property name="msbuild.outputpath.windows.mono" value="${string::replace(msbuild.outputpath,'\','/')}" />
|
28
30
|
<property name="solution.path" value="${directory::get-parent-directory(dirs.current)}${path.separator}${path_to_solution}${path.separator}${project.name}.sln" />
|
31
|
+
<property name="solution.path.windows.mono" value="${string::replace(directory::get-parent-directory(dirs.current),'\','/')}/${string::replace(path_to_solution,'\','/')}/${project.name}.sln" />
|
29
32
|
<property name="solution.path" value="${directory::get-parent-directory(dirs.current)}${path.separator}${path_to_solution}${path.separator}${project.name}.vbp" if="${microsoft.framework =='vb6'}" />
|
30
33
|
<property name="nant.settings.currentframework" value="mono-1.0" if="${platform::is-unix()}" />
|
31
34
|
<property name="nant.settings.currentframework" value="net-3.5" if="${microsoft.framework !='vb6' and platform::is-windows()}" />
|
32
|
-
<property name="app.xbuild" value="C:\Program Files (x86)\Mono-2.
|
35
|
+
<property name="app.xbuild" value="C:\Program Files (x86)\Mono-2.8\bin\xbuild.bat" overwrite="false" if="${platform::is-windows()}" />
|
33
36
|
<property name="app.xbuild" value="xbuild" overwrite="false" if="${platform::is-unix()}" />
|
34
37
|
<property name="framework.multitargeting" value="false" />
|
35
38
|
<property name="framework.multitargeting.delimiter" value="," />
|
@@ -143,14 +146,14 @@
|
|
143
146
|
<!-- Do clean and build in two steps since xbuild has a bug with using OutputPath and Rebuild together Bug #628525 at Novell -->
|
144
147
|
<echo message="Cleaning build..." />
|
145
148
|
<exec program="${app.xbuild}"
|
146
|
-
basedir="${dirs.build}"
|
147
|
-
workingdir="${dirs.build}"
|
148
|
-
commandline="${solution.path} /nologo /property:OutputPath='${msbuild.outputpath}' /property:Configuration=${msbuild.configuration} /verbosity:minimal /noconsolelogger /target:Clean" />
|
149
|
-
<echo message=
|
149
|
+
basedir="${dirs.build.windows.mono}"
|
150
|
+
workingdir="${dirs.build.windows.mono}"
|
151
|
+
commandline="${solution.path.windows.mono} /nologo /property:OutputPath='${msbuild.outputpath}' /property:Configuration=${msbuild.configuration} /verbosity:minimal /noconsolelogger /target:Clean" />
|
152
|
+
<echo message='Building...by running this command ${app.xbuild} ${solution.path.windows.mono} /nologo /property:OutputPath="${msbuild.outputpath.windows.mono}" /property:Configuration=${msbuild.configuration} /verbosity:minimal' />
|
150
153
|
<exec program="${app.xbuild}"
|
151
|
-
basedir="${dirs.build}"
|
152
|
-
workingdir="${dirs.build}"
|
153
|
-
commandline=
|
154
|
+
basedir="${dirs.build.windows.mono}"
|
155
|
+
workingdir="${dirs.build.windows.mono}"
|
156
|
+
commandline='${solution.path.windows.mono} /nologo /property:OutputPath="${msbuild.outputpath.windows.mono}" /property:Configuration=${msbuild.configuration} /verbosity:minimal' />
|
154
157
|
</if>
|
155
158
|
<if test="${framework::get-family(microsoft.framework.specific) != 'mono'}" >
|
156
159
|
<msbuild project="${solution.path}" verbosity="minimal">
|
@@ -167,14 +170,14 @@
|
|
167
170
|
<!-- Do clean and build in two steps since xbuild has a bug with using OutputPath and Rebuild together Bug #628525 at Novell -->
|
168
171
|
<echo message="Cleaning build..." />
|
169
172
|
<exec program="${app.xbuild}"
|
170
|
-
basedir="${dirs.build}"
|
171
|
-
workingdir="${dirs.build}"
|
172
|
-
commandline="${solution.path} /nologo /property:OutputPath='${msbuild.outputpath}' /property:Configuration=${msbuild.configuration} /verbosity:minimal /noconsolelogger /target:Clean" />
|
173
|
-
<echo message=
|
173
|
+
basedir="${dirs.build.windows.mono}"
|
174
|
+
workingdir="${dirs.build.windows.mono}"
|
175
|
+
commandline="${solution.path.windows.mono} /nologo /property:OutputPath='${msbuild.outputpath}' /property:Configuration=${msbuild.configuration} /verbosity:minimal /noconsolelogger /target:Clean" />
|
176
|
+
<echo message='Building without multitargeting by running this command ${app.xbuild} ${solution.path.windows.mono} /nologo /property:OutputPath="${msbuild.outputpath.windows.mono}" /property:Configuration=${msbuild.configuration} /verbosity:minimal' />
|
174
177
|
<exec program="${app.xbuild}"
|
175
|
-
basedir="${dirs.build}"
|
176
|
-
workingdir="${dirs.build}"
|
177
|
-
commandline=
|
178
|
+
basedir="${dirs.build.windows.mono}"
|
179
|
+
workingdir="${dirs.build.windows.mono}"
|
180
|
+
commandline='${solution.path.windows.mono} /nologo /property:OutputPath="${msbuild.outputpath.windows.mono}" /property:Configuration=${msbuild.configuration} /verbosity:minimal' />
|
178
181
|
</if>
|
179
182
|
<if test="${framework::get-family(microsoft.framework.specific) != 'mono'}" >
|
180
183
|
<msbuild project="${solution.path}" verbosity="minimal">
|
@@ -198,7 +201,7 @@
|
|
198
201
|
<exec program="${app.xbuild}"
|
199
202
|
basedir="${dirs.build}"
|
200
203
|
workingdir="${dirs.build}"
|
201
|
-
commandline="${solution.path} /nologo /property:Configuration=${msbuild.configuration} /verbosity:minimal
|
204
|
+
commandline="${solution.path} /nologo /property:Configuration=${msbuild.configuration} /verbosity:minimal" />
|
202
205
|
</if>
|
203
206
|
<if test="${framework::get-family(microsoft.framework.specific) != 'mono'}" >
|
204
207
|
<msbuild project="${solution.path}" verbosity="minimal">
|
@@ -210,19 +213,18 @@
|
|
210
213
|
</if>
|
211
214
|
</if>
|
212
215
|
<if test="${not framework.multitargeting}">
|
213
|
-
</if>
|
214
216
|
<if test="${framework::get-family(microsoft.framework.specific) == 'mono'}" >
|
215
217
|
<!-- Do clean and build in two steps since xbuild has a bug with using OutputPath and Rebuild together Bug #628525 at Novell -->
|
216
218
|
<echo message="Cleaning build..." />
|
217
219
|
<exec program="${app.xbuild}"
|
218
|
-
basedir="${dirs.build}"
|
219
|
-
workingdir="${dirs.build}"
|
220
|
-
commandline="${solution.path} /nologo /property:Configuration=${msbuild.configuration} /verbosity:minimal /noconsolelogger /target:Clean" />
|
221
|
-
<echo message="Building..." />
|
220
|
+
basedir="${dirs.build.windows.mono}"
|
221
|
+
workingdir="${dirs.build.windows.mono}"
|
222
|
+
commandline="${solution.path.windows.mono} /nologo /property:Configuration=${msbuild.configuration} /verbosity:minimal /noconsolelogger /target:Clean" />
|
223
|
+
<echo message="Building...by running this command ${app.xbuild} ${solution.path.windows.mono} /nologo /property:Configuration=${msbuild.configuration} /verbosity:minimal" />
|
222
224
|
<exec program="${app.xbuild}"
|
223
|
-
basedir="${dirs.build}"
|
224
|
-
workingdir="${dirs.build}"
|
225
|
-
commandline="${solution.path} /nologo /property:Configuration=${msbuild.configuration} /verbosity:minimal
|
225
|
+
basedir="${dirs.build.windows.mono}"
|
226
|
+
workingdir="${dirs.build.windows.mono}"
|
227
|
+
commandline="${solution.path.windows.mono} /nologo /property:Configuration=${msbuild.configuration} /verbosity:minimal" />
|
226
228
|
</if>
|
227
229
|
<if test="${framework::get-family(microsoft.framework.specific) != 'mono'}" >
|
228
230
|
<msbuild project="${solution.path}" verbosity="minimal">
|
@@ -231,6 +233,7 @@
|
|
231
233
|
</msbuild>
|
232
234
|
</if>
|
233
235
|
</if>
|
236
|
+
</if>
|
234
237
|
</if>
|
235
238
|
</target>
|
236
239
|
|
data/lib/build/uppercut.dll
CHANGED
Binary file
|
Binary file
|
@@ -76,7 +76,7 @@
|
|
76
76
|
<property name="app.ndepend" value="C:\Program Files\NDepend\NDepend.Console.exe" overwrite="false" />
|
77
77
|
<property name="app.moma" value="..\..\${folder.references}\MoMA\MoMA.exe" overwrite="false" />
|
78
78
|
<property name="app.nitriq" value="C:\Program Files (x86)\NimblePros\Nitriq Console + Pro\Nitriq.Console.exe" overwrite="false" />
|
79
|
-
<property name="app.xbuild" value="C:\Program Files (x86)\Mono-2.
|
79
|
+
<property name="app.xbuild" value="C:\Program Files (x86)\Mono-2.8\bin\xbuild.bat" overwrite="false" />
|
80
80
|
<property name="allow.powershell.unrestricted" value="false" overwrite="false" />
|
81
81
|
<property name="run.ilmerge" value="false" overwrite="false" />
|
82
82
|
</project>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: uppercutbuild
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 75
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 0
|
9
|
-
-
|
9
|
+
- 5
|
10
10
|
- 0
|
11
|
-
version: 1.0.
|
11
|
+
version: 1.0.5.0
|
12
12
|
platform: ruby
|
13
13
|
authors:
|
14
14
|
- Rob "FerventCoder" Reynolds
|
@@ -17,7 +17,7 @@ autorequire:
|
|
17
17
|
bindir: bin
|
18
18
|
cert_chain: []
|
19
19
|
|
20
|
-
date: 2010-08
|
20
|
+
date: 2010-10-08 00:00:00 -05:00
|
21
21
|
default_executable:
|
22
22
|
dependencies:
|
23
23
|
- !ruby/object:Gem::Dependency
|