uppercutbuild 0.9.0.345.20100805 → 0.9.0.346.20100805

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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.345=
59
- * Fixed general compile issues related to multi-targeting changes from last release (r345)
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)
@@ -1,5 +1,5 @@
1
1
  <?xml version="1.0" ?>
2
2
  <uppercut>
3
- <version>0.9.0.345</version>
3
+ <version>0.9.0.346</version>
4
4
  </uppercut>
5
5
 
@@ -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
- <msbuild project="${solution.path}" verbosity="minimal">
123
- <property name="Configuration" value="${msbuild.configuration}" />
124
- <property name="OutputPath" value="${msbuild.outputpath}" />
125
- <property name="Platform" value="${msbuild.platform}" />
126
- <property name="TargetFrameworkVersion" value="v${framework::get-version(microsoft.framework.specific)}" />
127
- </msbuild>
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
- <msbuild project="${solution.path}" verbosity="minimal">
131
- <property name="Configuration" value="${msbuild.configuration}" />
132
- <property name="Platform" value="${msbuild.platform}" />
133
- <property name="TargetFrameworkVersion" value="v${framework::get-version(microsoft.framework.specific)}" />
134
- </msbuild>
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
 
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: 40200385
4
+ hash: 40200397
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 9
9
9
  - 0
10
- - 345
10
+ - 346
11
11
  - 20100805
12
- version: 0.9.0.345.20100805
12
+ version: 0.9.0.346.20100805
13
13
  platform: ruby
14
14
  authors:
15
15
  - Rob "FerventCoder" Reynolds