uppercutbuild 0.9.0.345.20100805 → 0.9.0.346.20100805
Sign up to get free protection for your applications and to get access to all the features.
- data/docs/README +2 -2
- data/lib/build/UppercuT.xml +1 -1
- data/lib/build/compile.step +32 -11
- data/lib/build/uppercut.dll +0 -0
- data/lib/build/uppercut.tasks.dll +0 -0
- metadata +3 -3
data/docs/README
CHANGED
@@ -55,8 +55,8 @@ Donations Accepted - If you enjoy using this product or it has saved you time an
|
|
55
55
|
It helps keep to the product updated, pays for site hosting, etc. https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=4410250
|
56
56
|
|
57
57
|
# RELEASE NOTES
|
58
|
-
=0.9.0.
|
59
|
-
* Fixed general compile issues related to multi-targeting changes from last release (
|
58
|
+
=0.9.0.346=
|
59
|
+
* Fixed general compile issues related to multi-targeting changes from last release (r346)
|
60
60
|
* Gems by default are now versioned with datestamp on the end (YYYYMMDD) (r342)
|
61
61
|
* Changed the default test framework to NUnit. (r340)
|
62
62
|
* Changed 'uppercutbuild install to 'uppercutbuild init' (r339)
|
data/lib/build/UppercuT.xml
CHANGED
data/lib/build/compile.step
CHANGED
@@ -119,19 +119,40 @@
|
|
119
119
|
<property name="nant.settings.currentframework" value="${string::trim(microsoft.framework.specific)}" />
|
120
120
|
<!-- nant is retarded - I had to have two of these instead of throwing an if on the outputpath -->
|
121
121
|
<if test="${msbuild.override_output_path}">
|
122
|
-
<
|
123
|
-
<
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
122
|
+
<if test="${framework.multitargeting}">
|
123
|
+
<msbuild project="${solution.path}" verbosity="minimal">
|
124
|
+
<property name="Configuration" value="${msbuild.configuration}" />
|
125
|
+
<property name="OutputPath" value="${msbuild.outputpath}" />
|
126
|
+
<property name="Platform" value="${msbuild.platform}" />
|
127
|
+
<property name="TargetFrameworkVersion" value="v${framework::get-version(microsoft.framework.specific)}" />
|
128
|
+
<property name="ToolsVersion" value="${framework::get-version(microsoft.framework.specific)}" />
|
129
|
+
</msbuild>
|
130
|
+
</if>
|
131
|
+
<if test="${not framework.multitargeting}">
|
132
|
+
<msbuild project="${solution.path}" verbosity="minimal">
|
133
|
+
<property name="Configuration" value="${msbuild.configuration}" />
|
134
|
+
<property name="OutputPath" value="${msbuild.outputpath}" />
|
135
|
+
<property name="Platform" value="${msbuild.platform}" />
|
136
|
+
<property name="TargetFrameworkVersion" value="v${framework::get-version(microsoft.framework.specific)}" />
|
137
|
+
</msbuild>
|
138
|
+
</if>
|
128
139
|
</if>
|
129
140
|
<if test="${not msbuild.override_output_path}">
|
130
|
-
<
|
131
|
-
<
|
132
|
-
|
133
|
-
|
134
|
-
|
141
|
+
<if test="${framework.multitargeting}">
|
142
|
+
<msbuild project="${solution.path}" verbosity="minimal">
|
143
|
+
<property name="Configuration" value="${msbuild.configuration}" />
|
144
|
+
<property name="Platform" value="${msbuild.platform}" />
|
145
|
+
<property name="TargetFrameworkVersion" value="v${framework::get-version(microsoft.framework.specific)}" />
|
146
|
+
<property name="ToolsVersion" value="${framework::get-version(microsoft.framework.specific)}" />
|
147
|
+
</msbuild>
|
148
|
+
</if>
|
149
|
+
<if test="${not framework.multitargeting}">
|
150
|
+
<msbuild project="${solution.path}" verbosity="minimal">
|
151
|
+
<property name="Configuration" value="${msbuild.configuration}" />
|
152
|
+
<property name="Platform" value="${msbuild.platform}" />
|
153
|
+
<property name="TargetFrameworkVersion" value="v${framework::get-version(microsoft.framework.specific)}" />
|
154
|
+
</msbuild>
|
155
|
+
</if>
|
135
156
|
</if>
|
136
157
|
</target>
|
137
158
|
|
data/lib/build/uppercut.dll
CHANGED
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: uppercutbuild
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 40200397
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 9
|
9
9
|
- 0
|
10
|
-
-
|
10
|
+
- 346
|
11
11
|
- 20100805
|
12
|
-
version: 0.9.0.
|
12
|
+
version: 0.9.0.346.20100805
|
13
13
|
platform: ruby
|
14
14
|
authors:
|
15
15
|
- Rob "FerventCoder" Reynolds
|